From a9d1ce5c223e2a1ca0474055fee0670ed4640813 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Mon, 11 Dec 2023 05:52:35 +1100 Subject: [PATCH 01/31] Remove Pastebin as a build export option (#6970) Pastebin has none of the features sites like pobb.in and poe.ninja have. It does not support mobile viewing of builds and commonly has issue where it flags a build as spam and invalidates the link. Importing Pastebin codes will still work though Co-authored-by: LocalIdentity --- src/Modules/BuildSiteTools.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Modules/BuildSiteTools.lua b/src/Modules/BuildSiteTools.lua index 5b6675a39d..7addec9301 100644 --- a/src/Modules/BuildSiteTools.lua +++ b/src/Modules/BuildSiteTools.lua @@ -18,7 +18,6 @@ buildSites.websiteList = { }, { label = "Pastebin.com", id = "pastebin", matchURL = "pastebin%.com/%w+", regexURL = "pastebin%.com/(%w+)%s*$", downloadURL = "pastebin.com/raw/%1", - codeOut = "", postUrl = "https://pastebin.com/api/api_post.php", postFields = "api_dev_key=c4757f22e50e65e21c53892fd8e0a9ff&api_paste_private=1&api_option=paste&api_paste_code=" }, { label = "PastebinP.com", id = "pastebinProxy", matchURL = "pastebinp%.com/%w+", regexURL = "pastebinp%.com/(%w+)%s*$", downloadURL = "pastebinp.com/raw/%1" }, { label = "Rentry.co", id = "rentry", matchURL = "rentry%.co/%w+", regexURL = "rentry%.co/(%w+)%s*$", downloadURL = "rentry.co/paste/%1/raw" }, From 3478750ae221b4aa627fd16f5ce7746d5ff302f2 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Sun, 10 Dec 2023 19:18:17 -0600 Subject: [PATCH 02/31] Add support for importing new ascendancies (#6956) * Add support for importing new ascendancies * Update to use official name * Fix error when missing alternate ascendancy * Update to proper format and fix bug * Future-proof tree format * Stop using hex codes accidentally * Different method to set imported secondary class ids * Don't loop through secondary ascendancies unless we need to --- src/Classes/ImportTab.lua | 9 ++++++++- src/Classes/PassiveSpec.lua | 21 ++++++++++++++++++--- src/Modules/Build.lua | 2 +- 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index 4f18d10195..cb16b61447 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -624,7 +624,14 @@ function ImportTabClass:ImportPassiveTreeAndJewels(json, charData) end end end - self.build.spec:ImportFromNodeList(charData.classId, charData.ascendancyClass, 0, charPassiveData.hashes, charPassiveData.skill_overrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) + -- Currently we don't get the alternate ascendancy from the unofficial API + --for ascendId, ascendClass in pairs(self.build.spec.tree.alternate_ascendancies) do + -- if charData.alternate_ascendancy == ascendClass then + -- charData.secondaryAscendancyClass = ascendId + -- break + -- end + --end + self.build.spec:ImportFromNodeList(charData.classId, charData.ascendancyClass, charData.secondaryAscendancyClass or 0, charPassiveData.hashes, charPassiveData.skill_overrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) self.build.spec:AddUndoState() self.build.characterLevel = charData.level self.build.characterLevelAutoMode = false diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index c71602d263..e90603d3e7 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -12,6 +12,9 @@ local m_min = math.min local m_max = math.max local m_floor = math.floor local b_lshift = bit.lshift +local b_rshift = bit.rshift +local band = bit.band +local bor = bit.bor local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler", function(self, build, treeVersion, convert) self.UndoHandler() @@ -425,13 +428,16 @@ function PassiveSpecClass:DecodeURL(url) return "Invalid tree link (unknown version number '"..ver.."')" end local classId = b:byte(5) - local ascendClassId = (ver >= 4) and b:byte(6) or 0 + local ascendancyIds = (ver >= 4) and b:byte(6) or 0 + local ascendClassId = band(ascendancyIds, 3) + local secondaryAscendClassId = b_rshift(band(ascendancyIds, 12), 2) if not self.tree.classes[classId] then return "Invalid tree link (bad class ID '"..classId.."')" end self:ResetNodes() self:SelectClass(classId) self:SelectAscendClass(ascendClassId) + self:SelectSecondaryAscendClass(secondaryAscendClassId) local nodesStart = ver >= 4 and 8 or 7 local nodesEnd = ver >= 5 and 7 + (b:byte(7) * 2) or -1 @@ -460,7 +466,7 @@ end -- Encodes the current spec into a URL, using the official skill tree's format -- Prepends the URL with an optional prefix function PassiveSpecClass:EncodeURL(prefix) - local a = { 0, 0, 0, 6, self.curClassId, self.curAscendClassId } + local a = { 0, 0, 0, 6, self.curClassId, bor(b_lshift(self.curSecondaryAscendClassId or 0, 2), self.curAscendClassId) } local nodeCount = 0 local clusterCount = 0 @@ -556,7 +562,7 @@ function PassiveSpecClass:SelectAscendClass(ascendClassId) end function PassiveSpecClass:SelectSecondaryAscendClass(ascendClassId) - -- if Secondary Ascendency does not exist on this tree version + -- if Secondary Ascendancy does not exist on this tree version if not self.tree.alternate_ascendancies then return end @@ -1127,6 +1133,15 @@ function PassiveSpecClass:BuildAllDependsAndPaths() for id, node in pairs(self.allocNodes) do node.visited = true local anyStartFound = (node.type == "ClassStart" or node.type == "AscendClassStart") + + -- Temporary solution until importing secondary ascendancies works + if self.tree.alternate_ascendancies and node.ascendancyName and (self.curSecondaryAscendClass == nil or self.curSecondaryAscendClass.id ~= node.ascendancyName) then + for id, class in ipairs(self.tree.alternate_ascendancies) do + if class.id == node.ascendancyName then + self:SelectSecondaryAscendClass(id) + end + end + end for _, other in ipairs(node.linked) do if other.alloc and not isValueInArray(node.depends, other) then -- The other node is allocated and isn't already dependent on this node, so try and find a path to a start node through it diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index 71b3124fca..67fbde3f52 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -771,7 +771,7 @@ function buildMode:EstimatePlayerProgress() self.controls.characterLevel:SetText(self.characterLevel) end - -- Ascendency points for lab + -- Ascendancy points for lab -- this is a recommendation for beginners who are using Path of Building for the first time and trying to map out progress in PoB local labSuggest = level < 33 and "" or level < 55 and "\nLabyrinth: Normal Lab" From 1bc163fd38f3e4dbf978f451ef1249b74678e789 Mon Sep 17 00:00:00 2001 From: Peechey <92683202+Peechey@users.noreply.github.com> Date: Sun, 10 Dec 2023 19:19:12 -0600 Subject: [PATCH 03/31] Save trade search weights to build xml (#6954) * save trade search weights to xml * comments, group the weights together under one node --- src/Classes/ItemsTab.lua | 29 +++++++++++++++++++++++++++++ src/Classes/TradeQuery.lua | 28 ++++++++++++++++------------ 2 files changed, 45 insertions(+), 12 deletions(-) diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index 9e0e5552ce..308d167860 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -916,6 +916,7 @@ function ItemsTabClass:Load(xml, dbFileName) self.activeItemSetId = 0 self.itemSets = { } self.itemSetOrderList = { } + self.tradeQuery.statSortSelectionList = { } for _, node in ipairs(xml) do if node.elem == "Item" then local item = new("Item", "") @@ -993,6 +994,15 @@ function ItemsTabClass:Load(xml, dbFileName) end end t_insert(self.itemSetOrderList, itemSet.id) + elseif node.elem == "TradeSearchWeights" then + for _, child in ipairs(node) do + local statSort = { + label = child.attrib.label, + stat = child.attrib.stat, + weightMult = tonumber(child.attrib.weightMult) + } + t_insert(self.tradeQuery.statSortSelectionList, statSort) + end end end if not self.itemSetOrderList[1] then @@ -1072,6 +1082,25 @@ function ItemsTabClass:Save(xml) end t_insert(xml, child) end + if self.tradeQuery.statSortSelectionList then + local parent = { + elem = "TradeSearchWeights" + } + for _, statSort in ipairs(self.tradeQuery.statSortSelectionList) do + if statSort.weightMult and statSort.weightMult > 0 then + local child = { + elem = "Stat", + attrib = { + label = statSort.label, + stat = statSort.stat, + weightMult = s_format("%.2f", tostring(statSort.weightMult)) + } + } + t_insert(parent, child) + end + end + t_insert(xml, parent) + end end function ItemsTabClass:Draw(viewPort, inputEvents) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index aa8477ff50..77a9b6a7b6 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -280,18 +280,22 @@ on trade site to work on other leagues and realms)]] end -- Stat sort popup button - self.statSortSelectionList = { } - t_insert(self.statSortSelectionList, { - label = "Full DPS", - stat = "FullDPS", - weightMult = 1.0, - }) - t_insert(self.statSortSelectionList, { - label = "Effective Hit Pool", - stat = "TotalEHP", - weightMult = 0.5, - }) + -- if the list is nil or empty, set default sorting, otherwise keep whatever was loaded from xml + if not self.statSortSelectionList or (#self.statSortSelectionList) == 0 then + self.statSortSelectionList = { } + t_insert(self.statSortSelectionList, { + label = "Full DPS", + stat = "FullDPS", + weightMult = 1.0, + }) + t_insert(self.statSortSelectionList, { + label = "Effective Hit Pool", + stat = "TotalEHP", + weightMult = 0.5, + }) + end self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", self.controls.fetchCountEdit, "BOTTOMRIGHT"}, 0, row_vertical_padding, 150, row_height, "^7Adjust search weights", function() + self.itemsTab.modFlag = true self:SetStatWeights() end) self.controls.StatWeightMultipliersButton.tooltipFunc = function(tooltip) @@ -507,7 +511,7 @@ function TradeQueryClass:SetStatWeights() controls.finalise = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, -45, -10, 80, 20, "Save", function() main:ClosePopup() - -- this needs to save the weights somewhere, maybe the XML? its not necessary but possibly useful QoL + -- used in ItemsTab to save to xml under TradeSearchWeights node local statSortSelectionList = {} for stat, statTable in pairs(statList) do if statTable.stat.weightMult > 0 then From d87d9bcdda85693ee5098e8325ccef5103e938d7 Mon Sep 17 00:00:00 2001 From: Regisle <49933620+Regisle@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:50:18 +1030 Subject: [PATCH 04/31] Count secondary ascendancy nodes used (#6958) * add warning for too many secondary ascendancy points used * remove hardcoded names --- src/Classes/PassiveSpec.lua | 12 +++++++----- src/Classes/PassiveTree.lua | 2 ++ src/Classes/PassiveTreeView.lua | 4 ++-- src/Classes/TreeTab.lua | 2 +- src/Modules/Build.lua | 5 +++-- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index e90603d3e7..100380a590 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -691,11 +691,13 @@ end -- Count the number of allocated nodes and allocated ascendancy nodes function PassiveSpecClass:CountAllocNodes() - local used, ascUsed, sockets = 0, 0, 0 + local used, ascUsed, secondaryAscUsed, sockets = 0, 0, 0, 0 for _, node in pairs(self.allocNodes) do - if node.type ~= "ClassStart" and node.type ~= "AscendClassStart" and not (node.ascendancyName and (node.ascendancyName == "Warden" or node.ascendancyName == "Warlock" or node.ascendancyName == "Primalist")) then - if node.ascendancyName then - if not node.isMultipleChoiceOption then + if node.type ~= "ClassStart" and node.type ~= "AscendClassStart" then + if node.ascendancyName and not node.isMultipleChoiceOption then + if self.tree.secondaryAscendNameMap and self.tree.secondaryAscendNameMap[node.ascendancyName] then + secondaryAscUsed = secondaryAscUsed + 1 + else ascUsed = ascUsed + 1 end else @@ -706,7 +708,7 @@ function PassiveSpecClass:CountAllocNodes() end end end - return used, ascUsed, sockets + return used, ascUsed, secondaryAscUsed, sockets end -- Attempt to find a class start node starting from the given node diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index f9c00d4c96..41442991a3 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -122,6 +122,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) end if self.alternate_ascendancies then + self.secondaryAscendNameMap = { } local alternate_ascendancies_class = { ["name"]= "alternate_ascendancies", ["classes"]= self.alternate_ascendancies @@ -133,6 +134,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) ascendClassId = ascendClassId, ascendClass = ascendClass } + self.secondaryAscendNameMap[ascendClass.id] = self.ascendNameMap[ascendClass.id] end end diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 6d97a1eac6..617e238abd 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -474,7 +474,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) overlay = isAlloc and node.startArt or "PSStartNodeBackgroundInactive" elseif node.type == "AscendClassStart" then overlay = treeVersions[tree.treeVersion].num >= 3.10 and "AscendancyMiddle" or "PassiveSkillScreenAscendancyMiddle" - if node.ascendancyName and (node.ascendancyName == "Warden" or node.ascendancyName == "Warlock" or node.ascendancyName == "Primalist") then + if node.ascendancyName and tree.secondaryAscendNameMap and tree.secondaryAscendNameMap[node.ascendancyName] then overlay = "Azmiri"..overlay end else @@ -541,7 +541,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) end base = node.sprites[node.type:lower()..(isAlloc and "Active" or "Inactive")] overlay = node.overlay[state .. (node.ascendancyName and "Ascend" or "") .. (node.isBlighted and "Blighted" or "")] - if node.ascendancyName and (node.ascendancyName == "Warden" or node.ascendancyName == "Warlock" or node.ascendancyName == "Primalist") then + if node.ascendancyName and tree.secondaryAscendNameMap and tree.secondaryAscendNameMap[node.ascendancyName] then overlay = "Azmiri"..overlay end end diff --git a/src/Classes/TreeTab.lua b/src/Classes/TreeTab.lua index 86167f581f..5b96a41ec2 100644 --- a/src/Classes/TreeTab.lua +++ b/src/Classes/TreeTab.lua @@ -52,7 +52,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build) if mode ~= "OUT" then local spec = self.specList[selIndex] if spec then - local used, ascUsed, sockets = spec:CountAllocNodes() + local used, ascUsed, secondaryAscUsed, sockets = spec:CountAllocNodes() tooltip:AddLine(16, "Class: "..spec.curClassName) tooltip:AddLine(16, "Ascendancy: "..spec.curAscendClassName) tooltip:AddLine(16, "Points used: "..used) diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index 67fbde3f52..3a5ece38f0 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -756,9 +756,9 @@ local function actExtra(act, extra) end function buildMode:EstimatePlayerProgress() - local PointsUsed, AscUsed = self.spec:CountAllocNodes() + local PointsUsed, AscUsed, SecondaryAscUsed = self.spec:CountAllocNodes() local extra = self.calcsTab.mainOutput and self.calcsTab.mainOutput.ExtraPoints or 0 - local usedMax, ascMax, level, act = 99 + 22 + extra, 8, 1, 0 + local usedMax, ascMax, secondaryAscMax, level, act = 99 + 22 + extra, 8, 8, 1, 0 -- Find estimated act and level based on points used repeat @@ -782,6 +782,7 @@ function buildMode:EstimatePlayerProgress() if PointsUsed > usedMax then InsertIfNew(self.controls.warnings.lines, "You have too many passive points allocated") end if AscUsed > ascMax then InsertIfNew(self.controls.warnings.lines, "You have too many ascendancy points allocated") end + if SecondaryAscUsed > secondaryAscMax then InsertIfNew(self.controls.warnings.lines, "You have too many secondary ascendancy points allocated") end self.Act = level < 90 and act <= 10 and act or "Endgame" return string.format("%s%3d / %3d %s%d / %d", PointsUsed > usedMax and colorCodes.NEGATIVE or "^7", PointsUsed, usedMax, AscUsed > ascMax and colorCodes.NEGATIVE or "^7", AscUsed, ascMax), From 0f07f459489d6065f39f65110e72c5e32802d1c6 Mon Sep 17 00:00:00 2001 From: Sida Wang <42928828+sida-wang@users.noreply.github.com> Date: Mon, 11 Dec 2023 12:22:16 +1100 Subject: [PATCH 05/31] Fix interaction between Replica Covenant and Eldritch Battery --- src/Modules/CalcOffence.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index 3b52609de5..7f0a30cb95 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -5065,9 +5065,9 @@ function calcs.offence(env, actor, activeSkill) --Calculates and displays cost per second for skills that don't already have one (link skills) for resource, val in pairs(costs) do - if(val.upfront and output[resource.."HasCost"] and output[resource.."Cost"] > 0 and not output[resource.."PerSecondHasCost"] and (output.Speed > 0 or output.Cooldown)) then + local EB = env.modDB:Flag(nil, "EnergyShieldProtectsMana") + if(val.upfront and output[resource.."HasCost"] and output[resource.."Cost"] > 0 and not (output[resource.."PerSecondHasCost"] and not (EB and skillModList:Sum("BASE", skillCfg, "ManaCostAsEnergyShieldCost"))) and (output.Speed > 0 or output.Cooldown)) then local usedResource = resource - local EB = env.modDB:Flag(nil, "EnergyShieldProtectsMana") if EB and resource == "Mana" then usedResource = "ES" @@ -5093,7 +5093,7 @@ function calcs.offence(env, actor, activeSkill) end output[usedResource.."PerSecondHasCost"] = true - output[usedResource.."PerSecondCost"] = output[resource.."Cost"] * useSpeed + output[usedResource.."PerSecondCost"] = (output[usedResource.."PerSecondCost"] or 0)+ output[resource.."Cost"] * useSpeed if breakdown then breakdown[usedResource.."PerSecondCost"] = copyTable(breakdown[resource.."Cost"]) From cb9c2d41b5113546922add47e9ed50c175209abb Mon Sep 17 00:00:00 2001 From: Lily Date: Mon, 11 Dec 2023 02:44:50 +0100 Subject: [PATCH 06/31] Add Sin Trek and Legacy of Fury to Utula exclude list (#6969) --- src/Modules/Data.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 654d49821a..933d2f2993 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -672,7 +672,7 @@ data.itemTagSpecial = { "Vaal Pact", "Zealot's Oath", -- Special Cases - "Cannot Leech", + "^Cannot Leech$", }, }, ["evasion"] = { @@ -692,6 +692,8 @@ data.itemTagSpecialExclusionPattern = { "Life as Extra Maximum Energy Shield", "maximum Life as Fire Damage", "when on Full Life", + "Enemy's life", + "Life From You", }, }, ["evasion"] = { From 25d04e12ea324cd403070143eaf54db1ceb2090f Mon Sep 17 00:00:00 2001 From: Regisle <49933620+Regisle@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:33:01 +1030 Subject: [PATCH 07/31] Charms and tinctures (#6977) * restrict charms based on socket * make tinctures showup . * enable tinctures in flask slots * get charm and tincture mods to showup * fix tincture stats * fix it messing with synth mods * make charms default as magic * fix charm rendering * Fix Tincture implicits * Tinctures can only be magic * Move tincture stat desc to the top since it includes the main one --------- Co-authored-by: Wires77 --- src/Classes/ItemsTab.lua | 13 +- src/Classes/PassiveTree.lua | 44 ++++--- src/Classes/PassiveTreeView.lua | 14 +- src/Data/Bases/tincture.lua | 24 ++-- src/Data/ModItem.lua | 6 +- src/Data/{ModCharm.lua => ModJewelCharm.lua} | 0 src/Data/ModTincture.lua | 128 +++++++++++++++++-- src/Data/Uniques/tincture.lua | 5 + src/Export/Bases/tincture.txt | 9 +- src/Export/Classes/GGPKData.lua | 1 + src/Export/Scripts/bases.lua | 3 +- src/Export/Scripts/mods.lua | 4 +- src/Modules/Data.lua | 3 + 13 files changed, 192 insertions(+), 62 deletions(-) rename src/Data/{ModCharm.lua => ModJewelCharm.lua} (100%) create mode 100644 src/Data/Uniques/tincture.lua diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index 308d167860..dbae9a7fa1 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -1863,6 +1863,12 @@ function ItemsTabClass:IsItemValidForSlot(item, slotName, itemSet) local node = self.build.spec.tree.nodes[tonumber(slotId)] or self.build.spec.nodes[tonumber(slotId)] if not node or item.type ~= "Jewel" then return false + elseif node.charmSocket or item.base.subType == "Charm" then + -- Charm sockets can only have charms, and charms can only be in charm sockets + if node.charmSocket and item.base.subType == "Charm" then + return true + end + return false elseif item.clusterJewel and not node.expansionJewel then -- Don't allow cluster jewels in inner sockets return false @@ -1875,6 +1881,8 @@ function ItemsTabClass:IsItemValidForSlot(item, slotName, itemSet) end elseif item.type == slotType then return true + elseif item.type == "Tincture" and slotType == "Flask" then + return true elseif item.type == "Jewel" and item.base.subType == "Abyss" and slotName:match("Abyssal Socket") then return true elseif slotName == "Weapon 1" or slotName == "Weapon 1 Swap" or slotName == "Weapon" then @@ -1922,7 +1930,10 @@ function ItemsTabClass:CraftItem() item.crucibleModLines = { } item.quality = 0 local raritySel = controls.rarity.selIndex - if base.base.flask then + if base.base.flask + or (base.base.type == "Jewel" and base.base.subType == "Charm") + or base.base.type == "Tincture" + then if raritySel == 3 then raritySel = 2 end diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 41442991a3..8c0959ce9b 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -455,27 +455,31 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) -- Precalculate the lists of nodes that are within each radius of each socket for nodeId, socket in pairs(self.sockets) do - socket.nodesInRadius = { } - socket.attributesInRadius = { } - for radiusIndex, _ in ipairs(data.jewelRadius) do - socket.nodesInRadius[radiusIndex] = { } - socket.attributesInRadius[radiusIndex] = { } - end - - local minX, maxX = socket.x - data.maxJewelRadius, socket.x + data.maxJewelRadius - local minY, maxY = socket.y - data.maxJewelRadius, socket.y + data.maxJewelRadius - - for _, node in pairs(self.nodes) do - if node.x and node.x >= minX and node.x <= maxX and node.y and node.y >= minY and node.y <= maxY - and node ~= socket and not node.isBlighted and node.group and not node.isProxy - and not node.group.isProxy and not node.isMastery then - local vX, vY = node.x - socket.x, node.y - socket.y - local distSquared = vX * vX + vY * vY - for radiusIndex, radiusInfo in ipairs(data.jewelRadius) do - if distSquared <= radiusInfo.outerSquared and radiusInfo.innerSquared <= distSquared then - socket.nodesInRadius[radiusIndex][node.id] = node + if socket.name == "Charm Socket" then + socket.charmSocket = true + else + socket.nodesInRadius = { } + socket.attributesInRadius = { } + for radiusIndex, _ in ipairs(data.jewelRadius) do + socket.nodesInRadius[radiusIndex] = { } + socket.attributesInRadius[radiusIndex] = { } + end + + local minX, maxX = socket.x - data.maxJewelRadius, socket.x + data.maxJewelRadius + local minY, maxY = socket.y - data.maxJewelRadius, socket.y + data.maxJewelRadius + + for _, node in pairs(self.nodes) do + if node.x and node.x >= minX and node.x <= maxX and node.y and node.y >= minY and node.y <= maxY + and node ~= socket and not node.isBlighted and node.group and not node.isProxy + and not node.group.isProxy and not node.isMastery then + local vX, vY = node.x - socket.x, node.y - socket.y + local distSquared = vX * vX + vY * vY + for radiusIndex, radiusInfo in ipairs(data.jewelRadius) do + if distSquared <= radiusInfo.outerSquared and radiusInfo.innerSquared <= distSquared then + socket.nodesInRadius[radiusIndex][node.id] = node + end end - end + end end end end diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 617e238abd..6a3cde5b1e 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -503,12 +503,14 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) overlay = node.expansionJewel and "JewelSocketActivePrismaticAlt" or "JewelSocketActivePrismatic" elseif jewel.base.subType == "Abyss" then overlay = node.expansionJewel and "JewelSocketActiveAbyssAlt" or "JewelSocketActiveAbyss" - elseif jewel.base.subType == "Ursine Charm" then - overlay = "CharmSocketActiveStr" - elseif jewel.base.subType == "Corvine Charm" then - overlay = "CharmSocketActiveInt" - elseif jewel.base.subType == "Lupine Charm" then - overlay = "CharmSocketActiveDex" + elseif jewel.base.subType == "Charm" then + if jewel.baseName == "Ursine Charm" then + overlay = "CharmSocketActiveStr" + elseif jewel.baseName == "Corvine Charm" then + overlay = "CharmSocketActiveInt" + elseif jewel.baseName == "Lupine Charm" then + overlay = "CharmSocketActiveDex" + end elseif jewel.baseName == "Timeless Jewel" then overlay = node.expansionJewel and "JewelSocketActiveLegionAlt" or "JewelSocketActiveLegion" elseif jewel.baseName == "Large Cluster Jewel" then diff --git a/src/Data/Bases/tincture.lua b/src/Data/Bases/tincture.lua index 21f8278051..ec0de03387 100644 --- a/src/Data/Bases/tincture.lua +++ b/src/Data/Bases/tincture.lua @@ -5,48 +5,56 @@ local itemBases = ... itemBases["Ironwood Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "Damaging Hits always Stun Enemies that are on Full Life", + implicitModTypes = { { "attack" }, }, req = { }, } itemBases["Ashbark Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "All Damage can Ignite", + implicitModTypes = { { "elemental", "fire", "attack", "ailment" }, }, req = { }, } itemBases["Fulgurite Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "All Damage can Shock", + implicitModTypes = { { "elemental", "lightning", "attack", "ailment" }, }, req = { }, } itemBases["Poisonberry Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "All Damage can Poison", + implicitModTypes = { { "poison", "chaos", "attack", "ailment" }, }, req = { }, } itemBases["Rosethorn Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "+25% to Critical Strike Chance against Enemies that are on Full Life", + implicitModTypes = { { "attack", "critical" }, }, req = { }, } itemBases["Oakbranch Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "Culling Strike", + implicitModTypes = { { "attack" }, }, req = { }, } itemBases["Borealwood Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "All Damage can Freeze", + implicitModTypes = { { "elemental", "cold", "attack", "ailment" }, }, req = { }, } itemBases["Blood Sap Tincture"] = { type = "Tincture", tags = { tincture = true, default = true, }, - implicitModTypes = { }, + implicit = "Bleeding you inflict on non-Bleeding Enemies deals 30% more Damage", + implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, }, req = { }, } diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index 49193da101..5aa9665ace 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -3792,9 +3792,9 @@ return { ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrderKey = "2809", statOrder = { 2809 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrderKey = "2810", statOrder = { 2810 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrderKey = "2811", statOrder = { 2811 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrderKey = "3409", statOrder = { 3409 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrderKey = "3408", statOrder = { 3408 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrderKey = "3410", statOrder = { 3410 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage Penetrates (4-6)% Fire Resistance", statOrderKey = "9671", statOrder = { 9671 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage Penetrates (4-6)% Cold Resistance", statOrderKey = "9670", statOrder = { 9670 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage Penetrates (4-6)% Lightning Resistance", statOrderKey = "9672", statOrder = { 9672 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrderKey = "2808", statOrder = { 2808 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrderKey = "1083", statOrder = { 1083 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "damage", "attack" }, }, ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrderKey = "1083", statOrder = { 1083 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "damage", "attack" }, }, diff --git a/src/Data/ModCharm.lua b/src/Data/ModJewelCharm.lua similarity index 100% rename from src/Data/ModCharm.lua rename to src/Data/ModJewelCharm.lua diff --git a/src/Data/ModTincture.lua b/src/Data/ModTincture.lua index f82cf71fd8..b63e9ecf4e 100644 --- a/src/Data/ModTincture.lua +++ b/src/Data/ModTincture.lua @@ -2,18 +2,122 @@ -- Item data (c) Grinding Gear Games return { - ["TinctureFirePen1"] = { type = "Prefix", affix = "Searing", "Damage with Weapons Penetrates (4-5)% Fire Resistance", statOrderKey = "3409", statOrder = { 3409 }, level = 1, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["TinctureFirePen2"] = { type = "Prefix", affix = "Sizzling", "Damage with Weapons Penetrates (6-8)% Fire Resistance", statOrderKey = "3409", statOrder = { 3409 }, level = 1, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["TinctureFirePen3"] = { type = "Prefix", affix = "Blistering", "Damage with Weapons Penetrates (9-12)% Fire Resistance", statOrderKey = "3409", statOrder = { 3409 }, level = 60, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["TinctureColdPen1"] = { type = "Prefix", affix = "Frosted", "Damage with Weapons Penetrates (4-5)% Cold Resistance", statOrderKey = "3408", statOrder = { 3408 }, level = 1, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["TinctureColdPen2"] = { type = "Prefix", affix = "Chilled", "Damage with Weapons Penetrates (6-8)% Cold Resistance", statOrderKey = "3408", statOrder = { 3408 }, level = 1, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["TinctureColdPen3"] = { type = "Prefix", affix = "Icy", "Damage with Weapons Penetrates (9-12)% Cold Resistance", statOrderKey = "3408", statOrder = { 3408 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["TinctureLightningPen1"] = { type = "Prefix", affix = "Snapping", "Damage with Weapons Penetrates (4-5)% Lightning Resistance", statOrderKey = "3410", statOrder = { 3410 }, level = 1, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["TinctureLightningPen2"] = { type = "Prefix", affix = "Crackling", "Damage with Weapons Penetrates (6-8)% Lightning Resistance", statOrderKey = "3410", statOrder = { 3410 }, level = 1, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["TinctureLightningPen3"] = { type = "Prefix", affix = "Sparking", "Damage with Weapons Penetrates (9-12)% Lightning Resistance", statOrderKey = "3410", statOrder = { 3410 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["TinctureChaosPen1"] = { type = "Prefix", affix = "Profane", "Damage with Weapons Penetrates (4-5)% Chaos Resistance", statOrderKey = "3411", statOrder = { 3411 }, level = 1, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, - ["TinctureChaosPen2"] = { type = "Prefix", affix = "Tainted", "Damage with Weapons Penetrates (6-8)% Chaos Resistance", statOrderKey = "3411", statOrder = { 3411 }, level = 1, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, - ["TinctureChaosPen3"] = { type = "Prefix", affix = "Debased", "Damage with Weapons Penetrates (9-12)% Chaos Resistance", statOrderKey = "3411", statOrder = { 3411 }, level = 60, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureApplyWitherStacks1"] = { type = "Prefix", affix = "Wilting", "Hits Inflict (2-3) Withered Debuffs for 2 seconds on Enemies that are on Full Life", statOrderKey = "9649", statOrder = { 9649 }, level = 45, group = "WeaponApplyWitherStacksOnHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureApplyWitherStacks2"] = { type = "Prefix", affix = "Drooping", "Hits Inflict (4-5) Withered Debuffs for 2 seconds on Enemies that are on Full Life", statOrderKey = "9649", statOrder = { 9649 }, level = 45, group = "WeaponApplyWitherStacksOnHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureApplyWitherStacks3"] = { type = "Prefix", affix = "Withering", "Hits Inflict (6-7) Withered Debuffs for 2 seconds on Enemies that are on Full Life", statOrderKey = "9649", statOrder = { 9649 }, level = 72, group = "WeaponApplyWitherStacksOnHit", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureStealPowerChargesOnHit"] = { type = "Suffix", affix = "of Enervation", "Hits Steal Power Charges", statOrderKey = "9679", statOrder = { 9679 }, level = 1, group = "WeaponStealPowerChargesOnHit", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "power_charge", "attack" }, }, + ["TinctureStealFrenzyChargesOnHit"] = { type = "Suffix", affix = "of Poaching", "Hits Steal Frenzy Charges", statOrderKey = "9678", statOrder = { 9678 }, level = 1, group = "WeaponStealFrenzyChargesOnHit", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "frenzy_charge", "attack" }, }, + ["TinctureStealEnduranceChargesOnHit"] = { type = "Suffix", affix = "of Sabotage", "Hits Steal Endurance Charges", statOrderKey = "9677", statOrder = { 9677 }, level = 1, group = "WeaponStealEnduranceChargesOnHit", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "endurance_charge", "attack" }, }, + ["TinctureDamageVsLowLifeEnemies1"] = { type = "Prefix", affix = "Subduing", "(30-40)% increased Damage against Enemies that are on Low Life", statOrderKey = "9689", statOrder = { 9689 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "damage", "attack" }, }, + ["TinctureDamageVsLowLifeEnemies2"] = { type = "Prefix", affix = "Overpowering", "(50-60)% increased Damage against Enemies that are on Low Life", statOrderKey = "9689", statOrder = { 9689 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "damage", "attack" }, }, + ["TinctureDamageVsLowLifeEnemies3"] = { type = "Prefix", affix = "Conquering", "(75-90)% increased Damage against Enemies that are on Low Life", statOrderKey = "9689", statOrder = { 9689 }, level = 60, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "damage", "attack" }, }, + ["TinctureGainRareModOnKillingBlowFor60SecondsChance1"] = { type = "Suffix", affix = "of Pursuit", "Killing Blows against Rare Monsters have a (9-12)% chance", "to grant one of their Modifiers for 60 seconds", statOrderKey = "9657,9657.1", statOrder = { 9657, 9657.1 }, level = 70, group = "WeaponGainRareModOnKillingBlowFor60SecondsChance", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureGainRareModOnKillingBlowFor60SecondsChance2"] = { type = "Suffix", affix = "of the Chase", "Killing Blows against Rare Monsters have a (13-18)% chance", "to grant one of their Modifiers for 60 seconds", statOrderKey = "9657,9657.1", statOrder = { 9657, 9657.1 }, level = 70, group = "WeaponGainRareModOnKillingBlowFor60SecondsChance", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureGainRareModOnKillingBlowFor60SecondsChance3"] = { type = "Suffix", affix = "of the Hunt", "Killing Blows against Rare Monsters have a (20-30)% chance", "to grant one of their Modifiers for 60 seconds", statOrderKey = "9657,9657.1", statOrder = { 9657, 9657.1 }, level = 81, group = "WeaponGainRareModOnKillingBlowFor60SecondsChance", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureFireExplodeChance1"] = { type = "Suffix", affix = "of Kindling", "Killing Blows have a (8-12)% chance for Enemies to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrderKey = "9655", statOrder = { 9655 }, level = 70, group = "WeaponFireExplodeChance", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureFireExplodeChance2"] = { type = "Suffix", affix = "of Firewood", "Killing Blows have a (13-16)% chance for Enemies to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrderKey = "9655", statOrder = { 9655 }, level = 70, group = "WeaponFireExplodeChance", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureFireExplodeChance3"] = { type = "Suffix", affix = "of Tinder", "Killing Blows have a (17-25)% chance for Enemies to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrderKey = "9655", statOrder = { 9655 }, level = 81, group = "WeaponFireExplodeChance", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureInstantLeechVsLowLife1"] = { type = "Suffix", affix = "of the Lamprey", "(8-12)% of Leech is Instant against Low Life Enemies", statOrderKey = "9659", statOrder = { 9659 }, level = 70, group = "WeaponInstantLeechVsLowLife", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureInstantLeechVsLowLife2"] = { type = "Suffix", affix = "of the Leech", "(13-16)% of Leech is Instant against Low Life Enemies", statOrderKey = "9659", statOrder = { 9659 }, level = 70, group = "WeaponInstantLeechVsLowLife", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureInstantLeechVsLowLife3"] = { type = "Suffix", affix = "of the Bloodsucker", "(17-25)% of Leech is Instant against Low Life Enemies", statOrderKey = "9659", statOrder = { 9659 }, level = 81, group = "WeaponInstantLeechVsLowLife", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureShatterOnKill1"] = { type = "Suffix", affix = "of the Tundra", "Killing Blows have (26-35)% chance to Shatter Enemies as though Frozen", statOrderKey = "9675", statOrder = { 9675 }, level = 45, group = "WeaponShatterOnKill", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureShatterOnKill2"] = { type = "Suffix", affix = "of the Snow Forest", "Killing Blows have (36-45)% chance to Shatter Enemies as though Frozen", statOrderKey = "9675", statOrder = { 9675 }, level = 45, group = "WeaponShatterOnKill", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureShatterOnKill3"] = { type = "Suffix", affix = "of the Alpine Wood", "Killing Blows have (46-60)% chance to Shatter Enemies as though Frozen", statOrderKey = "9675", statOrder = { 9675 }, level = 72, group = "WeaponShatterOnKill", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack" }, }, + ["TinctureCriticalStrikeMultiplierVsFullLife1"] = { type = "Suffix", affix = "of Rage", "+(50-80)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "9687", statOrder = { 9687 }, level = 45, group = "WeaponCriticalStrikeMultiplierVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplierVsFullLife2"] = { type = "Suffix", affix = "of Fury", "+(81-105)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "9687", statOrder = { 9687 }, level = 45, group = "WeaponCriticalStrikeMultiplierVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplierVsFullLife3"] = { type = "Suffix", affix = "of Ferocity", "+(106-140)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "9687", statOrder = { 9687 }, level = 72, group = "WeaponCriticalStrikeMultiplierVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "critical" }, }, + ["TinctureOnslaughtOnKill1"] = { type = "Suffix", affix = "of the Hare", "(6-9)% chance to gain Onslaught for 10 seconds on Killing Blow", statOrderKey = "9692", statOrder = { 9692 }, level = 1, group = "WeaponOnslaughtOnKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "speed" }, }, + ["TinctureOnslaughtOnKill2"] = { type = "Suffix", affix = "of the Rabbit", "(10-15)% chance to gain Onslaught for 10 seconds on Killing Blow", statOrderKey = "9692", statOrder = { 9692 }, level = 1, group = "WeaponOnslaughtOnKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "speed" }, }, + ["TinctureOnslaughtOnKill3"] = { type = "Suffix", affix = "of the Fox", "(16-25)% chance to gain Onslaught for 10 seconds on Killing Blow", statOrderKey = "9692", statOrder = { 9692 }, level = 60, group = "WeaponOnslaughtOnKill", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "attack", "speed" }, }, + ["TinctureCoverInAshVsFullLife1"] = { type = "Prefix", affix = "Ashfall", "Cover Enemies in Ash on Hit for (4-5) seconds against Enemies that are on Full Life", statOrderKey = "9685", statOrder = { 9685 }, level = 45, group = "WeaponCoverInAshVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureCoverInAshVsFullLife2"] = { type = "Prefix", affix = "Ember", "Cover Enemies in Ash on Hit for (6-7) seconds against Enemies that are on Full Life", statOrderKey = "9685", statOrder = { 9685 }, level = 45, group = "WeaponCoverInAshVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureCoverInAshVsFullLife3"] = { type = "Prefix", affix = "Cindered", "Cover Enemies in Ash on Hit for (8-12) seconds against Enemies that are on Full Life", statOrderKey = "9685", statOrder = { 9685 }, level = 72, group = "WeaponCoverInAshVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureCoverInFrostVsFullLife1"] = { type = "Prefix", affix = "Frostfall", "Cover Enemies in Frost on Hit for (4-5) seconds against Enemies that are on Full Life", statOrderKey = "9686", statOrder = { 9686 }, level = 45, group = "WeaponCoverInFrostVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "cold", "attack" }, }, + ["TinctureCoverInFrostVsFullLife2"] = { type = "Prefix", affix = "Snowdrift", "Cover Enemies in Frost on Hit for (6-7) seconds against Enemies that are on Full Life", statOrderKey = "9686", statOrder = { 9686 }, level = 45, group = "WeaponCoverInFrostVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "cold", "attack" }, }, + ["TinctureCoverInFrostVsFullLife3"] = { type = "Prefix", affix = "Blizzard", "Cover Enemies in Frost on Hit for (8-12) seconds against Enemies that are on Full Life", statOrderKey = "9686", statOrder = { 9686 }, level = 72, group = "WeaponCoverInFrostVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental", "cold", "attack" }, }, + ["TinctureCrushOnHitVsFullLife1"] = { type = "Prefix", affix = "Crushing", "Crush Enemies for (4-5) seconds when you Hit them while they are on Full Life", statOrderKey = "9688", statOrder = { 9688 }, level = 45, group = "WeaponCrushOnHitVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureCrushOnHitVsFullLife2"] = { type = "Prefix", affix = "Smashing", "Crush Enemies for (6-7) seconds when you Hit them while they are on Full Life", statOrderKey = "9688", statOrder = { 9688 }, level = 45, group = "WeaponCrushOnHitVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureCrushOnHitVsFullLife3"] = { type = "Prefix", affix = "Pulverising", "Crush Enemies for (8-12) seconds when you Hit them while they are on Full Life", statOrderKey = "9688", statOrder = { 9688 }, level = 72, group = "WeaponCrushOnHitVsFullLife", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureOverwhelm1"] = { type = "Prefix", affix = "Overwhelming", "Overwhelm (9-12)% of Physical Damage Reduction", statOrderKey = "9665", statOrder = { 9665 }, level = 1, group = "WeaponOverwhelm", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureOverwhelm2"] = { type = "Prefix", affix = "Battering", "Overwhelm (13-16)% of Physical Damage Reduction", statOrderKey = "9665", statOrder = { 9665 }, level = 1, group = "WeaponOverwhelm", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureOverwhelm3"] = { type = "Prefix", affix = "Pummeling", "Overwhelm (17-25)% of Physical Damage Reduction", statOrderKey = "9665", statOrder = { 9665 }, level = 60, group = "WeaponOverwhelm", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "physical", "attack" }, }, + ["TinctureFirePen1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (4-5)% Fire Resistance", statOrderKey = "9671", statOrder = { 9671 }, level = 1, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["TinctureFirePen2"] = { type = "Prefix", affix = "Sizzling", "Damage Penetrates (6-8)% Fire Resistance", statOrderKey = "9671", statOrder = { 9671 }, level = 1, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["TinctureFirePen3"] = { type = "Prefix", affix = "Blistering", "Damage Penetrates (9-12)% Fire Resistance", statOrderKey = "9671", statOrder = { 9671 }, level = 60, group = "FirePenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["TinctureColdPen1"] = { type = "Prefix", affix = "Frosted", "Damage Penetrates (4-5)% Cold Resistance", statOrderKey = "9670", statOrder = { 9670 }, level = 1, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["TinctureColdPen2"] = { type = "Prefix", affix = "Chilled", "Damage Penetrates (6-8)% Cold Resistance", statOrderKey = "9670", statOrder = { 9670 }, level = 1, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["TinctureColdPen3"] = { type = "Prefix", affix = "Icy", "Damage Penetrates (9-12)% Cold Resistance", statOrderKey = "9670", statOrder = { 9670 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["TinctureLightningPen1"] = { type = "Prefix", affix = "Snapping", "Damage Penetrates (4-5)% Lightning Resistance", statOrderKey = "9672", statOrder = { 9672 }, level = 1, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["TinctureLightningPen2"] = { type = "Prefix", affix = "Crackling", "Damage Penetrates (6-8)% Lightning Resistance", statOrderKey = "9672", statOrder = { 9672 }, level = 1, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["TinctureLightningPen3"] = { type = "Prefix", affix = "Sparking", "Damage Penetrates (9-12)% Lightning Resistance", statOrderKey = "9672", statOrder = { 9672 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["TinctureChaosPen1"] = { type = "Prefix", affix = "Profane", "Damage Penetrates (4-5)% Chaos Resistance", statOrderKey = "9669", statOrder = { 9669 }, level = 1, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureChaosPen2"] = { type = "Prefix", affix = "Tainted", "Damage Penetrates (6-8)% Chaos Resistance", statOrderKey = "9669", statOrder = { 9669 }, level = 1, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureChaosPen3"] = { type = "Prefix", affix = "Debased", "Damage Penetrates (9-12)% Chaos Resistance", statOrderKey = "9669", statOrder = { 9669 }, level = 60, group = "WeaponChaosPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureRageOnHitVsRareUnique1"] = { type = "Prefix", affix = "Angry", "(5-10)% chance to gain 1 Rage when you Hit a Rare or Unique Enemy", statOrderKey = "9658", statOrder = { 9658 }, level = 70, group = "WeaponRageOnHitVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRageOnHitVsRareUnique2"] = { type = "Prefix", affix = "Outraged", "(11-15)% chance to gain 1 Rage when you Hit a Rare or Unique Enemy", statOrderKey = "9658", statOrder = { 9658 }, level = 70, group = "WeaponRageOnHitVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRageOnHitVsRareUnique3"] = { type = "Prefix", affix = "Apoplectic", "(16-20)% chance to gain 1 Rage when you Hit a Rare or Unique Enemy", statOrderKey = "9658", statOrder = { 9658 }, level = 81, group = "WeaponRageOnHitVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureDamagePerSpellCast1"] = { type = "Prefix", affix = "Infused", "(10-12)% increased Damage for each Non-Instant Spell you've Cast in the past 8 seconds", statOrderKey = "9690", statOrder = { 9690 }, level = 45, group = "WeaponDamagePerSpellCast8Seconds", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureDamagePerSpellCast2"] = { type = "Prefix", affix = "Ensorcelled", "(13-15)% increased Damage for each Non-Instant Spell you've Cast in the past 8 seconds", statOrderKey = "9690", statOrder = { 9690 }, level = 45, group = "WeaponDamagePerSpellCast8Seconds", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureDamagePerSpellCast3"] = { type = "Prefix", affix = "Overloaded", "(16-18)% increased Damage for each Non-Instant Spell you've Cast in the past 8 seconds", statOrderKey = "9690", statOrder = { 9690 }, level = 72, group = "WeaponDamagePerSpellCast8Seconds", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePhasingOnKill1"] = { type = "Suffix", affix = "of Phasing", "(10-20)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "9666", statOrder = { 9666 }, level = 1, group = "PhasingOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePhasingOnKill2"] = { type = "Suffix", affix = "of Stealth", "(21-30)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "9666", statOrder = { 9666 }, level = 1, group = "PhasingOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePhasingOnKill3"] = { type = "Suffix", affix = "of Shadows", "(31-40)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "9666", statOrder = { 9666 }, level = 60, group = "PhasingOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureOverkillLeech1"] = { type = "Suffix", affix = "of Cannibalism", "(9-13)% of Overkill Damage is Leeched as Life", statOrderKey = "9660", statOrder = { 9660 }, level = 1, group = "LifeLeechOnWeaponOverkillDamage", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureOverkillLeech2"] = { type = "Suffix", affix = "of Sacrifice", "(14-18)% of Overkill Damage is Leeched as Life", statOrderKey = "9660", statOrder = { 9660 }, level = 1, group = "LifeLeechOnWeaponOverkillDamage", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureOverkillLeech3"] = { type = "Suffix", affix = "of Gorging", "(19-25)% of Overkill Damage is Leeched as Life", statOrderKey = "9660", statOrder = { 9660 }, level = 60, group = "LifeLeechOnWeaponOverkillDamage", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAoEOnKill1"] = { type = "Suffix", affix = "of Cleaving", "(9-13)% increased Area of Effect if you've Killed Recently", statOrderKey = "9676", statOrder = { 9676 }, level = 1, group = "WeaponAreaOfEffectIfKilledRecently", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAoEOnKill2"] = { type = "Suffix", affix = "of Slaughter", "(14-18)% increased Area of Effect if you've Killed Recently", statOrderKey = "9676", statOrder = { 9676 }, level = 1, group = "WeaponAreaOfEffectIfKilledRecently", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAoEOnKill3"] = { type = "Suffix", affix = "of Massacre", "(19-25)% increased Area of Effect if you've Killed Recently", statOrderKey = "9676", statOrder = { 9676 }, level = 60, group = "WeaponAreaOfEffectIfKilledRecently", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshBleed1"] = { type = "Prefix", affix = "Needling", "(9-13)% chance to refresh Bleeding Duration on Hit", statOrderKey = "9673", statOrder = { 9673 }, level = 70, group = "RefreshBleedDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshBleed2"] = { type = "Prefix", affix = "Skewering", "(14-18)% chance to refresh Bleeding Duration on Hit", statOrderKey = "9673", statOrder = { 9673 }, level = 70, group = "RefreshBleedDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshBleed3"] = { type = "Prefix", affix = "Lacerating", "(19-25)% chance to refresh Bleeding Duration on Hit", statOrderKey = "9673", statOrder = { 9673 }, level = 81, group = "RefreshBleedDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshIgnite1"] = { type = "Prefix", affix = "Singing", "(9-13)% chance to refresh Ignite Duration on Hit", statOrderKey = "9674", statOrder = { 9674 }, level = 70, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshIgnite2"] = { type = "Prefix", affix = "Charring", "(14-18)% chance to refresh Ignite Duration on Hit", statOrderKey = "9674", statOrder = { 9674 }, level = 70, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRefreshIgnite3"] = { type = "Prefix", affix = "Roasting", "(19-25)% chance to refresh Ignite Duration on Hit", statOrderKey = "9674", statOrder = { 9674 }, level = 81, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaOnKill1"] = { type = "Suffix", affix = "of Recycling", "Gain (10-20) Mana per Enemy Killed", statOrderKey = "9651", statOrder = { 9651 }, level = 1, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaOnKill2"] = { type = "Suffix", affix = "of Draining", "Gain (21-30) Mana per Enemy Killed", statOrderKey = "9651", statOrder = { 9651 }, level = 1, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaOnKill3"] = { type = "Suffix", affix = "of Siphoning", "Gain (31-40) Mana per Enemy Killed", statOrderKey = "9651", statOrder = { 9651 }, level = 60, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureWeaponRange1"] = { type = "Suffix", affix = "of Reach", "+(0.1-0.2) metres to Melee Strike Range", statOrderKey = "9663", statOrder = { 9663 }, level = 1, group = "WeaponRange", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureWeaponRange2"] = { type = "Suffix", affix = "of Skies", "+(0.3-0.4) metres to Melee Strike Range", statOrderKey = "9663", statOrder = { 9663 }, level = 1, group = "WeaponRange", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureWeaponRange3"] = { type = "Suffix", affix = "of Worlds", "+(0.5-0.6) metres to Melee Strike Range", statOrderKey = "9663", statOrder = { 9663 }, level = 60, group = "WeaponRange", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAttackSpeedOnBlock1"] = { type = "Suffix", affix = "of Riposting", "(9-13)% increased Attack Speed if you have Blocked Recently", statOrderKey = "9683", statOrder = { 9683 }, level = 45, group = "WeaponAttackSpeedIfBlockedRecently", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAttackSpeedOnBlock2"] = { type = "Suffix", affix = "of Momentum", "(14-18)% increased Attack Speed if you have Blocked Recently", statOrderKey = "9683", statOrder = { 9683 }, level = 45, group = "WeaponAttackSpeedIfBlockedRecently", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAttackSpeedOnBlock3"] = { type = "Suffix", affix = "of Retribution", "(19-25)% increased Attack Speed if you have Blocked Recently", statOrderKey = "9683", statOrder = { 9683 }, level = 72, group = "WeaponAttackSpeedIfBlockedRecently", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAdditionalProjectilesWhenHit1"] = { type = "Suffix", affix = "of Rain", "Weapon Attacks fire an additional Projectile if you've been Hit Recently", statOrderKey = "9664", statOrder = { 9664 }, level = 81, group = "AdditionalWeaponProjectilesIfHitRecently", weightKey = { "tincture", "default", }, weightVal = { 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAdditionalProjectilesWhenHit2"] = { type = "Suffix", affix = "of Hail", "Weapon Attacks fire 2 additional Projectiles if you've been Hit Recently", statOrderKey = "9664", statOrder = { 9664 }, level = 83, group = "AdditionalWeaponProjectilesIfHitRecently", weightKey = { "tincture", "default", }, weightVal = { 10, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePoisonDamageVsNonPoisoned1"] = { type = "Prefix", affix = "Potent", "Poisons you inflict on non-Poisoned Enemies deal (50-100)% increased Damage", statOrderKey = "9682", statOrder = { 9682 }, level = 45, group = "WeaponPoisonDamagevsNonPoisonedEnemies", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePoisonDamageVsNonPoisoned2"] = { type = "Prefix", affix = "Virulent", "Poisons you inflict on non-Poisoned Enemies deal (101-200)% increased Damage", statOrderKey = "9682", statOrder = { 9682 }, level = 45, group = "WeaponPoisonDamagevsNonPoisonedEnemies", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TincturePoisonDamageVsNonPoisoned3"] = { type = "Prefix", affix = "Pestilent", "Poisons you inflict on non-Poisoned Enemies deal (201-300)% increased Damage", statOrderKey = "9682", statOrder = { 9682 }, level = 72, group = "WeaponPoisonDamagevsNonPoisonedEnemies", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureConsecratedGroundVsRareUnique1"] = { type = "Prefix", affix = "Holy", "(3-5)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrderKey = "9653", statOrder = { 9653 }, level = 45, group = "ConsecratedGroundVsRareUniqueOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureConsecratedGroundVsRareUnique2"] = { type = "Prefix", affix = "Pious", "(6-8)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrderKey = "9653", statOrder = { 9653 }, level = 45, group = "ConsecratedGroundVsRareUniqueOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureConsecratedGroundVsRareUnique3"] = { type = "Prefix", affix = "Consecrated", "(9-11)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrderKey = "9653", statOrder = { 9653 }, level = 72, group = "ConsecratedGroundVsRareUniqueOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRarity1"] = { type = "Suffix", affix = "of Plunder", "(10-20)% increased Rarity of Items Dropped by Slain Enemies", statOrderKey = "9650", statOrder = { 9650 }, level = 1, group = "ItemRarityFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRarity2"] = { type = "Suffix", affix = "of Raiding", "(21-30)% increased Rarity of Items Dropped by Slain Enemies", statOrderKey = "9650", statOrder = { 9650 }, level = 1, group = "ItemRarityFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRarity3"] = { type = "Suffix", affix = "of Archaeology", "(31-40)% increased Rarity of Items Dropped by Slain Enemies", statOrderKey = "9650", statOrder = { 9650 }, level = 60, group = "ItemRarityFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureFlaskChargesGained1"] = { type = "Suffix", affix = "of Restocking", "(10-20)% increased Flask Charges gained from Kills", statOrderKey = "9656", statOrder = { 9656 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureFlaskChargesGained2"] = { type = "Suffix", affix = "of Replenishing", "(21-30)% increased Flask Charges gained from Kills", statOrderKey = "9656", statOrder = { 9656 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureFlaskChargesGained3"] = { type = "Suffix", affix = "of Pouring", "(31-40)% increased Flask Charges gained from Kills", statOrderKey = "9656", statOrder = { 9656 }, level = 60, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureLifeOnRareUniqueKill1"] = { type = "Suffix", affix = "of Victory", "Recover (5-10)% of Life on Killing a Rare or Unique Enemy", statOrderKey = "9668", statOrder = { 9668 }, level = 1, group = "LifeOnWeaponKillVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureLifeOnRareUniqueKill2"] = { type = "Suffix", affix = "of Conquest", "Recover (11-15)% of Life on Killing a Rare or Unique Enemy", statOrderKey = "9668", statOrder = { 9668 }, level = 1, group = "LifeOnWeaponKillVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureLifeOnRareUniqueKill3"] = { type = "Suffix", affix = "of Triumph", "Recover (16-20)% of Life on Killing a Rare or Unique Enemy", statOrderKey = "9668", statOrder = { 9668 }, level = 60, group = "LifeOnWeaponKillVsRareUnique", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaRegenOnShock1"] = { type = "Suffix", affix = "of Charge", "(31-40)% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", statOrderKey = "9661", statOrder = { 9661 }, level = 1, group = "ManaRegenerationOnWeaponShock", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaRegenOnShock2"] = { type = "Suffix", affix = "of Voltage", "(41-50)% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", statOrderKey = "9661", statOrder = { 9661 }, level = 1, group = "ManaRegenerationOnWeaponShock", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureManaRegenOnShock3"] = { type = "Suffix", affix = "of Dynamism", "(51-70)% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", statOrderKey = "9661", statOrder = { 9661 }, level = 60, group = "ManaRegenerationOnWeaponShock", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureMinimumChill1"] = { type = "Prefix", affix = "Frigid", "Chills from your Hits always reduce Action Speed by at least (10-12)%", statOrderKey = "9684", statOrder = { 9684 }, level = 70, group = "WeaponMinimumChill", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureMinimumChill2"] = { type = "Prefix", affix = "Subzero", "Chills from your Hits always reduce Action Speed by at least (13-15)%", statOrderKey = "9684", statOrder = { 9684 }, level = 81, group = "WeaponMinimumChill", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureAlwaysHitOnLowLife"] = { type = "Suffix", affix = "of Desperation", "Your hits can't be Evaded while you are on Low Life", statOrderKey = "9691", statOrder = { 9691 }, level = 81, group = "WeaponHitsCannotBeEvadedOnLowLife", weightKey = { "tincture", "default", }, weightVal = { 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureTerrainChain1"] = { type = "Suffix", affix = "of Glancing", "Projectiles have (11-15)% chance to be able to Chain when colliding with terrain", statOrderKey = "9693", statOrder = { 9693 }, level = 70, group = "WeaponProjectilesChainFromTerrain", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureTerrainChain2"] = { type = "Suffix", affix = "of Rebounding", "Projectiles have (16-20)% chance to be able to Chain when colliding with terrain", statOrderKey = "9693", statOrder = { 9693 }, level = 70, group = "WeaponProjectilesChainFromTerrain", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureTerrainChain3"] = { type = "Suffix", affix = "of Ricochet", "Projectiles have (21-30)% chance to be able to Chain when colliding with terrain", statOrderKey = "9693", statOrder = { 9693 }, level = 81, group = "WeaponProjectilesChainFromTerrain", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureGraspingVineOnHit1"] = { type = "Prefix", affix = "Grasping", "(6-8)% chance to inflict a Grasping Vine on Hit", statOrderKey = "9652", statOrder = { 9652 }, level = 70, group = "GraspingVineOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureGraspingVineOnHit2"] = { type = "Prefix", affix = "Clutching", "(9-11)% chance to inflict a Grasping Vine on Hit", statOrderKey = "9652", statOrder = { 9652 }, level = 70, group = "GraspingVineOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureGraspingVineOnHit3"] = { type = "Prefix", affix = "Ensnaring", "(12-14)% chance to inflict a Grasping Vine on Hit", statOrderKey = "9652", statOrder = { 9652 }, level = 81, group = "GraspingVineOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRandomCurseOnHit1"] = { type = "Prefix", affix = "Hexing", "(6-8)% chance to Curse Enemies with a random Hex on Hit", statOrderKey = "9667", statOrder = { 9667 }, level = 45, group = "RandomCurseOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRandomCurseOnHit2"] = { type = "Prefix", affix = "Profane", "(9-11)% chance to Curse Enemies with a random Hex on Hit", statOrderKey = "9667", statOrder = { 9667 }, level = 45, group = "RandomCurseOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureRandomCurseOnHit3"] = { type = "Prefix", affix = "Vile", "(12-14)% chance to Curse Enemies with a random Hex on Hit", statOrderKey = "9667", statOrder = { 9667 }, level = 72, group = "RandomCurseOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureSplash1"] = { type = "Prefix", affix = "Rippling", "Melee Strike Skills deal Splash Damage to surrounding targets, with (35-50)% reduced Area of Effect", statOrderKey = "9662", statOrder = { 9662 }, level = 70, group = "MeleeSplashOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureSplash2"] = { type = "Prefix", affix = "Echoing", "Melee Strike Skills deal Splash Damage to surrounding targets, with (20-34)% reduced Area of Effect", statOrderKey = "9662", statOrder = { 9662 }, level = 70, group = "MeleeSplashOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["TinctureSplash3"] = { type = "Prefix", affix = "Resonating", "Melee Strike Skills deal Splash Damage to surrounding targets, with (0-19)% reduced Area of Effect", statOrderKey = "9662", statOrder = { 9662 }, level = 81, group = "MeleeSplashOnWeaponHit", weightKey = { "tincture", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["TinctureBlockChanceOnStun1"] = { type = "Suffix", affix = "of Staggering", "+(6-9)% Chance to Block Attack Damage if you've Stunned an Enemy Recently", statOrderKey = "5123", statOrder = { 5123 }, level = 45, group = "BlockChanceIfStunnedEnemyRecently", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["TinctureBlockChanceOnStun2"] = { type = "Suffix", affix = "of Slamming", "+(10-12)% Chance to Block Attack Damage if you've Stunned an Enemy Recently", statOrderKey = "5123", statOrder = { 5123 }, level = 45, group = "BlockChanceIfStunnedEnemyRecently", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["TinctureBlockChanceOnStun3"] = { type = "Suffix", affix = "of Pummelling", "+(13-15)% Chance to Block Attack Damage if you've Stunned an Enemy Recently", statOrderKey = "5123", statOrder = { 5123 }, level = 72, group = "BlockChanceIfStunnedEnemyRecently", weightKey = { "tincture", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, diff --git a/src/Data/Uniques/tincture.lua b/src/Data/Uniques/tincture.lua new file mode 100644 index 0000000000..7e03d6be38 --- /dev/null +++ b/src/Data/Uniques/tincture.lua @@ -0,0 +1,5 @@ +-- Item data (c) Grinding Gear Games + +return { + +} diff --git a/src/Export/Bases/tincture.txt b/src/Export/Bases/tincture.txt index b4ee26fb52..d33e8be9f3 100644 --- a/src/Export/Bases/tincture.txt +++ b/src/Export/Bases/tincture.txt @@ -2,11 +2,4 @@ local itemBases = ... #type Tincture -#base Metadata/Items/Tinctures/TinctureStun -#base Metadata/Items/Tinctures/TinctureIgnite -#base Metadata/Items/Tinctures/TinctureShock -#base Metadata/Items/Tinctures/TincturePoison -#base Metadata/Items/Tinctures/TinctureCriticalStrike -#base Metadata/Items/Tinctures/TinctureCullingStrike -#base Metadata/Items/Tinctures/TinctureFreeze -#base Metadata/Items/Tinctures/TinctureBleed \ No newline at end of file +#baseMatch Metadata/Items/Tinctures/Tincture \ No newline at end of file diff --git a/src/Export/Classes/GGPKData.lua b/src/Export/Classes/GGPKData.lua index b1d7c11d20..6b8dd44002 100644 --- a/src/Export/Classes/GGPKData.lua +++ b/src/Export/Classes/GGPKData.lua @@ -287,6 +287,7 @@ function GGPKClass:GetNeededFiles() "Metadata/Items/Equipment.it", "Metadata/Items/Weapons/AbstractWeapon.it", "Metadata/Items/Tinctures/AbstractTincture.it", + "Metadata/Items/Jewels/AbstractAnimalCharm.it", } return datFiles, txtFiles, itFiles end diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index f35102fdd1..608c5ac6dd 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -1,7 +1,7 @@ if not loadStatFile then dofile("statdesc.lua") end -loadStatFile("stat_descriptions.txt") +loadStatFile("tincture_stat_descriptions.txt") local directiveTable = { } @@ -103,7 +103,6 @@ directiveTable.base = function(state, args, out) end out:write(' },\n') end - local movementPenalty local implicitLines = { } local implicitModTypes = { } for _, mod in ipairs(baseItemType.ImplicitMods) do diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 5c985c55c2..b0f150f67d 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -1,7 +1,7 @@ if not loadStatFile then dofile("statdesc.lua") end -loadStatFile("stat_descriptions.txt") +loadStatFile("tincture_stat_descriptions.txt") function table.containsId(table, element) for _, value in pairs(table) do @@ -135,7 +135,7 @@ end) writeMods("../Data/ModJewelCluster.lua", function(mod) return (mod.Domain == 21 and (mod.GenerationType == 1 or mod.GenerationType == 2)) or (mod.Domain == 10 and mod.GenerationType == 5) end) -writeMods("../Data/ModCharm.lua", function(mod) +writeMods("../Data/ModJewelCharm.lua", function(mod) return (mod.Domain == 35) and (mod.GenerationType == 1 or mod.GenerationType == 2) end) writeMods("../Data/Uniques/Special/WatchersEye.lua", function(mod) diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 933d2f2993..adb938406d 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -45,6 +45,7 @@ local itemTypes = { "belt", "jewel", "flask", + "tincture", } local function makeSkillMod(modName, modType, modVal, flags, keywordFlags, ...) @@ -630,9 +631,11 @@ data.describeStats = LoadModule("Modules/StatDescriber") data.itemMods = { Item = LoadModule("Data/ModItem"), Flask = LoadModule("Data/ModFlask"), + Tincture = LoadModule("Data/ModTincture"), Jewel = LoadModule("Data/ModJewel"), JewelAbyss = LoadModule("Data/ModJewelAbyss"), JewelCluster = LoadModule("Data/ModJewelCluster"), + JewelCharm = LoadModule("Data/ModJewelCharm"), } data.masterMods = LoadModule("Data/ModMaster") data.enchantments = { From f07f7965bbf8bcb806455fb58e088196527a1521 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Sun, 10 Dec 2023 21:03:22 -0600 Subject: [PATCH 08/31] Adding new uniques, sans "That Which Was Taken", which will need to be generated (#6983) --- src/Data/Uniques/Special/New.lua | 98 ++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) diff --git a/src/Data/Uniques/Special/New.lua b/src/Data/Uniques/Special/New.lua index 7ec91e5a3b..4579f4cc4c 100644 --- a/src/Data/Uniques/Special/New.lua +++ b/src/Data/Uniques/Special/New.lua @@ -87,6 +87,104 @@ Reflects 100 Cold Damage to Melee Attackers Reflects 100 Fire Damage to Melee Attackers Reflects 100 Lightning Damage to Melee Attackers When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds +]],[[ +Nametaker +Graceful Sword +League: Affliction +Requires Level 50, 78 Str, 94 Dex +Implicits: 1 ++350 to Accuracy Rating +(20-40)% increased Critical Strike Chance +2% of Physical Attack Damage Leeched as Life +2% of Physical Attack Damage Leeched as Mana +Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power +5% of Leech from Hits with this Weapon is Instant per Enemy Power +]],[[ +The Burden of Shadows +Primordial Staff +League: Affliction +Requires Level 58, 99 Str, 99 Int +Implicits: 1 ++18% Chance to Block Attack Damage while wielding a Staff +Socketed Gems are Supported by Level 1 Lifetap +(20-30)% increased Cast Speed +Lose 500 Life per second +Spells deal added Chaos Damage equal to (15-20)% of your maximum Life +]],[[ +The Flawed Refuge +Maple Round Shield +League: Affliction +Requires Level 39, 52 Str, 52 Dex +Implicits: 1 +180% increased Block Recovery +(100–150)% increased Armour and Evasion ++15% Chance to Block +You take 100% of Elemental Damage from Blocked Hits +40% of Elemental Damage from Hits taken as Physical Damage +]],[[ +The Adorned +Crimson Jewel +League: Affliction +(50–150)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels +]],[[ +Replica Fragility +Crimson Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Lose an Endurance Charge each second +Corrupted +]],[[ +Replica Pacifism +Viridian Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Lose a Frenzy Charge each second +Corrupted +]],[[ +Replica Powerlessness +Cobalt Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Lose a Power Charge each second +Corrupted +]],[[ +Replica Heatshiver +Leather Hood +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +(80–100)% increased Evasion Rating +60% increased Mana Regeneration Rate ++(20–30)% to Cold Resistance ++(20–30)% to Lightning Resistance +Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy +]],[[ +Replica Hinekora's Sight +Onyx Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist ++(10–16) to all Attributes ++(600–1000) to Accuracy Rating ++(600–1000) to Armour ++1% to all maximum Elemental Resistances +You cannot be Maimed +]],[[ +Replica Hyrri's Ire +Zodiac Leather +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist ++30% chance to Suppress Spell Damage ++(40–50) to Dexterity +(140–220)% increased Evasion Rating +25% increased Shock Duration on Enemies +(12–18) to (231–347) Added Lightning Damage with Wand Attacks +]],[[ +Replica Witchfire Brew +Stibnite Flask +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Creates a Smoke Cloud on Use +(-10–10)% reduced Charges per use +Grants Level 21 Vulnerability Curse Aura during Effect ]] -- Reworked From 748e6585f87e38090d1b93798d0159d9b3754462 Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Mon, 11 Dec 2023 04:05:28 +0100 Subject: [PATCH 09/31] Fix scrolling on search and hide all configurations input (#6981) Signed-off-by: Tomas Slusny --- src/Classes/ConfigTab.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Classes/ConfigTab.lua b/src/Classes/ConfigTab.lua index 527dc36ae3..d5c8326bc6 100644 --- a/src/Classes/ConfigTab.lua +++ b/src/Classes/ConfigTab.lua @@ -28,11 +28,19 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont self.varControls = { } self:BuildModList() + + self.toggleConfigs = false - self.controls.search = new("EditControl", { "TOPLEFT", self, "TOPLEFT" }, 8, 5, 360, 20, "", "Search", "%c", 100, function() + self.controls.sectionAnchor = new("LabelControl", { "TOPLEFT", self, "TOPLEFT" }, 0, 20, 0, 0, "") + self.controls.search = new("EditControl", { "TOPLEFT", self.controls.sectionAnchor, "TOPLEFT" }, 8, -15, 360, 20, "", "Search", "%c", 100, function() self:UpdateControls() end, nil, nil, true) - self.controls.sectionAnchor = new("LabelControl", { "TOPLEFT", self.controls.search, "TOPLEFT" }, -10, 15, 0, 0, "") + self.controls.toggleConfigs = new("ButtonControl", { "LEFT", self.controls.search, "RIGHT" }, 10, 0, 200, 20, function() + -- dynamic text + return self.toggleConfigs and "Hide Ineligible Configurations" or "Show All Configurations" + end, function() + self.toggleConfigs = not self.toggleConfigs + end) local function searchMatch(varData) local searchStr = self.controls.search.buf:lower():gsub("[%-%.%+%[%]%$%^%%%?%*]", "%%%0") @@ -45,14 +53,6 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont end return true end - - self.toggleConfigs = false - self.controls.toggleConfigs = new("ButtonControl", { "LEFT", self.controls.search, "RIGHT" }, 10, 0, 200, 20, function() - -- dynamic text - return self.toggleConfigs and "Hide Ineligible Configurations" or "Show All Configurations" - end, function() - self.toggleConfigs = not self.toggleConfigs - end) -- blacklist for Show All Configurations local function isShowAllConfig(varData) From 48ca3d9cae051c3ab14e37e2e3a98e85bfd289f7 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Mon, 11 Dec 2023 00:21:25 -0600 Subject: [PATCH 10/31] Updated import code with extra data GGG kindly provided (#6987) --- src/Classes/ImportTab.lua | 24 ++---------------------- src/Classes/PassiveSpec.lua | 13 ++----------- 2 files changed, 4 insertions(+), 33 deletions(-) diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index cb16b61447..f823b2ae2a 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -610,28 +610,8 @@ function ImportTabClass:ImportPassiveTreeAndJewels(json, charData) end self.build.itemsTab:PopulateSlots() self.build.itemsTab:AddUndoState() - for classId, class in pairs(self.build.spec.tree.classes) do - if charData.class == class.name then - charData.classId = classId - charData.ascendancyClass = 0 - break - end - for ascendId, ascendancyClass in pairs(class.ascendancies) do - if charData.class == ascendancyClass.name then - charData.classId = classId - charData.ascendancyClass = ascendId - break - end - end - end - -- Currently we don't get the alternate ascendancy from the unofficial API - --for ascendId, ascendClass in pairs(self.build.spec.tree.alternate_ascendancies) do - -- if charData.alternate_ascendancy == ascendClass then - -- charData.secondaryAscendancyClass = ascendId - -- break - -- end - --end - self.build.spec:ImportFromNodeList(charData.classId, charData.ascendancyClass, charData.secondaryAscendancyClass or 0, charPassiveData.hashes, charPassiveData.skill_overrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) + + self.build.spec:ImportFromNodeList(charPassiveData.character, charPassiveData.ascendancy, charPassiveData.alternate_ascendancy or 0, charPassiveData.hashes, charPassiveData.skill_overrides, charPassiveData.mastery_effects or {}, latestTreeVersion .. (charData.league:match("Ruthless") and "_ruthless" or "")) self.build.spec:AddUndoState() self.build.characterLevel = charData.level self.build.characterLevelAutoMode = false diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index 100380a590..772cc4b5c6 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -226,6 +226,8 @@ function PassiveSpecClass:ImportFromNodeList(classId, ascendClassId, secondaryAs end self:ResetNodes() self:SelectClass(classId) + self:SelectAscendClass(ascendClassId) + self:SelectSecondaryAscendClass(secondaryAscendClassId) self.hashOverrides = hashOverrides -- move above setting allocNodes so we can compare mastery with selection wipeTable(self.masterySelections) @@ -262,8 +264,6 @@ function PassiveSpecClass:ImportFromNodeList(classId, ascendClassId, secondaryAs self.allocNodes[id] = node end end - self:SelectAscendClass(ascendClassId) - self:SelectSecondaryAscendClass(secondaryAscendClassId) end function PassiveSpecClass:AllocateDecodedNodes(nodes, isCluster, endian) @@ -1135,15 +1135,6 @@ function PassiveSpecClass:BuildAllDependsAndPaths() for id, node in pairs(self.allocNodes) do node.visited = true local anyStartFound = (node.type == "ClassStart" or node.type == "AscendClassStart") - - -- Temporary solution until importing secondary ascendancies works - if self.tree.alternate_ascendancies and node.ascendancyName and (self.curSecondaryAscendClass == nil or self.curSecondaryAscendClass.id ~= node.ascendancyName) then - for id, class in ipairs(self.tree.alternate_ascendancies) do - if class.id == node.ascendancyName then - self:SelectSecondaryAscendClass(id) - end - end - end for _, other in ipairs(node.linked) do if other.alloc and not isValueInArray(node.depends, other) then -- The other node is allocated and isn't already dependent on this node, so try and find a path to a start node through it From 8a01d3842e2d5a9d445e49455890c5908e87aac1 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Mon, 11 Dec 2023 03:47:14 -0600 Subject: [PATCH 11/31] Update base skills with new qualities (#6976) * WIP skills export * Export skills, fix dat file loading bug * Add back IncrementalEffectiveness * Don't export gems that don't have a manual GrantedEffect * Manual fix for Frostbomb * WIP skills export * Export skills, fix dat file loading bug * Add back IncrementalEffectiveness * Don't export gems that don't have a manual GrantedEffect * Manual fix for Frostbomb * Fix Interpolation for DoTs * Update all dex gems and remove old mods Adds support for all the new stats on the base dex gems Remove mods from gems that no longer exist on the base or Transfigured version of the gem * 1/3rd of Int gems up to Frost Bomb * Updating Strength skill gems for 3.23 Also removed a condition on Rage Vortex as now the quality can be pumped up to arbitrarily high values * Fix remaining intelligence gems Fix remaining gems Add support for tertiary durations for Wintertide Brand debuff Re-organise gems into alphabetical order * Fix up strength gems * Update skills from items * Fix spectres * Dex Support gems * Int Support gems * Export str supports * Remove redundant line * Comment out Petrified Blood tests Petrified Blood losing alt quality makes this test hard to understand. Plan on revisiting this later to at least simply use the numbers in PoB * Fix SRS * New Ascendancy skills * Adding support for Ravenous and Pacify * Fix SRS * Add support for Barkskin * Move skills --------- Co-authored-by: LocalIdentity --- spec/System/TestDefence_spec.lua | 304 +-- src/Classes/PassiveTreeView.lua | 2 +- src/Data/Gems.lua | 17 +- src/Data/Global.lua | 2 + src/Data/Minions.lua | 40 +- src/Data/ModCache.lua | 34 +- src/Data/SkillStatMap.lua | 143 +- src/Data/Skills/act_dex.lua | 2767 ++++++++------------- src/Data/Skills/act_int.lua | 4007 ++++++++++++------------------ src/Data/Skills/act_str.lua | 1951 +++++---------- src/Data/Skills/minion.lua | 76 +- src/Data/Skills/other.lua | 181 +- src/Data/Skills/spectre.lua | 123 +- src/Data/Skills/sup_dex.lua | 398 +-- src/Data/Skills/sup_int.lua | 562 +---- src/Data/Skills/sup_str.lua | 415 +--- src/Data/Spectres.lua | 4 +- src/Export/Classes/GGPKData.lua | 5 +- src/Export/Main.lua | 3 +- src/Export/Minions/Minions.txt | 5 +- src/Export/Scripts/skills.lua | 81 +- src/Export/Skills/act_dex.txt | 242 +- src/Export/Skills/act_int.txt | 492 ++-- src/Export/Skills/act_str.txt | 373 +-- src/Export/Skills/minion.txt | 8 + src/Export/Skills/other.txt | 60 +- src/Export/Skills/spectre.txt | 2 +- src/Export/Skills/sup_dex.txt | 46 - src/Export/Skills/sup_int.txt | 121 - src/Export/Skills/sup_str.txt | 29 - src/Export/spec.lua | 66 +- src/Modules/CalcActiveSkill.lua | 12 +- src/Modules/CalcOffence.lua | 43 +- src/Modules/CalcPerform.lua | 3 +- src/Modules/CalcSections.lua | 9 +- src/Modules/ConfigOptions.lua | 11 + src/Modules/Data.lua | 11 +- src/Modules/ModParser.lua | 4 + 38 files changed, 4631 insertions(+), 8021 deletions(-) diff --git a/spec/System/TestDefence_spec.lua b/spec/System/TestDefence_spec.lua index c08f0078d2..c9f733a970 100644 --- a/spec/System/TestDefence_spec.lua +++ b/spec/System/TestDefence_spec.lua @@ -91,72 +91,72 @@ describe("TestDefence", function() it("progenesis and petrified blood", function() -- Petrified blood - build.skillsTab:PasteSocketGroup("\z - Label: 50% petrified\n\z - Petrified Blood 20/40 Alternate1 1\n\z - Arrogance 21/200 Alternate1 1\n\z - ") -- 50% petrified effect, when exactly half of the life is reserved, should make the life pool be equivalent to no petrified effect and full life. - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +200 to all resistances\n\z - +200 to all maximum resistances\n\z - 50% reduced damage taken\n\z - 50% less damage taken\n\z - Nearby enemies deal 20% less damage\n\z - " - build.configTab:BuildModList() - runCallback("OnFrame") - assert.are.equals(300, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) - assert.are.equals(3000, build.calcsTab.calcsOutput.FireMaximumHitTaken) - assert.are.equals(3000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) - assert.are.equals(3000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) - assert.are.equals(3000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) - build.skillsTab.socketGroupList = {} - - build.skillsTab:PasteSocketGroup("\z - Label: 50% petrified\n\z - Petrified Blood 20/40 Alternate1 1\n\z - Arrogance 21/200 Alternate1 1\n\z - ") - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +200 to all resistances\n\z - +200 to all maximum resistances\n\z - 50% reduced damage taken\n\z - 50% less damage taken\n\z - Nearby enemies deal 20% less damage\n\z - 100% less intelligence\n\z - +60 to maximum energy shield\n\z - " -- petrified blood should not interact with pools other than life. - build.configTab:BuildModList() - runCallback("OnFrame") - assert.are.equals(600, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.FireMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) - assert.are.equals(3000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) - build.skillsTab.socketGroupList = {} - - build.skillsTab:PasteSocketGroup("\z - Label: 75% petrified\n\z - Petrified Blood 20/140 Alternate1 1\n\z - ") -- 75% petrified effect, starting from full life, should make the life pool be equivalent to 0.5 * life (unprotected upper half) and then 4 * 0.5 * life (protected lower half), making it 2.5* bigger in total - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +200 to all resistances\n\z - +200 to all maximum resistances\n\z - 50% reduced damage taken\n\z - 50% less damage taken\n\z - Nearby enemies deal 20% less damage\n\z - " - build.configTab:BuildModList() - runCallback("OnFrame") - assert.are.equals(750, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) - assert.are.equals(7500, build.calcsTab.calcsOutput.FireMaximumHitTaken) - assert.are.equals(7500, build.calcsTab.calcsOutput.ColdMaximumHitTaken) - assert.are.equals(7500, build.calcsTab.calcsOutput.LightningMaximumHitTaken) - assert.are.equals(7500, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) - build.skillsTab.socketGroupList = {} + --build.skillsTab:PasteSocketGroup("\z + --Label: 50% petrified\n\z + --Petrified Blood 20/40 Alternate1 1\n\z + --Arrogance 21/200 Alternate1 1\n\z + --") -- 50% petrified effect, when exactly half of the life is reserved, should make the life pool be equivalent to no petrified effect and full life. + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+200 to all resistances\n\z + --+200 to all maximum resistances\n\z + --50% reduced damage taken\n\z + --50% less damage taken\n\z + --Nearby enemies deal 20% less damage\n\z + --" + --build.configTab:BuildModList() + --runCallback("OnFrame") + --assert.are.equals(300, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) + --assert.are.equals(3000, build.calcsTab.calcsOutput.FireMaximumHitTaken) + --assert.are.equals(3000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) + --assert.are.equals(3000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) + --assert.are.equals(3000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + --build.skillsTab.socketGroupList = {} + -- + --build.skillsTab:PasteSocketGroup("\z + --Label: 50% petrified\n\z + --Petrified Blood 20/40 Alternate1 1\n\z + --Arrogance 21/200 Alternate1 1\n\z + --") + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+200 to all resistances\n\z + --+200 to all maximum resistances\n\z + --50% reduced damage taken\n\z + --50% less damage taken\n\z + --Nearby enemies deal 20% less damage\n\z + --100% less intelligence\n\z + --+60 to maximum energy shield\n\z + --" -- petrified blood should not interact with pools other than life. + --build.configTab:BuildModList() + --runCallback("OnFrame") + --assert.are.equals(600, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.FireMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) + --assert.are.equals(3000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + --build.skillsTab.socketGroupList = {} + -- + --build.skillsTab:PasteSocketGroup("\z + --Label: 75% petrified\n\z + --Petrified Blood 20/140 Alternate1 1\n\z + --") -- 75% petrified effect, starting from full life, should make the life pool be equivalent to 0.5 * life (unprotected upper half) and then 4 * 0.5 * life (protected lower half), making it 2.5* bigger in total + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+200 to all resistances\n\z + --+200 to all maximum resistances\n\z + --50% reduced damage taken\n\z + --50% less damage taken\n\z + --Nearby enemies deal 20% less damage\n\z + --" + --build.configTab:BuildModList() + --runCallback("OnFrame") + --assert.are.equals(750, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) + --assert.are.equals(7500, build.calcsTab.calcsOutput.FireMaximumHitTaken) + --assert.are.equals(7500, build.calcsTab.calcsOutput.ColdMaximumHitTaken) + --assert.are.equals(7500, build.calcsTab.calcsOutput.LightningMaximumHitTaken) + --assert.are.equals(7500, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + --build.skillsTab.socketGroupList = {} -- Progenesis build.configTab.input.customMods = "\z @@ -196,52 +196,52 @@ describe("TestDefence", function() assert.are.equals(6000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) -- Progenesis + petrified blood - build.skillsTab:PasteSocketGroup("\z - Label: 50% petrified\n\z - Petrified Blood 20/40 Alternate1 1\n\z - Arrogance 21/200 Alternate1 1\n\z - ") - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +200 to all resistances\n\z - +200 to all maximum resistances\n\z - 50% reduced damage taken\n\z - 50% less damage taken\n\z - Nearby enemies deal 20% less damage\n\z - When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z - " -- With half of life reserved, both effects are active and multiplicative with each other, making the effective life pool 4 * half life = 2 * life (or same as no petrified, no reserve and 50% progenesis) - build.configTab.input.conditionUsingFlask = true - build.configTab:BuildModList() - runCallback("OnFrame") - assert.are.equals(600, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.FireMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) - assert.are.equals(6000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) - build.skillsTab.socketGroupList = {} - - build.skillsTab:PasteSocketGroup("\z - Label: 50% petrified\n\z - Petrified Blood 20/40 Alternate1 1\n\z - ") - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +200 to all resistances\n\z - +200 to all maximum resistances\n\z - 50% reduced damage taken\n\z - 50% less damage taken\n\z - Nearby enemies deal 20% less damage\n\z - When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z - " -- With no life reserved, progenesis first doubles the pool of life above low, then both progenesis and petrified quadruple the pool of life below low, so effective pool is 3 * life - build.configTab.input.conditionUsingFlask = true - build.configTab:BuildModList() - runCallback("OnFrame") - assert.are.equals(900, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) - assert.are.equals(9000, build.calcsTab.calcsOutput.FireMaximumHitTaken) - assert.are.equals(9000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) - assert.are.equals(9000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) - assert.are.equals(9000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) - build.skillsTab.socketGroupList = {} + --build.skillsTab:PasteSocketGroup("\z + --Label: 50% petrified\n\z + --Petrified Blood 20/40 Alternate1 1\n\z + --Arrogance 21/200 Alternate1 1\n\z + --") + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+200 to all resistances\n\z + --+200 to all maximum resistances\n\z + --50% reduced damage taken\n\z + --50% less damage taken\n\z + --Nearby enemies deal 20% less damage\n\z + --When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z + --" -- With half of life reserved, both effects are active and multiplicative with each other, making the effective life pool 4 * half life = 2 * life (or same as no petrified, no reserve and 50% progenesis) + --build.configTab.input.conditionUsingFlask = true + --build.configTab:BuildModList() + --runCallback("OnFrame") + --assert.are.equals(600, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.FireMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) + --assert.are.equals(6000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + --build.skillsTab.socketGroupList = {} + -- + --build.skillsTab:PasteSocketGroup("\z + --Label: 50% petrified\n\z + --Petrified Blood 20/40 Alternate1 1\n\z + --") + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+200 to all resistances\n\z + --+200 to all maximum resistances\n\z + --50% reduced damage taken\n\z + --50% less damage taken\n\z + --Nearby enemies deal 20% less damage\n\z + --When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z + --" -- With no life reserved, progenesis first doubles the pool of life above low, then both progenesis and petrified quadruple the pool of life below low, so effective pool is 3 * life + --build.configTab.input.conditionUsingFlask = true + --build.configTab:BuildModList() + --runCallback("OnFrame") + --assert.are.equals(900, build.calcsTab.calcsOutput.PhysicalMaximumHitTaken) + --assert.are.equals(9000, build.calcsTab.calcsOutput.FireMaximumHitTaken) + --assert.are.equals(9000, build.calcsTab.calcsOutput.ColdMaximumHitTaken) + --assert.are.equals(9000, build.calcsTab.calcsOutput.LightningMaximumHitTaken) + --assert.are.equals(9000, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + --build.skillsTab.socketGroupList = {} build.skillsTab:PasteSocketGroup("\z Petrified Blood 20/0 Default 1\n\z @@ -273,46 +273,46 @@ describe("TestDefence", function() assert.are.equals(120, poolsRemaining.LifeLossLostOverTime) assert.are.equals(20, poolsRemaining.LifeBelowHalfLossLostOverTime) - build.skillsTab:PasteSocketGroup("\z - Label: 50% petrified\n\z - Petrified Blood 20/40 Alternate1 1\n\z - ") - build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) - build.configTab.input.customMods = "\z - +1950 to life\n\z - +2960 to mana\n\z - +3000 to energy shield\n\z - 100% less attributes\n\z - 100% less mana reserved\n\z - +60% to all resistances\n\z - chaos damage does not bypass energy shield\n\z - mind over matter\n\z - eldritch battery\n\z - 10% of lightning damage is taken from mana before life\n\z - chaos damage is taken from mana before life\n\z - When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z - " - build.configTab.input.conditionUsingFlask = true - build.configTab:BuildModList() - runCallback("OnFrame") - - _, takenDamages = takenHitFromTypeMaxHit("Fire") - poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) - assert.are.equals(0, poolsRemaining.Life) - assert.are.equals(0, poolsRemaining.EnergyShield) - assert.is.not_false(poolsRemaining.Mana > 0) - - _, takenDamages = takenHitFromTypeMaxHit("Lightning") - poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) - assert.are.equals(0, poolsRemaining.Life) - assert.are.equals(0, poolsRemaining.EnergyShield) - assert.are.equals(0, poolsRemaining.Mana) - - _, takenDamages = takenHitFromTypeMaxHit("Chaos") - poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) - assert.are.equals(0, poolsRemaining.Life) - assert.are.equals(0, poolsRemaining.EnergyShield) - assert.are.equals(0, poolsRemaining.Mana) + --build.skillsTab:PasteSocketGroup("\z + --Label: 50% petrified\n\z + --Petrified Blood 20/40 Alternate1 1\n\z + --") + --build.skillsTab:ProcessSocketGroup(build.skillsTab.socketGroupList[1]) + --build.configTab.input.customMods = "\z + --+1950 to life\n\z + --+2960 to mana\n\z + --+3000 to energy shield\n\z + --100% less attributes\n\z + --100% less mana reserved\n\z + --+60% to all resistances\n\z + --chaos damage does not bypass energy shield\n\z + --mind over matter\n\z + --eldritch battery\n\z + --10% of lightning damage is taken from mana before life\n\z + --chaos damage is taken from mana before life\n\z + --When Hit during effect, 50% of Life loss from Damage taken occurs over 4 seconds instead\n\z + --" + --build.configTab.input.conditionUsingFlask = true + --build.configTab:BuildModList() + --runCallback("OnFrame") + -- + --_, takenDamages = takenHitFromTypeMaxHit("Fire") + --poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) + --assert.are.equals(0, poolsRemaining.Life) + --assert.are.equals(0, poolsRemaining.EnergyShield) + --assert.is.not_false(poolsRemaining.Mana > 0) + -- + --_, takenDamages = takenHitFromTypeMaxHit("Lightning") + --poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) + --assert.are.equals(0, poolsRemaining.Life) + --assert.are.equals(0, poolsRemaining.EnergyShield) + --assert.are.equals(0, poolsRemaining.Mana) + -- + --_, takenDamages = takenHitFromTypeMaxHit("Chaos") + --poolsRemaining = build.calcsTab.calcs.reducePoolsByDamage(nil, takenDamages, build.calcsTab.calcsEnv.player) + --assert.are.equals(0, poolsRemaining.Life) + --assert.are.equals(0, poolsRemaining.EnergyShield) + --assert.are.equals(0, poolsRemaining.Mana) build.skillsTab.socketGroupList = {} end) diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 6a3cde5b1e..294e65dff1 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -699,7 +699,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) SetDrawLayer(nil, 25) for nodeId in pairs(tree.sockets) do local node = spec.nodes[nodeId] - if node and (not node.expansionJewel or node.expansionJewel.size == 2) then + if node and node.name ~= "Charm Socket" and (not node.expansionJewel or node.expansionJewel.size == 2) then local scrX, scrY = treeToScreen(node.x, node.y) local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(nodeId) if node == hoverNode then diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index 0ac59e58cb..c513ab1c92 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -2455,9 +2455,8 @@ return { spell = true, projectile = true, physical = true, - duration = true, }, - tagString = "Spell, Projectile, Physical, Duration", + tagString = "Spell, Projectile, Physical", reqStr = 0, reqDex = 60, reqInt = 40, @@ -3153,9 +3152,8 @@ return { grants_active_skill = true, spell = true, minion = true, - physical = true, }, - tagString = "Spell, Minion, Physical", + tagString = "Spell, Minion", reqStr = 60, reqDex = 0, reqInt = 40, @@ -3893,6 +3891,7 @@ return { name = "Lightning Tendrils", grantedEffectId = "LightningTendrilsChannelled", tags = { + critical = true, intelligence = true, grants_active_skill = true, spell = true, @@ -3900,7 +3899,7 @@ return { lightning = true, channelling = true, }, - tagString = "Spell, AoE, Lightning, Channelling", + tagString = "Critical, Spell, AoE, Lightning, Channelling", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4419,7 +4418,7 @@ return { physical = true, duration = true, }, - tagString = "Critical, Spell, AoE, Physical, Duration", + tagString = "Spell, AoE, Physical, Duration", reqStr = 0, reqDex = 100, reqInt = 0, @@ -4429,7 +4428,6 @@ return { name = "Blade Vortex", grantedEffectId = "BladeVortex", tags = { - critical = true, dexterity = true, grants_active_skill = true, spell = true, @@ -4437,7 +4435,7 @@ return { duration = true, physical = true, }, - tagString = "Critical, Spell, AoE, Duration, Physical", + tagString = "Spell, AoE, Duration, Physical", reqStr = 0, reqDex = 100, reqInt = 0, @@ -6143,14 +6141,13 @@ return { name = "Cobra Lash", grantedEffectId = "CobraLash", tags = { - critical = true, dexterity = true, grants_active_skill = true, attack = true, projectile = true, chaos = true, }, - tagString = "Critical, Attack, Projectile, Chaos", + tagString = "Attack, Projectile, Chaos", reqStr = 0, reqDex = 60, reqInt = 40, diff --git a/src/Data/Global.lua b/src/Data/Global.lua index a0970e5524..e923ff7eaa 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -310,6 +310,8 @@ SkillType = { PreventHexTransfer = 127, MinionsAreUndamageable = 128, InnateTrauma = 129, + DualWieldRequiresDifferentTypes = 130, + NoVolley = 131, } GlobalCache = { diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index c6d34c57ff..d76a64e259 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -32,7 +32,7 @@ minions["RaisedZombie"] = { minions["SummonedChaosGolem"] = { name = "Chaos Golem", - life = 6.91, + life = 6.9, energyShield = 0.2, fireResist = 40, coldResist = 40, @@ -57,7 +57,7 @@ minions["SummonedChaosGolem"] = { minions["SummonedFlameGolem"] = { name = "Flame Golem", - life = 5.83, + life = 5.82, energyShield = 0.4, fireResist = 70, coldResist = 40, @@ -84,7 +84,7 @@ minions["SummonedFlameGolem"] = { minions["SummonedIceGolem"] = { name = "Ice Golem", - life = 5.83, + life = 5.82, energyShield = 0.4, fireResist = 40, coldResist = 70, @@ -109,7 +109,7 @@ minions["SummonedIceGolem"] = { minions["SummonedLightningGolem"] = { name = "Lightning Golem", - life = 5.83, + life = 5.82, energyShield = 0.2, fireResist = 40, coldResist = 40, @@ -173,7 +173,7 @@ minions["SummonedRagingSpirit"] = { accuracy = 3.4, limit = "ActiveRagingSpiritLimit", skillList = { - "Melee", + "SumonRagingSpiritMelee", }, modList = { mod("PhysicalDamageConvertToFire", "BASE", 100, 0, 0), -- RagingSpiritConvertPhysToFire [base_physical_damage_%_to_convert_to_fire = 100] @@ -318,6 +318,26 @@ minions["Clone"] = { }, } +minions["ArrowClone"] = { + name = "Clone", + life = 1.5, + fireResist = 40, + coldResist = 40, + lightningResist = 40, + chaosResist = 20, + damage = 1, + damageSpread = 0, + attackTime = 0.83, + attackRange = 6, + accuracy = 3.4, + skillList = { + "BlinkMirrorArrowMelee", + }, + modList = { + mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10] + }, +} + minions["SpiderMinion"] = { name = "Spider Minion", life = 1.8, @@ -363,7 +383,7 @@ minions["AnimatedWeapon"] = { minions["AnimatedArmour"] = { name = "Animated Guardian", - life = 4.5, + life = 5, armour = 0.5, fireResist = 40, coldResist = 40, @@ -470,7 +490,7 @@ minions["HeraldOfAgonySpiderPlated"] = { }, modList = { mod("PhysicalDamageConvertToChaos", "BASE", 40, 0, 0), -- MonsterConvertToChaosHeraldOfAgony1 [base_physical_damage_%_to_convert_to_chaos = 40] - mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [cannot_be_damaged = 1] + mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1] mod("Condition:FullLife", "FLAG", true), }, } @@ -703,7 +723,7 @@ minions["DropBearUniqueSummoned"] = { minions["SummonedCarrionGolem"] = { name = "Carrion Golem", - life = 5.83, + life = 5.82, energyShield = 0.4, fireResist = 40, coldResist = 40, @@ -770,7 +790,7 @@ minions["SkitterbotLightning"] = { minions["SummonedReaper"] = { name = "Reaper", - life = 3, + life = 3.74, armour = 1, fireResist = 40, coldResist = 40, @@ -820,7 +840,7 @@ minions["SummonedArbalists"] = { "MPWExpeditionSummonedArbalestProjectile", }, modList = { - mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [cannot_be_damaged = 1] + mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1] }, } diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index f4f66a0707..2cbb3df174 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -118,7 +118,7 @@ c["+1 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0 c["+1 Prefix Modifier allowed"]={{}," Prefix Modifier allowed "} c["+1 Prefix Modifier allowed -1 Suffix Modifier allowed"]={{}," Prefix Modifier allowed -1 Suffix Modifier allowed "} c["+1 Suffix Modifier allowed"]={{}," Suffix Modifier allowed "} -c["+1 Suffix Modifier allowed 25% increased Suffix Modifier Magnitudes"]={{}," Suffix Modifier allowed 25% increased Suffix Modifier Magnitudes "} +c["+1 Suffix Modifier allowed Implicit Modifiers Cannot Be Changed"]={{}," Suffix Modifier allowed Implicit Modifiers Cannot Be Changed "} c["+1 maximum Energy Shield per 5 Strength"]={{[1]={[1]={div=5,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Cooldown "} c["+1 to Level of Socketed Active Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active skill",value=1}}},nil} @@ -1377,7 +1377,6 @@ c["-1 Physical Damage taken from Hits per Level"]={{[1]={[1]={type="Multiplier", c["-1 Prefix Modifier allowed"]={{}," Prefix Modifier allowed "} c["-1 Prefix Modifier allowed +1 Suffix Modifier allowed"]={{}," Prefix Modifier allowed +1 Suffix Modifier allowed "} c["-1 Suffix Modifier allowed"]={{}," Suffix Modifier allowed "} -c["-1 Suffix Modifier allowed 25% increased Prefix Modifier Magnitudes"]={{}," Suffix Modifier allowed 25% increased Prefix Modifier Magnitudes "} c["-1 Suffix Modifier allowed Implicit Modifiers Cannot Be Changed"]={{}," Suffix Modifier allowed Implicit Modifiers Cannot Be Changed "} c["-1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil} c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil} @@ -1410,8 +1409,8 @@ c["-16 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,na c["-18 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-18}},nil} c["-2 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-2}},nil} c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-2}},nil} -c["-2 Prefix Modifier allowed"]={{}," Prefix Modifier allowed "} -c["-2 Prefix Modifier allowed -1 Suffix Modifier allowed"]={{}," Prefix Modifier allowed -1 Suffix Modifier allowed "} +c["-2 Prefix Modifiers allowed"]={{}," Prefix Modifiers allowed "} +c["-2 Prefix Modifiers allowed -1 Suffix Modifier allowed"]={{}," Prefix Modifiers allowed -1 Suffix Modifier allowed "} c["-2 to Accuracy Rating per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-2}},nil} c["-2 to Level of Socketed Skill Gems per Socketed Gem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={type="Multiplier",var="SocketedGemsIn{SlotName}"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=-2}}},nil} c["-2 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-2}},nil} @@ -1944,8 +1943,7 @@ c["10% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed c["10% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=10}},nil} c["10% chance to Avoid Elemental Ailments while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=10}},nil} c["10% chance to Avoid being Poisoned"]={{[1]={flags=0,keywordFlags=0,name="AvoidPoison",type="BASE",value=10}},nil} -c["10% chance to Avoid non-Damaging Ailments on you per Bark below maximum"]={{}," to Avoid non-Damaging Ailments on you per Bark below maximum "} -c["10% chance to Avoid non-Damaging Ailments on you per Bark below maximum 10% reduced Duration of Damaging Ailments on you per Bark"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=10}}," to Avoid non-Damaging Ailments on you per Bark below maximum 10% reduced of Damaging Ailments on you per Bark "} +c["10% chance to Avoid non-Damaging Ailments on you per Bark below maximum"]={{[1]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=10},[2]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=10},[3]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=10},[4]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidSap",type="BASE",value=10},[5]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidBrittle",type="BASE",value=10},[6]={[1]={type="Multiplier",var="MissingBarkskinStacks"},flags=0,keywordFlags=0,name="AvoidScorch",type="BASE",value=10}},nil} c["10% chance to Blind Enemies on Hit"]={{}," to Blind Enemies "} c["10% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies with Attacks "} c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies "} @@ -2273,7 +2271,7 @@ c["10% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharge c["10% reduced Damage over Time Taken while you have at least 20 Fortification"]={{[1]={[1]={stat="FortificationStacks",threshold=20,type="StatThreshold"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="INC",value=-10}},nil} c["10% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}},nil} c["10% reduced Damage taken while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}},nil} -c["10% reduced Duration of Damaging Ailments on you per Bark"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}}," of Damaging Ailments on you per Bark "} +c["10% reduced Duration of Damaging Ailments on you per Bark"]={{[1]={[1]={type="Multiplier",var="BarkskinStacks"},flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-10},[2]={[1]={type="Multiplier",var="BarkskinStacks"},flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-10},[3]={[1]={type="Multiplier",var="BarkskinStacks"},flags=0,keywordFlags=0,name="SelfPoisonDuration",type="INC",value=-10}},nil} c["10% reduced Effect of Chill and Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-10}},nil} c["10% reduced Elemental Ailment Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-10}},nil} c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil} @@ -3959,8 +3957,7 @@ c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=33 c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=603979780,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil} c["25% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil} c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil} -c["25% increased Prefix Modifier Magnitudes"]={{}," Prefix Modifier Magnitudes "} -c["25% increased Prefix Modifier Magnitudes Implicit Modifiers Cannot Be Changed"]={{}," Prefix Modifier Magnitudes Implicit Modifiers Cannot Be Changed "} +c["25% increased Prefix Modifier magnitudes"]={{}," Prefix Modifier magnitudes "} c["25% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies "} @@ -3981,8 +3978,8 @@ c["25% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrR c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil} c["25% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=603979780,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil} c["25% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil} -c["25% increased Suffix Modifier Magnitudes"]={{}," Suffix Modifier Magnitudes "} -c["25% increased Suffix Modifier Magnitudes Implicit Modifiers Cannot Be Changed"]={{}," Suffix Modifier Magnitudes Implicit Modifiers Cannot Be Changed "} +c["25% increased Suffix Modifier magnitudes"]={{}," Suffix Modifier magnitudes "} +c["25% increased Suffix Modifier magnitudes +27% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="INC",value=25}}," Suffix Modifier magnitudes +27% to "} c["25% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=25}},nil} c["25% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=25}},nil} c["25% increased Totem Placement range"]={{}," Placement range "} @@ -8159,13 +8156,13 @@ c["Grants Level 12 Summon Stone Golem Skill"]={{[1]={flags=0,keywordFlags=0,name c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil} c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil} c["Grants Level 15 Vengeance Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Vengeance"}}},nil} -c["Grants Level 20 Affliction Skill"]={nil,nil} +c["Grants Level 20 Affliction Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MinionSacrifice"}}},nil} c["Grants Level 20 Approaching Flames Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfFire"}}},nil} c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BirdAspect"}}},nil} c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CatAspect"}}},nil} c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrabAspect"}}},nil} c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiderAspect"}}},nil} -c["Grants Level 20 Barkskin Skill"]={nil,nil} +c["Grants Level 20 Barkskin Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Barkskin"}}},nil} c["Grants Level 20 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BearTrap"}}},nil} c["Grants Level 20 Bone Armour Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BoneArmour"}}},nil} c["Grants Level 20 Brandsurge Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BrandDetonate"}}},nil} @@ -8173,10 +8170,10 @@ c["Grants Level 20 Death Wish Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraS c["Grants Level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfGod"}}},nil} c["Grants Level 20 Hatred Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Hatred"}}},nil} c["Grants Level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MerveilWarp"}}},nil} -c["Grants Level 20 Pacify Skill"]={nil,nil} -c["Grants Level 20 Penance Mark Skill"]={nil,nil} +c["Grants Level 20 Pacify Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Quieten"}}},nil} +c["Grants Level 20 Penance Mark Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PenanceMark"}}},nil} c["Grants Level 20 Queen's Demand Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="QueensDemand"}}},nil} -c["Grants Level 20 Ravenous Skill"]={nil,nil} +c["Grants Level 20 Ravenous Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Ravenous"}}},nil} c["Grants Level 20 Snipe Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChannelledSnipe"}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="ChannelledSnipeSupport"}}},nil} c["Grants Level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialRhoa"}}},nil} c["Grants Level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialSnake"}}},nil} @@ -8407,8 +8404,9 @@ c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "} c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "} c["Implicit Modifiers Cannot Be Changed"]={nil,"Implicit Modifiers Cannot Be Changed "} -c["Implicit Modifiers Cannot Be Changed +27% to Fire Resistance"]={nil,"Implicit Modifiers Cannot Be Changed +27% to Fire Resistance "} c["Implicit Modifiers Cannot Be Changed 100% increased Explicit Modifier magnitudes"]={nil,"Implicit Modifiers Cannot Be Changed 100% increased Explicit Modifier magnitudes "} +c["Implicit Modifiers Cannot Be Changed 25% increased Prefix Modifier magnitudes"]={nil,"Implicit Modifiers Cannot Be Changed 25% increased Prefix Modifier magnitudes "} +c["Implicit Modifiers Cannot Be Changed 25% increased Suffix Modifier magnitudes"]={nil,"Implicit Modifiers Cannot Be Changed 25% increased Suffix Modifier magnitudes "} c["Implicit Modifiers Cannot Be Changed Has Elder, Shaper and all Conqueror Influences"]={nil,"Implicit Modifiers Cannot Be Changed Has Elder, Shaper and all Conqueror Influences "} c["Increases and Reductions to Armour also apply to Energy"]={nil,"Increases and Reductions to Armour also apply to Energy "} c["Increases and Reductions to Armour also apply to Energy Shield Recharge Rate at 20% of their value"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedArmourAppliesToEnergyShieldRecharge",type="MAX",value=20}},nil} @@ -10917,7 +10915,7 @@ c["Wand Attacks fire an additional Projectile"]={{[1]={flags=8388608,keywordFlag c["War Banner has 200% increased Adrenaline duration"]={{[1]={[1]={skillName="War Banner",type="SkillName"},flags=0,keywordFlags=0,name="AdrenalineDuration",type="INC",value=200}},nil} c["Warcries Debilitate Enemies for 1 second"]={{[1]={flags=0,keywordFlags=0,name="DebilitateChance",type="BASE",value=100}},nil} c["Warcries Exert 1 additional Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="BASE",value=1}},nil} -c["Warcries Exert 2 additional Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="BASE",value=2}},nil} +c["Warcries Exert 2 additional Attacks"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="BASE",value=2}},nil} c["Warcries Knock Back and Interrupt Enemies in a smaller Area"]={nil,"Warcries Knock Back and Interrupt Enemies in a smaller Area "} c["Warcries Sacrifice 10 Rage if you have at least 25 Rage"]={nil,"Warcries Sacrifice 10 Rage if you have at least 25 Rage "} c["Warcries Sacrifice 10 Rage if you have at least 25 Rage Exerted Attacks deal 50% more Attack Damage if a Warcry Sacrificed Rage Recently"]={nil,"Warcries Sacrifice 10 Rage if you have at least 25 Rage Exerted Attacks deal 50% more Attack Damage if a Warcry Sacrificed Rage Recently "} diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index 7152969bd2..d2b7aa2b1a 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -17,6 +17,10 @@ return { skill("durationSecondary", nil), div = 1000, }, +["base_tertiary_skill_effect_duration"] = { + skill("durationTertiary", nil), + div = 1000, +}, ["spell_minimum_base_physical_damage"] = { skill("PhysicalMin", nil), }, @@ -241,9 +245,6 @@ return { ["skill_double_hits_when_dual_wielding"] = { skill("doubleHitsWhenDualWielding", true), }, -["area_of_effect_+%_while_not_dual_wielding"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "Condition", var = "DualWielding", neg = true }) -}, ["base_spell_repeat_count"] = { mod("RepeatCount", "BASE", nil, 0, 0, {type = "SkillType", skillType = SkillType.Multicastable }), }, @@ -263,9 +264,6 @@ return { skill("bleedBasePercent", nil), div = 60, }, -["active_skill_base_radius_+"] = { - skill("radiusExtra", nil), -}, ["corpse_explosion_monster_life_%"] = { skill("corpseExplosionLifeMultiplier", nil), div = 100, @@ -419,6 +417,12 @@ return { mod("DamageEnergyShieldLeech", "BASE", nil, ModFlag.Spell), div = 100, }, +["maximum_life_leech_amount_per_leech_+%"] = { + mod("MaxLifeLeechRate", "INC", nil) +}, +["maximum_energy_shield_leech_amount_per_leech_+%"] = { + mod("MaxEnergyShieldLeechRate", "INC", nil) +}, ["mana_gain_per_target"] = { mod("ManaOnHit", "BASE", nil) }, @@ -462,6 +466,9 @@ return { ["cast_speed_+%_granted_from_skill"] = { mod("Speed", "INC", nil, ModFlag.Cast), }, +["attack_speed_+%_with_atleast_20_rage"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 20 }) +}, ["base_cooldown_speed_+%"] = { mod("CooldownRecovery", "INC", nil), }, @@ -483,12 +490,27 @@ return { flag("NoCooldownRecoveryInDuration"), }, -- AoE +["active_skill_base_area_of_effect_radius"] = { + skill("radius", nil), +}, +["active_skill_base_secondary_area_of_effect_radius"] = { + skill("radiusSecondary", nil), +}, +["active_skill_base_tertiary_area_of_effect_radius"] = { + skill("radiusTertiary", nil), +}, +["active_skill_base_radius_+"] = { + skill("radiusExtra", nil), +}, ["base_skill_area_of_effect_+%"] = { mod("AreaOfEffect", "INC", nil), }, ["base_aura_area_of_effect_+%"] = { mod("AreaOfEffect", "INC", nil, 0, KeywordFlag.Aura), }, +["area_of_effect_+%_while_not_dual_wielding"] = { + mod("AreaOfEffect", "INC", nil, 0, 0, { type = "Condition", var = "DualWielding", neg = true }) +}, ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"] = { mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Condition", var = "CastOnFrostbolt" }), }, @@ -498,6 +520,9 @@ return { ["active_skill_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil), }, +["area_of_effect_+%_per_50_strength"] = { + skill("AreaOfEffect", nil, { type = "PerStat", stat = "Str", div = 50 }), +}, -- Critical strikes ["additional_base_critical_strike_chance"] = { mod("CritChance", "BASE", nil), @@ -521,18 +546,21 @@ return { ["critical_strike_chance_+%_per_power_charge"] = { mod("CritChance", "INC", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), }, -["critical_strike_chance_+%_final_per_power_charge"] = { - mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), -}, ["critical_strike_multiplier_+_per_power_charge"] = { mod("CritMultiplier", "BASE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), }, ["critical_multiplier_+%_per_100_max_es_on_shield"] = { mod("CritMultiplier", "BASE", nil, 0, 0, { type = "PerStat", div = 100, stat = "EnergyShieldOnWeapon 2" }), }, +["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"] = { + skill("CritMultiplier", nil, { type = "Condition", var = "DexHigherThanInt" }), +}, ["damage_+%_per_endurance_charge"] = { mod("Damage", "INC", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), }, +["active_skill_attack_damage_+%_final_per_endurance_charge"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), +}, ["damage_+%_per_frenzy_charge"] = { mod("Damage", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }), }, @@ -684,6 +712,9 @@ return { ["reduce_enemy_elemental_resistance_%"] = { mod("ElementalPenetration", "BASE", nil), }, +["base_penetrate_elemental_resistances_%"] = { + mod("ElementalPenetration", "BASE", nil), +}, ["global_minimum_added_physical_damage_vs_bleeding_enemies"] = { mod("PhysicalMin", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Bleeding"}), }, @@ -853,6 +884,9 @@ return { ["chance_to_bleed_on_hit_%_chance_in_blood_stance"] = { mod("BleedChance", "BASE", nil, ModFlag.Attack, 0, { type = "Condition", var = "BloodStance" }), }, +["chance_to_bleed_on_hit_%_vs_maimed"] = { + mod("BleedChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Maimed" }) +}, ["faster_bleed_%"] = { mod("BleedFaster", "INC", nil), }, @@ -964,6 +998,9 @@ return { ["bleeding_damage_+%"] = { mod("Damage", "INC", nil, 0, KeywordFlag.Bleed), }, +["active_skill_bleeding_damage_+%_final"] = { + mod("Damage", "INC", nil, 0, KeywordFlag.Bleed), +}, ["active_skill_bleeding_damage_+%_final_in_blood_stance"] = { mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed, { type = "Condition", var = "BloodStance" }), }, @@ -1123,6 +1160,9 @@ return { ["base_inflict_fire_exposure_on_hit_%_chance"] = { mod("FireExposureChance", "BASE", nil), }, +["offering_spells_effect_+%"] = { + mod("BuffEffect", "INC", nil), +}, -- Projectiles ["base_projectile_speed_+%"] = { mod("ProjectileSpeed", "INC", nil), @@ -1148,15 +1188,24 @@ return { ["cannot_pierce"] = { flag("CannotPierce"), }, +["projectile_damage_+%_if_pierced_enemy"] = { + mod("Damage", "INC", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), +}, +["projectile_damage_+%_final_if_pierced_enemy"] = { + mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), +}, ["projectile_behaviour_only_explode"] = { flag("CannotSplit"), }, -["base_number_of_additional_arrows"] = { +["base_number_of_arrows"] = { mod("ProjectileCount", "BASE", nil), }, ["number_of_additional_projectiles"] = { mod("ProjectileCount", "BASE", nil), }, +["base_number_of_projectiles"] = { + mod("ProjectileCount", "BASE", nil), +}, ["projectile_damage_+%_per_remaining_chain"] = { mod("Damage", "INC", nil, ModFlag.Projectile, 0, { type = "PerStat", stat = "ChainRemaining" }), mod("Damage", "INC", nil, ModFlag.Ailment, 0, { type = "PerStat", stat = "ChainRemaining" }), @@ -1204,6 +1253,9 @@ return { ["physical_damage_taken_+%"] = { mod("PhysicalDamageTaken", "INC", nil), }, +["enemies_you_shock_take_%_increased_physical_damage"] = { + mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Condition", var = "Shocked" }), +}, ["fire_damage_taken_+%"] = { mod("FireDamageTaken", "INC", nil), }, @@ -1417,6 +1469,9 @@ return { ["spell_damage_+%"] = { mod("Damage", "INC", nil, ModFlag.Spell), }, +["spell_damage_+%_per_10_int"] = { + skill("Damage", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "Int", div = 10 }), +}, ["spell_minimum_added_physical_damage"] = { mod("PhysicalMin", "BASE", nil, 0, KeywordFlag.Spell), }, @@ -1483,6 +1538,9 @@ return { ["mine_laying_speed_+%"] = { mod("MineLayingSpeed", "INC", nil), }, +["mine_throwing_speed_+%_per_frenzy_charge"] = { + mod("MineLayingSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }), +}, ["mine_damage_+%"] = { mod("Damage", "INC", nil, 0, KeywordFlag.Mine), }, @@ -1496,6 +1554,12 @@ return { flag("ManaCostGainAsReservation"), flag("LifeCostGainAsReservation"), }, +["mine_critical_strike_chance_+%_per_power_charge"] = { + mod("CritChance", "INC", nil, 0, KeywordFlag.Mine, { type = "Multiplier", var = "PowerCharge" }), +}, +["mine_projectile_speed_+%_per_frenzy_charge"] = { + mod("ProjectileSpeed", "INC", nil, 0, KeywordFlag.Mine, { type = "Multiplier", var = "FrenzyCharge" }) +}, -- Totem ["totem_damage_+%"] = { mod("Damage", "INC", nil, 0, KeywordFlag.Totem), @@ -1503,6 +1567,9 @@ return { ["totem_life_+%"] = { mod("TotemLife", "INC", nil), }, +["totem_life_+%_final"] = { + mod("TotemLife", "MORE", nil), +}, ["number_of_additional_totems_allowed"] = { mod("ActiveTotemLimit", "BASE", nil), }, @@ -1533,6 +1600,9 @@ return { ["minion_melee_damage_+%"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, ModFlag.Melee) }), }, +["minion_damage_+%_on_full_life"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, {type = "Condition", var = "FullLife"}) }), +}, ["active_skill_minion_bleeding_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed) }), }, @@ -1554,10 +1624,6 @@ return { ["minion_elemental_resistance_%"] = { mod("MinionModifier", "LIST", { mod = mod("ElementalResist", "BASE", nil) }), }, -["minion_elemental_resistance_30%"] = { - mod("MinionModifier", "LIST", { mod = mod("ElementalResist", "BASE", nil) }), - value=30 -}, ["base_minion_duration_+%"] = { mod("Duration", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.CreatesMinion }), }, @@ -1586,6 +1652,12 @@ return { mod("MinionModifier", "LIST", { mod = mod("LifeRegenPercent", "BASE", nil) }), div = 60, }, +["minion_chance_to_deal_double_damage_%"] = { + mod("MinionModifier", "LIST", { mod = mod("DoubleDamageChance", "BASE", nil) }), +}, +["minion_ailment_damage_+%"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, KeywordFlag.Ailment) }), +}, ["base_number_of_zombies_allowed"] = { mod("ActiveZombieLimit", "BASE", nil), }, @@ -1628,6 +1700,12 @@ return { ["support_minion_damage_minion_life_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), }, +["minion_life_leech_from_elemental_damage_permyriad"] = { + mod("MinionModifier", "LIST", { mod = mod("FireDamageLeech", "BASE", nil) }), + mod("MinionModifier", "LIST", { mod = mod("LightningDamageLeech", "BASE", nil) }), + mod("MinionModifier", "LIST", { mod = mod("ColdDamageLeech", "BASE", nil) }), + div = 100 +}, ["active_skill_minion_energy_shield_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("EnergyShield", "MORE", nil) }), }, @@ -1661,6 +1739,9 @@ return { ["curse_effect_+%_vs_players"] = { mod("CurseEffectAgainstPlayer", "INC", nil), }, +["mark_skills_curse_effect_+%"] = { + mod("CurseEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Mark }), +}, ["curse_area_of_effect_+%"] = { mod("AreaOfEffect", "INC", nil, 0, KeywordFlag.Curse), }, @@ -1709,6 +1790,9 @@ return { ["base_number_of_sigils_allowed_per_target"] = { mod("BrandsAttachedLimit", "BASE", nil) }, +["active_skill_brands_allowed_on_enemy_+"] = { + mod("BrandsAttachedLimit", "BASE", nil) +}, ["base_sigil_repeat_frequency_ms"] = { skill("repeatFrequency", nil), div = 1000, @@ -1718,6 +1802,9 @@ return { }, ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"] = { }, +["brand_atttached_duration_is_infinite"] = { + flag("UnlimitedBrandDuration"), +}, -- Banner ["banner_buff_effect_+%_per_stage"] = { mod("AuraEffect", "INC", nil, 0, 0, { type = "Multiplier", var = "BannerStage" }, { type = "Condition", var = "BannerPlanted" }), @@ -1776,7 +1863,7 @@ return { ["physical_damage_reduction_rating_+%"] = { mod("Armour", "INC", nil), }, -["cannot_be_damaged"] = { +["base_cannot_be_damaged"] = { mod("Condition:CannotBeDamaged", "FLAG", nil) }, -- @@ -1826,4 +1913,30 @@ return { ["supported_minion_skill_gem_level_+"] = { mod("SupportedGemProperty", "LIST", { keyword = "grants_active_skill", key = "level", value = nil }, 0, 0, { type = "SkillType", skillType = SkillType.Minion }), }, + +-- Gem quality display only +["quality_display_base_additional_arrows_is_gem"] = { + -- Display only +}, +["quality_display_base_duration_is_quality"] = { + -- Display only +}, +["quality_display_base_number_of_projectiles_is_gem"] = { + -- Display only +}, +["quality_display_animate_weapon_is_gem"] = { + -- Display only +}, +["quality_display_sigil_attached_target_damage_is_gem"] = { + -- Display only +}, +["quality_display_shock_chance_from_skill_is_gem"] = { + -- Display only +}, +["quality_display_trap_duration_is_gem"] = { + -- Display only +}, +["quality_display_active_skill_area_damage_is_gem"] = { + -- Display only +}, } diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index 7b0b32587c..a53a04736b 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -42,13 +42,7 @@ skills["AlchemistsMark"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1.5 }, + { "mark_skills_curse_effect_+%", 0.5 }, }, }, constantStats = { @@ -118,13 +112,7 @@ skills["Ambush"] = { }, qualityStats = { Default = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "ambush_additional_critical_strike_chance_permyriad", 25 }, + { "ambush_additional_critical_strike_chance_permyriad", 50 }, }, }, constantStats = { @@ -198,9 +186,6 @@ skills["AnimateWeapon"] = { "AnimatedWeapon", }, statMap = { - ["base_movement_velocity_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", nil) }), - }, ["attack_minimum_added_physical_damage"] = { mod("MinionModifier", "LIST", { mod = mod("PhysicalMin", "BASE", nil, 0, KeywordFlag.Attack) }), }, @@ -213,12 +198,12 @@ skills["AnimateWeapon"] = { ["attack_maximum_added_physical_damage_for_ethereal_blades"] = { mod("MinionModifier", "LIST", { mod = mod("PhysicalMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "ActorCondition", actor = "parent", var = "AnimatingLingeringBlades" }) }), }, - ["minion_global_maximum_added_lightning_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("LightningMax", "BASE", nil, 0, KeywordFlag.Attack) }), - }, ["number_of_animated_weapons_allowed"] = { mod("Multiplier:AnimatedWeapon", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, + ["quality_display_animate_weapon_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -227,16 +212,7 @@ skills["AnimateWeapon"] = { }, qualityStats = { Default = { - { "base_movement_velocity_+%", 1 }, - }, - Alternate1 = { - { "minions_chance_to_intimidate_on_hit_%", 0.5 }, - }, - Alternate2 = { - { "animate_weapon_chance_to_create_additional_copy_%", 1 }, - }, - Alternate3 = { - { "minion_global_maximum_added_lightning_damage", 5 }, + { "number_of_animated_weapons_allowed", 0.1 }, }, }, constantStats = { @@ -253,6 +229,7 @@ skills["AnimateWeapon"] = { "attack_maximum_added_physical_damage", "number_of_animated_weapons_allowed", "base_display_minion_actor_level", + "quality_display_animate_weapon_is_gem", }, levels = { [1] = { 0.34999999403954, 1.6499999761581, 9, 0, 0, 5, 8, 5, 4, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, cost = { Mana = 4, }, }, @@ -321,6 +298,9 @@ skills["VaalAnimateWeapon"] = { ["number_of_animated_weapons_allowed"] = { mod("Multiplier:VaalAnimatedWeapon", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, + ["quality_display_animate_weapon_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -329,7 +309,7 @@ skills["VaalAnimateWeapon"] = { }, qualityStats = { Default = { - { "base_movement_velocity_+%", 1 }, + { "number_of_animated_weapons_allowed", 0.1 }, }, }, constantStats = { @@ -346,6 +326,7 @@ skills["VaalAnimateWeapon"] = { "vaal_animate_weapon_raise_up_to_X_weapons_as_uniques", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "cannot_cancel_skill_before_contact_point", + "quality_display_animate_weapon_is_gem", }, levels = { [1] = { 9, 50, 0, 5, 4, 1, 5, vaalStoredUses = 1, soulPreventionDuration = 40, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, cost = { Soul = 50, }, }, @@ -417,13 +398,6 @@ skills["ArcticArmour"] = { Default = { { "skill_effect_duration_+%", 1 }, }, - Alternate1 = { - { "arctic_armour_freeze_enemies_when_you_are_hit_%_chance", 1 }, - }, - Alternate2 = { - { "new_arctic_armour_physical_damage_taken_when_hit_+%_final", -0.05 }, - { "new_arctic_armour_fire_damage_taken_when_hit_+%_final", -0.05 }, - }, }, constantStats = { { "arctic_armour_chill_when_hit_duration", 500 }, @@ -586,19 +560,13 @@ skills["ArtilleryBallista"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "burn_damage_+%", 5 }, - }, - Alternate2 = { - { "base_number_of_additional_arrows", 0.05 }, + { "base_number_of_arrows", 0.05 }, }, }, constantStats = { { "base_totem_range", 80 }, { "base_totem_duration", 8000 }, - { "base_number_of_additional_arrows", 5 }, + { "base_number_of_arrows", 6 }, { "skill_physical_damage_%_to_convert_to_fire", 100 }, }, stats = { @@ -609,6 +577,7 @@ skills["ArtilleryBallista"] = { "skill_can_fire_arrows", "is_area_damage", "is_ranged_attack_totem", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 2, attackSpeedMultiplier = -50, PvPDamageMultiplier = -30, damageEffectiveness = 0.5, baseMultiplier = 0.5, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, @@ -656,7 +625,7 @@ skills["ArtilleryBallista"] = { skills["Barrage"] = { name = "Barrage", color = 2, - description = "After a short preparation time, you attack repeatedly with a ranged weapon. These attacks have a small randomised spread. Only works with Bows and Wands. This skill cannot be Triggered.", + description = "After a short preparation time, you fire individual projectiles repeatedly with a Bow or Wand. These projectiles have a small randomised spread. This skill cannot be Triggered.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, weaponTypes = { ["Wand"] = true, @@ -678,14 +647,6 @@ skills["Barrage"] = { end end, statMap = { - ["non_damaging_ailments_as_though_damage_+%_final"] = { - mod("ShockAsThoughDealing", "MORE", nil), - mod("ChillAsThoughDealing", "MORE", nil), - mod("FreezeAsThoughDealing", "MORE", nil), - mod("ScorchAsThoughDealing", "MORE", nil), - mod("BrittleAsThoughDealing", "MORE", nil), - mod("SapAsThoughDealing", "MORE", nil), - }, ["projectiles_barrage"] = { }, }, @@ -695,25 +656,17 @@ skills["Barrage"] = { }, qualityStats = { Default = { - { "projectile_damage_+%", 0.5 }, - }, - Alternate1 = { - { "base_global_chance_to_knockback_%", 1 }, - }, - Alternate2 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate3 = { - { "non_damaging_ailments_as_though_damage_+%_final", 5 }, + { "base_number_of_projectiles", 0.05 }, }, }, constantStats = { - { "number_of_additional_projectiles", 4 }, + { "base_number_of_projectiles", 5 }, }, stats = { "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "projectiles_barrage", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { damageEffectiveness = 0.47, baseMultiplier = 0.47, levelRequirement = 12, cost = { Mana = 7, }, }, @@ -779,16 +732,7 @@ skills["BearTrap"] = { }, qualityStats = { Default = { - { "physical_damage_+%", 1 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 2 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate3 = { - { "impale_on_hit_%_chance", 1 }, + { "base_skill_effect_duration", 50 }, }, }, constantStats = { @@ -807,48 +751,49 @@ skills["BearTrap"] = { "no_movement_speed", "traps_do_not_explode_on_timeout", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { - [1] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [2] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 6, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [3] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 9, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [4] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [6] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [7] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [8] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [9] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [10] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [11] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [14] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [16] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 61, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [19] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [20] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [23] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [26] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [30] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [32] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [36] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [37] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [38] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [39] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [40] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 2.6, storedUses = 3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [2] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 6, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [3] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 9, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [4] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [5] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [6] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [7] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [8] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [9] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [10] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [11] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [12] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [14] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [16] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [17] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 61, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [18] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [19] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [20] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [23] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [26] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [30] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [32] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [36] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [37] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [38] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [39] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [40] = { 1, 1.3999999761581, critChance = 6, PvPDamageMultiplier = -30, cooldown = 4, damageEffectiveness = 3, storedUses = 3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, }, } skills["BladeBlast"] = { @@ -856,7 +801,7 @@ skills["BladeBlast"] = { color = 2, baseEffectiveness = 0.82349997758865, incrementalEffectiveness = 0.041299998760223, - description = "Deals spell damage in a targeted area. When this spell deals damage, if your Lingering Blades or Blade Vortex blades are nearby, it will detonate them, dealing damage again in an area around them. Up to 50 Blades can be detonated this way.", + description = "Deals spell damage in a targeted area. Each time this spell deals damage, it will detonate any of your Lingering Blades it touches, dealing damage again in an area around them. Up to 50 Blades can be detonated this way.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, @@ -881,26 +826,16 @@ skills["BladeBlast"] = { area = true, }, baseMods = { - skill("radius", 14), mod("Multiplier:BladeBlastMaxStages", "BASE", 900, 0, 0), skill("dpsBaseMultiplier", 1, { type = "Multiplier", var = "BladeBlastStage" }), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "chaos_dot_multiplier_+", 0.5 }, - }, - Alternate2 = { - { "spells_impale_on_hit_%_chance", 0.5 }, - }, - Alternate3 = { - { "base_cast_speed_+%", 0.5 }, + { "active_skill_base_area_of_effect_radius", 0.05 }, }, }, constantStats = { - { "blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated", 80 }, + { "active_skill_base_area_of_effect_radius", 14 }, }, stats = { "spell_minimum_base_physical_damage", @@ -953,7 +888,7 @@ skills["BladeBlast"] = { skills["BladeTrap"] = { name = "Blade Trap", color = 2, - description = "Throws a trap which, once triggered, swings two copies of your equipped Dagger, Claw or One Handed Sword around it in a circle, each repeatedly damaging enemies they spin through.", + description = "Throws a trap which, once triggered, swings two copies of your equipped Dagger, Claw or One Handed Sword around it in circles, each repeatedly damaging enemies it spins through.", skillTypes = { [SkillType.Attack] = true, [SkillType.Damage] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Trapped] = true, [SkillType.Area] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, @@ -968,18 +903,10 @@ skills["BladeTrap"] = { area = true, trap = true, }, - baseMods = { - skill("radius", 16), - }, qualityStats = { Default = { - { "critical_strike_chance_+%", 1.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_weapon_trap_rotation_speed_+%", 2 }, + { "base_trap_duration", 50 }, + { "base_weapon_trap_total_rotation_%", 5 }, }, }, constantStats = { @@ -988,15 +915,18 @@ skills["BladeTrap"] = { { "weapon_trap_total_rotation_%_if_dual_wielding", 100 }, { "weapon_trap_rotation_speed_+%_if_dual_wielding", 25 }, { "trap_variation", 18 }, + { "active_skill_base_area_of_effect_radius", 16 }, }, stats = { - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "is_area_damage", "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", "attack_is_not_melee_override", "trap_use_alternate_death_animation", + "quality_display_trap_duration_is_gem", + "quality_display_blade_trap_is_gem", }, levels = { [1] = { 0, damageEffectiveness = 0.76, baseMultiplier = 0.76, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 8, }, }, @@ -1088,7 +1018,13 @@ skills["ChargedAttack"] = { }, ["blade_flurry_final_flurry_area_of_effect_+%"] = { mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 2 }) - } + }, + ["display_max_charged_attack_stats"] = { + mod("Multiplier:BladeFlurryMaxStages", "BASE", nil), + }, + ["quality_display_charged_attack_is_gem"] = { + --Display only + }, }, baseFlags = { attack = true, @@ -1096,24 +1032,18 @@ skills["ChargedAttack"] = { area = true, }, baseMods = { - mod("Multiplier:BladeFlurryMaxStages", "BASE", 6), skill("numStages", 1, { type = "Multiplier", var = "BladeFlurryStage" }), skill("stackMultiplier", 2, { type = "SkillPart", skillPart = 2 }), skill("radius", 14), }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "blade_flurry_final_flurry_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "blade_flurry_elemental_damage_+%_while_channeling", 2 }, + { "charged_attack_damage_per_stack_+%_final", 0.25 }, }, }, constantStats = { { "charged_attack_damage_per_stack_+%_final", 20 }, + { "display_max_charged_attack_stats", 6 }, }, stats = { "attack_minimum_added_physical_damage", @@ -1121,6 +1051,7 @@ skills["ChargedAttack"] = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "skill_can_add_multiple_charges_per_action", + "quality_display_charged_attack_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.32, attackSpeedMultiplier = 60, baseMultiplier = 0.32, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, @@ -1192,7 +1123,7 @@ skills["VaalChargedAttack"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, + { "charged_attack_damage_per_stack_+%_final", 0.25 }, }, }, constantStats = { @@ -1255,12 +1186,15 @@ skills["VaalChargedAttack"] = { skills["BladeVortex"] = { name = "Blade Vortex", color = 2, - baseEffectiveness = 0.30599999427795, - incrementalEffectiveness = 0.04434, + baseEffectiveness = 0.33660000562668, + incrementalEffectiveness = 0.042899999767542, description = "This spell creates ethereal blades which orbit in an area around you, dealing damage every 0.6 seconds to all enemies in their radius. As more blades are added, the damage becomes greater and more frequent.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.TotemCastsAlone] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.hitFrequency / (1 + activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:BladeVortexBlade") * activeSkill.skillData.hitFrequencyPerBlade) + end, parts = { { name = "0 Blades", @@ -1272,9 +1206,6 @@ skills["BladeVortex"] = { name = "10 Blades", }, }, - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.hitFrequency / (1 + activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:BladeVortexBlade") * activeSkill.skillData.hitFrequencyPerBlade) - end, statMap = { ["blade_vortex_damage_+%_per_blade_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "BladeVortexBlade" }), @@ -1284,9 +1215,6 @@ skills["BladeVortex"] = { }, ["base_skill_show_average_damage_instead_of_dps"] = { }, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"] = { - mod("Damage", "INC", nil, 0, 0, { type = "SkillPart", skillPartList = {1, 2} }), - }, ["maximum_number_of_spinning_blades"] = { mod("Multiplier:BladeVortexMaxStages", "BASE", nil), }, @@ -1294,6 +1222,9 @@ skills["BladeVortex"] = { skill("hitFrequencyPerBlade", nil), div = 100, }, + ["quality_display_blade_vortex_is_gem"] = { + --Display only + }, }, baseFlags = { spell = true, @@ -1311,15 +1242,6 @@ skills["BladeVortex"] = { Default = { { "blade_vortex_hit_rate_+%_per_blade", 0.25 }, }, - Alternate1 = { - { "life_leech_from_any_damage_permyriad", 2 }, - }, - Alternate2 = { - { "blade_vortex_additional_blade_chance_%", 1 }, - }, - Alternate3 = { - { "blade_vortex_damage_+%_with_5_or_fewer_blades", 3 }, - }, }, constantStats = { { "base_skill_effect_duration", 4000 }, @@ -1337,6 +1259,7 @@ skills["BladeVortex"] = { "base_skill_show_average_damage_instead_of_dps", "damage_originates_from_initiator_location", "skill_cannot_gain_repeat_bonuses", + "quality_display_blade_vortex_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 0.3, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -1483,10 +1406,15 @@ skills["Bladefall"] = { color = 2, baseEffectiveness = 1.2013000249863, incrementalEffectiveness = 0.045499999076128, - description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys, each wider but less damaging than the last. Enemies can be hit multiple times where these overlap.", + description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys. Enemies can be hit multiple times where these overlap.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, + statMap = { + ["quality_display_bladefall_is_gem"] = { + --Display only + }, + }, baseFlags = { spell = true, area = true, @@ -1501,12 +1429,6 @@ skills["Bladefall"] = { Default = { { "bladefall_number_of_volleys", 0.05 }, }, - Alternate1 = { - { "base_global_chance_to_knockback_%", 1 }, - }, - Alternate2 = { - { "bladefall_volley_gap_distance_+%", 2 }, - }, }, constantStats = { { "bladefall_number_of_volleys", 5 }, @@ -1518,6 +1440,7 @@ skills["Bladefall"] = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", "is_area_damage", + "quality_display_bladefall_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.4, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, @@ -1585,14 +1508,6 @@ skills["BlastRain"] = { activeSkill.skillData.dpsMultiplier = output.ProjectileCount end end, - statMap = { - ["blast_rain_damage_+%_vs_distant_enemies"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Projectile), 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }) - }, - ["blast_rain_area_of_effect_+%"] = { - -- Only affects primary area for overlaps - } - }, baseFlags = { attack = true, projectile = true, @@ -1604,21 +1519,12 @@ skills["BlastRain"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "cover_in_ash_on_hit_%", 0.25 }, - }, - Alternate2 = { - { "blast_rain_damage_+%_vs_distant_enemies", 2 }, - }, - Alternate3 = { - { "blast_rain_area_of_effect_+%", 3 }, + { "base_number_of_arrows", 0.05 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 100 }, - { "base_number_of_additional_arrows", 5 }, + { "base_number_of_arrows", 6 }, { "blast_rain_arrow_delay_ms", 80 }, }, stats = { @@ -1626,6 +1532,7 @@ skills["BlastRain"] = { "base_is_projectile", "is_area_damage", "skill_can_fire_arrows", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 20, damageEffectiveness = 0.3, baseMultiplier = 0.3, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 8, }, }, @@ -1682,7 +1589,7 @@ skills["BlinkArrow"] = { statDescriptionScope = "minion_attack_skill_stat_descriptions", castTime = 1, minionList = { - "Clone", + "ArrowClone", }, baseFlags = { attack = true, @@ -1695,72 +1602,62 @@ skills["BlinkArrow"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "minion_maximum_life_+%", 3 }, - }, - Alternate3 = { - { "base_added_cooldown_count", 0.05 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { { "base_skill_effect_duration", 3000 }, { "number_of_monsters_to_summon", 1 }, - { "active_skill_minion_damage_+%_final", 75 }, - { "display_minion_monster_type", 4 }, + { "display_minion_monster_type", 25 }, }, stats = { - "minion_damage_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "base_cooldown_speed_+%", + "active_skill_minion_damage_+%_final", "base_is_projectile", + "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 0, 0, 24, 0, storedUses = 1, levelRequirement = 10, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [2] = { 6, 3, 27, 2, storedUses = 1, levelRequirement = 13, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [3] = { 12, 6, 30, 5, storedUses = 1, levelRequirement = 17, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [4] = { 18, 9, 33, 7, storedUses = 1, levelRequirement = 21, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [5] = { 24, 12, 35, 10, storedUses = 1, levelRequirement = 25, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [6] = { 30, 15, 38, 12, storedUses = 1, levelRequirement = 29, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [7] = { 36, 18, 40, 15, storedUses = 1, levelRequirement = 33, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [8] = { 42, 21, 43, 17, storedUses = 1, levelRequirement = 36, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [9] = { 48, 24, 46, 20, storedUses = 1, levelRequirement = 39, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [10] = { 54, 27, 48, 22, storedUses = 1, levelRequirement = 42, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [11] = { 60, 30, 50, 25, storedUses = 1, levelRequirement = 45, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [12] = { 66, 33, 52, 27, storedUses = 1, levelRequirement = 48, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [13] = { 72, 36, 54, 30, storedUses = 1, levelRequirement = 51, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [14] = { 78, 39, 56, 32, storedUses = 1, levelRequirement = 54, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [15] = { 84, 42, 58, 35, storedUses = 1, levelRequirement = 57, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 90, 45, 60, 37, storedUses = 1, levelRequirement = 60, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 96, 48, 62, 40, storedUses = 1, levelRequirement = 63, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [18] = { 102, 51, 64, 42, storedUses = 1, levelRequirement = 66, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 108, 54, 66, 45, storedUses = 1, levelRequirement = 68, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [20] = { 114, 57, 68, 47, storedUses = 1, levelRequirement = 70, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 120, 60, 70, 50, storedUses = 1, levelRequirement = 72, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [22] = { 126, 63, 72, 52, storedUses = 1, levelRequirement = 74, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 132, 66, 74, 55, storedUses = 1, levelRequirement = 76, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [24] = { 138, 69, 76, 57, storedUses = 1, levelRequirement = 78, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [25] = { 144, 72, 78, 60, storedUses = 1, levelRequirement = 80, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 150, 75, 80, 62, storedUses = 1, levelRequirement = 82, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [27] = { 156, 78, 82, 65, storedUses = 1, levelRequirement = 84, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 162, 81, 84, 67, storedUses = 1, levelRequirement = 86, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 168, 84, 86, 70, storedUses = 1, levelRequirement = 88, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [30] = { 174, 87, 88, 72, storedUses = 1, levelRequirement = 90, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 177, 89, 89, 73, storedUses = 1, levelRequirement = 91, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 180, 90, 90, 75, storedUses = 1, levelRequirement = 92, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [33] = { 183, 92, 91, 76, storedUses = 1, levelRequirement = 93, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 186, 93, 92, 77, storedUses = 1, levelRequirement = 94, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 189, 95, 93, 78, storedUses = 1, levelRequirement = 95, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 192, 96, 94, 80, storedUses = 1, levelRequirement = 96, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [37] = { 195, 98, 95, 81, storedUses = 1, levelRequirement = 97, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 198, 99, 96, 82, storedUses = 1, levelRequirement = 98, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [39] = { 201, 101, 97, 83, storedUses = 1, levelRequirement = 99, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [40] = { 204, 102, 98, 85, storedUses = 1, levelRequirement = 100, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [1] = { 10, 0, 0, storedUses = 1, levelRequirement = 10, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [2] = { 13, 2, 3, storedUses = 1, levelRequirement = 13, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [3] = { 17, 5, 6, storedUses = 1, levelRequirement = 17, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [4] = { 21, 7, 9, storedUses = 1, levelRequirement = 21, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [5] = { 25, 10, 12, storedUses = 1, levelRequirement = 25, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [6] = { 29, 12, 15, storedUses = 1, levelRequirement = 29, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [7] = { 33, 15, 18, storedUses = 1, levelRequirement = 33, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [8] = { 36, 17, 21, storedUses = 1, levelRequirement = 36, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [9] = { 39, 20, 24, storedUses = 1, levelRequirement = 39, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [10] = { 42, 22, 27, storedUses = 1, levelRequirement = 42, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [11] = { 45, 25, 30, storedUses = 1, levelRequirement = 45, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 48, 27, 33, storedUses = 1, levelRequirement = 48, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [13] = { 51, 30, 36, storedUses = 1, levelRequirement = 51, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [14] = { 54, 32, 39, storedUses = 1, levelRequirement = 54, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [15] = { 57, 35, 42, storedUses = 1, levelRequirement = 57, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 60, 37, 45, storedUses = 1, levelRequirement = 60, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 63, 40, 48, storedUses = 1, levelRequirement = 63, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [18] = { 66, 42, 51, storedUses = 1, levelRequirement = 66, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 68, 45, 54, storedUses = 1, levelRequirement = 68, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [20] = { 70, 47, 57, storedUses = 1, levelRequirement = 70, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 72, 50, 60, storedUses = 1, levelRequirement = 72, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [22] = { 74, 52, 63, storedUses = 1, levelRequirement = 74, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 76, 55, 66, storedUses = 1, levelRequirement = 76, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [24] = { 78, 57, 69, storedUses = 1, levelRequirement = 78, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [25] = { 80, 60, 72, storedUses = 1, levelRequirement = 80, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 82, 62, 75, storedUses = 1, levelRequirement = 82, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [27] = { 84, 65, 78, storedUses = 1, levelRequirement = 84, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 86, 67, 81, storedUses = 1, levelRequirement = 86, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 88, 70, 84, storedUses = 1, levelRequirement = 88, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [30] = { 90, 72, 87, storedUses = 1, levelRequirement = 90, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 91, 73, 88, storedUses = 1, levelRequirement = 91, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 92, 75, 90, storedUses = 1, levelRequirement = 92, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [33] = { 93, 76, 91, storedUses = 1, levelRequirement = 93, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 94, 77, 93, storedUses = 1, levelRequirement = 94, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 95, 78, 94, storedUses = 1, levelRequirement = 95, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 96, 80, 96, storedUses = 1, levelRequirement = 96, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [37] = { 97, 81, 97, storedUses = 1, levelRequirement = 97, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 98, 82, 99, storedUses = 1, levelRequirement = 98, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, + [39] = { 99, 83, 100, storedUses = 1, levelRequirement = 99, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, + [40] = { 100, 85, 102, storedUses = 1, levelRequirement = 100, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, }, } skills["BloodRage"] = { @@ -1772,10 +1669,6 @@ skills["BloodRage"] = { statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { - ["life_leech_from_physical_attack_damage_permyriad"] = { - mod("PhysicalDamageLifeLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), - div = 100, - }, ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"] = { mod("PhysicalDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life", div = 1}, { type = "GlobalEffect", effectType = "Buff" }), div = 6000, @@ -1805,12 +1698,6 @@ skills["BloodRage"] = { Default = { { "attack_speed_+%_granted_from_skill", 0.25 }, }, - Alternate1 = { - { "gain_frenzy_charge_on_hitting_unique_enemy_%", 0.1 }, - }, - Alternate2 = { - { "blood_rage_life_leech_from_elemental_damage_permyriad", 2 }, - }, }, constantStats = { { "life_leech_from_physical_attack_damage_permyriad", 120 }, @@ -1884,13 +1771,7 @@ skills["BurningArrow"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "critical_strike_chance_+%", 3 }, - }, - Alternate2 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, + { "active_skill_ignite_damage_+%_final", 1 }, }, }, constantStats = { @@ -1968,7 +1849,7 @@ skills["VaalBurningArrow"] = { }, qualityStats = { Default = { - { "fire_dot_multiplier_+", 0.5 }, + { "active_skill_ignite_damage_+%_final", 1 }, }, }, constantStats = { @@ -2053,13 +1934,7 @@ skills["PoisonArrow"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "withered_on_hit_for_2_seconds_%_chance", 1 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_chaos", 1 }, + { "active_skill_base_radius_+", 0.1 }, }, }, constantStats = { @@ -2143,7 +2018,7 @@ skills["VaalCausticArrow"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "active_skill_base_radius_+", 0.1 }, }, }, constantStats = { @@ -2294,13 +2169,7 @@ skills["ChargedDash"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "skill_code_movement_speed_+%_final", 0.5 }, - }, - Alternate2 = { - { "skill_travel_distance_+%", 1 }, + { "charged_dash_skill_inherent_movement_speed_+%_final", 1 }, }, }, constantStats = { @@ -2314,6 +2183,7 @@ skills["ChargedDash"] = { "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "skill_can_add_multiple_charges_per_action", + "quality_display_chaged_dash_is_gem", }, levels = { [1] = { damageEffectiveness = 0.95, attackSpeedMultiplier = 60, baseMultiplier = 0.95, levelRequirement = 28, cost = { Mana = 4, }, }, @@ -2371,7 +2241,7 @@ skills["CobraLash"] = { statDescriptionScope = "skill_stat_descriptions", castTime = 1, statMap = { - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"] = { + ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "PerStat", stat = "ChainRemaining" }, { type = "SkillType", skillType = SkillType.Projectile }) }, }, @@ -2383,19 +2253,13 @@ skills["CobraLash"] = { Default = { { "number_of_chains", 0.1 }, }, - Alternate1 = { - { "chaining_range_+%", 1 }, - }, - Alternate2 = { - { "projectile_damage_+%_per_remaining_chain", 0.75 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_chaos", 60 }, { "projectile_speed_variation_+%", 15 }, { "projectile_angle_variance", 8 }, { "base_chance_to_poison_on_hit_%", 40 }, - { "active_skill_projectile_damage_+%_final_for_each_remaining_chain", 8 }, + { "cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain", 8 }, }, stats = { "attack_minimum_added_chaos_damage", @@ -2453,7 +2317,7 @@ skills["CorpseEruption"] = { color = 2, baseEffectiveness = 1.8178999423981, incrementalEffectiveness = 0.034499999135733, - description = "A targeted corpse explodes, dealing area damage and turning into a volcanic geyser, which will repeatedly unleash exploding projectiles sequentially over the surrounding area for a duration. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", + description = "A targeted corpse explodes, dealing area damage and turning into a volcanic geyser, which will repeatedly unleash projectiles sequentially over the surrounding area for a duration. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.Multicastable] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Cascadable] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Orb] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, @@ -2498,22 +2362,13 @@ skills["CorpseEruption"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "burn_damage_+%", 5 }, - }, - Alternate2 = { - { "cremation_fires_projectiles_faster_+%_final", 0.25 }, - }, - Alternate3 = { - { "cremation_chance_to_explode_nearby_corpse_when_firing_projectiles", 2 }, + { "cremation_fires_projectiles_faster_+%_final", 0.5 }, }, }, constantStats = { { "base_skill_effect_duration", 8000 }, { "corpse_erruption_base_maximum_number_of_geyers", 3 }, - { "number_of_additional_projectiles", 3 }, + { "base_number_of_projectiles", 4 }, { "cremation_base_fires_projectile_every_x_ms", 1000 }, }, stats = { @@ -2526,6 +2381,7 @@ skills["CorpseEruption"] = { "base_skill_show_average_damage_instead_of_dps", "base_is_projectile", "projectile_behaviour_only_explode", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 0, 40, critChance = 5, PvPDamageMultiplier = -40, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, @@ -2575,7 +2431,7 @@ skills["Cyclone"] = { color = 2, baseEffectiveness = 0.25, incrementalEffectiveness = 0.023299999535084, - description = "Channel this skill to move towards a targeted location while spinning, building up stages while constantly attacking enemies in an area around you. While channelling this skill, you cannot be knocked back.", + description = "Channel this skill to move towards a targeted location while spinning constantly attacking enemies in an area around you. While channelling this skill, you cannot be knocked back.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Channel] = true, [SkillType.Physical] = true, }, weaponTypes = { ["None"] = true, @@ -2627,15 +2483,6 @@ skills["Cyclone"] = { Default = { { "cyclone_movement_speed_+%_final", 0.5 }, }, - Alternate1 = { - { "base_global_chance_to_knockback_%", 1 }, - }, - Alternate2 = { - { "cyclone_movement_speed_+%_final", 0.25 }, - }, - Alternate3 = { - { "avoid_interruption_while_using_this_skill_%", 1 }, - }, }, constantStats = { { "cyclone_movement_speed_+%_final", -30 }, @@ -2817,12 +2664,6 @@ skills["QuickDodge"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "skill_travel_distance_+%", 1 }, - }, - Alternate2 = { - { "dash_grants_phasing_after_use_ms", 100 }, - }, }, stats = { "base_cooldown_speed_+%", @@ -2898,15 +2739,6 @@ skills["Desecrate"] = { Default = { { "base_cast_speed_+%", 1 }, }, - Alternate1 = { - { "chaos_damage_+%", 10 }, - }, - Alternate2 = { - { "desecrate_chance_for_additional_corpse_%", 3 }, - }, - Alternate3 = { - { "desecrate_chance_for_special_corpse_%", 1 }, - }, }, constantStats = { { "base_skill_effect_duration", 4000 }, @@ -2995,24 +2827,20 @@ skills["DetonateDead"] = { area = true, }, baseMods = { - skill("radius", 22), skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }), }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "skill_fire_damage_%_to_convert_to_chaos", 3 }, - }, - Alternate2 = { - { "detonate_dead_damage_+%_if_corpse_ignited", 4 }, + { "detonate_dead_%_chance_to_detonate_additional_corpse", 0.75 }, }, }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 22 }, + }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "corpse_explosion_monster_life_permillage_fire", "is_area_damage", }, @@ -3056,7 +2884,7 @@ skills["DetonateDead"] = { [37] = { 0.80000001192093, 1.2000000476837, 7, 92, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, [38] = { 0.80000001192093, 1.2000000476837, 7, 93, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, [39] = { 0.80000001192093, 1.2000000476837, 7, 93, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, 94, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, 94, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, }, } skills["VaalDetonateDead"] = { @@ -3094,17 +2922,19 @@ skills["VaalDetonateDead"] = { }, baseMods = { skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }), - skill("radius", 24), }, qualityStats = { Default = { - { "area_damage_+%", 1 }, + { "detonate_dead_%_chance_to_detonate_additional_corpse", 1.5 }, }, }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 24 }, + }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "corpse_explosion_monster_life_permillage_fire", "cannot_cancel_skill_before_contact_point", }, @@ -3184,12 +3014,6 @@ skills["DoubleStrike"] = { Default = { { "chance_to_deal_double_damage_%_vs_bleeding_enemies", 1 }, }, - Alternate1 = { - { "elemental_damage_+%", 2 }, - }, - Alternate2 = { - { "maim_on_hit_%", 1 }, - }, }, constantStats = { { "base_skill_number_of_additional_hits", 1 }, @@ -3357,6 +3181,9 @@ skills["DualStrike"] = { ["dual_strike_damage_+%_final_against_enemies_on_full_life"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "ActorCondition", actor = "enemy", var = "FullLife" }) }, + ["quality_display_dual_strike_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -3366,15 +3193,6 @@ skills["DualStrike"] = { Default = { { "dual_strike_damage_+%_final_against_enemies_on_full_life", 1.5 }, }, - Alternate1 = { - { "melee_range_+", 0.25 }, - }, - Alternate2 = { - { "damage_+%_vs_enemies_on_full_life", 5 }, - }, - Alternate3 = { - { "active_skill_added_damage_+%_final", 0.5 }, - }, }, constantStats = { { "dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life", 100 }, @@ -3382,6 +3200,7 @@ skills["DualStrike"] = { }, stats = { "skill_double_hits_when_dual_wielding", + "quality_display_dual_strike_is_gem", }, levels = { [1] = { damageEffectiveness = 1.25, attackSpeedMultiplier = -30, baseMultiplier = 1.25, levelRequirement = 1, cost = { Mana = 5, }, }, @@ -3462,9 +3281,8 @@ skills["ElementalHit"] = { }, }, statMap = { - ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"] = { + ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ElementalHitAilmentOnEnemy" }), - mult = 10, }, ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"] = { }, @@ -3478,6 +3296,9 @@ skills["ElementalHit"] = { flag("DealNoLightning", { type = "SkillPart", skillPartList = { 1, 2 } }), flag("DealNoLightning", { type = "SkillPart", skillPartList = { 3, 4 } }), }, + ["quality_display_elemental_hit_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -3499,15 +3320,12 @@ skills["ElementalHit"] = { }, qualityStats = { Default = { - { "elemental_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "non_damaging_ailment_effect_+%", 1 }, + { "elemental_hit_damage_+%_final_per_enemy_elemental_ailment", 0.25 }, }, }, + constantStats = { + { "elemental_hit_damage_+%_final_per_enemy_elemental_ailment", 10 }, + }, stats = { "attack_minimum_added_fire_damage", "attack_maximum_added_fire_damage", @@ -3518,9 +3336,9 @@ skills["ElementalHit"] = { "chance_to_freeze_shock_ignite_%", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", - "elemental_hit_damage_+10%_final_per_enemy_elemental_ailment", "elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment", "elemental_hit_no_physical_chaos_damage", + "quality_display_elemental_hit_is_gem", }, levels = { [1] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 30, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, @@ -3581,9 +3399,6 @@ skills["EnsnaringArrow"] = { ["tethered_enemies_take_attack_projectile_damage_taken_+%"] = { mod("ProjectileAttackDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Ensnared", effectStackVar = "EnsnareStackCount", effectStackLimit = 1 }), }, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Ensnared", effectStackVar = "EnsnareStackCount", effectStackLimit = 1 }), - }, }, baseFlags = { attack = true, @@ -3592,13 +3407,7 @@ skills["EnsnaringArrow"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "ensnaring_arrow_enemy_spell_damage_taken_+%", 0.5 }, + { "skill_buff_effect_+%", 1 }, }, }, constantStats = { @@ -3659,8 +3468,8 @@ skills["EtherealKnives"] = { color = 2, baseEffectiveness = 2.1717000007629, incrementalEffectiveness = 0.043600000441074, - description = "Fires an arc of knives in front of the caster which deals physical damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, + description = "Fires an arc of knives in front of the caster which deal physical damage.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -3669,71 +3478,58 @@ skills["EtherealKnives"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.1 }, + { "base_number_of_projectiles", 0.1 }, }, - Alternate2 = { - { "spells_impale_on_hit_%_chance", 0.5 }, - }, - }, - constantStats = { - { "maximum_number_of_blades_left_in_ground", 40 }, - { "ethereal_knives_blade_left_in_ground_for_every_X_projectiles", 3 }, - { "active_skill_projectile_speed_+%_variation_final", 50 }, - { "blades_left_in_ground_+%_final_if_not_hand_cast", -50 }, - { "base_skill_effect_duration", 6000 }, }, stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "number_of_additional_projectiles", - "base_projectile_speed_+%", + "base_number_of_projectiles", "base_is_projectile", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 9, 0, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 9, 1, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 9, 2, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 9, 3, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 9, 4, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 9, 5, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 10, 6, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 10, 7, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 10, 8, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 10, 9, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 10, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 10, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 11, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 11, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 11, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 11, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 11, 16, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 11, 17, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 12, 18, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 12, 19, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 12, 20, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 12, 21, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 12, 22, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 12, 23, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 13, 24, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 13, 25, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 13, 26, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 13, 27, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 13, 28, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 13, 29, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 14, 29, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 14, 30, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 14, 30, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 14, 31, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 14, 31, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 14, 32, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 15, 32, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 15, 33, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 15, 33, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 15, 34, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 2.2, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["ExplosiveArrow"] = { @@ -3871,6 +3667,9 @@ skills["ExplosiveArrow"] = { mod("Multiplier:ExplosiveArrowMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), mod("ExplosiveArrowMaxFuseCount", "BASE", nil), }, + ["quality_display_explosive_arrow_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -3885,15 +3684,7 @@ skills["ExplosiveArrow"] = { }, qualityStats = { Default = { - { "base_chance_to_ignite_%", 1 }, - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "critical_strike_chance_+%", 3 }, - }, - Alternate2 = { - { "explosive_arrow_stack_limit", 0.2 }, - { "active_skill_quality_duration_+%_final", -2 }, + { "explosive_arrow_stack_limit", 0.1 }, }, }, constantStats = { @@ -3910,6 +3701,7 @@ skills["ExplosiveArrow"] = { "explosive_arrow_explosion_maximum_added_fire_damage", "skill_can_fire_arrows", "base_is_projectile", + "quality_display_explosive_arrow_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -50, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, @@ -4014,23 +3806,15 @@ skills["ExplosiveConcoction"] = { area = true, projectile = true, }, - baseMods = { - skill("radius", 18), - }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_elemental_status_ailment_duration_+%", 1 }, - }, - Alternate2 = { - { "critical_strike_chance_+%", 1.5 }, + { "flask_charges_used_+%", -0.75 }, }, }, constantStats = { { "additional_base_critical_strike_chance", 600 }, { "flask_throw_charges_used_per_projectile", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "attack_minimum_added_fire_damage", @@ -4093,7 +3877,7 @@ skills["ShrapnelTrap"] = { color = 2, baseEffectiveness = 1.6990000009537, incrementalEffectiveness = 0.035599999129772, - description = "Throws a trap that creates a large explosion when triggered, dealing spell damage in an area. A number of smaller explosions occur around this area in quick succession after the first.", + description = "Throws a trap that creates an explosion when triggered, dealing spell damage in an area around it. A number of smaller explosions occur within a secondary area around the trap in quick succession after the first.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Trapped] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -4122,7 +3906,7 @@ skills["ShrapnelTrap"] = { return math.min(damagingAreaRadius * damagingAreaRadius / (areaSpreadRadius * areaSpreadRadius), 1) end local enemyRadius = skillModList:Override(skillCfg, "EnemyRadius") or skillModList:Sum("BASE", skillCfg, "EnemyRadius") - local waveRadius = output.AreaOfEffectRadiusSecondary + local waveRadius = output.AreaOfEffectRadiusTertiary local fullRadius = output.AreaOfEffectRadius local overlapChance = hitChance(enemyRadius, waveRadius, fullRadius) output.OverlapChance = overlapChance * 100 @@ -4163,6 +3947,9 @@ skills["ShrapnelTrap"] = { ["shrapnel_trap_number_of_secondary_explosions"] = { mod("SmallExplosions", "BASE", nil), }, + ["quality_display_explosive_trap_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -4170,77 +3957,79 @@ skills["ShrapnelTrap"] = { area = true, }, baseMods = { - skill("radius", 12), skill("radiusLabel", "Primary Explosion:"), - skill("radiusSecondary", 7), - skill("radiusSecondaryLabel", "Secondary Explosion:"), + skill("radiusSecondaryLabel", "Secondary Area:"), + skill("radiusTertiaryLabel", "Secondary Explosion:"), }, qualityStats = { Default = { { "shrapnel_trap_number_of_secondary_explosions", 0.1 }, }, - Alternate1 = { - { "burn_damage_+%", 3 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 2 }, - }, }, constantStats = { { "base_trap_duration", 4000 }, { "skill_physical_damage_%_to_convert_to_fire", 50 }, + { "active_skill_base_area_of_effect_radius", 12 }, + { "active_skill_base_secondary_area_of_effect_radius", 12 }, + { "active_skill_base_tertiary_area_of_effect_radius", 7 }, + { "active_skill_area_of_effect_description_mode", 1 }, + { "active_skill_tertiary_area_of_effect_description_mode", 3 }, }, stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", "shrapnel_trap_number_of_secondary_explosions", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", + "active_skill_base_secondary_area_of_effect_radius", + "active_skill_base_tertiary_area_of_effect_radius", "is_area_damage", "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "quality_display_trap_duration_is_gem", + "quality_display_explosive_trap_is_gem", }, levels = { - [1] = { 0.56999999284744, 0.86000001430511, 3, 0, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.64999997615814, 0.97000002861023, 3, 0, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.72000002861023, 1.0800000429153, 3, 1, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 3, 1, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 1, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 4, 2, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 4, 2, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 4, 2, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 5, 3, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, 3, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, 3, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, 4, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, 4, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, 4, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 6, 5, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 6, 5, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 7, 5, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 7, 6, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 7, 6, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 7, 6, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 8, 7, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 8, 7, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 8, 7, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 8, 8, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 8, 8, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, 8, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 9, 9, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 9, 9, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 9, 9, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 9, 10, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 9, 10, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 10, 10, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 10, 10, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 10, 10, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 10, 11, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [1] = { 0.56999999284744, 0.86000001430511, 3, 0, 0, 0, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.64999997615814, 0.97000002861023, 3, 0, 0, 0, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.72000002861023, 1.0800000429153, 3, 1, 1, 1, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 3, 1, 1, 1, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 4, 1, 1, 1, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 4, 2, 2, 2, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 4, 2, 2, 2, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 4, 2, 2, 2, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 5, 3, 3, 3, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 5, 3, 3, 3, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, 3, 3, 3, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 5, 4, 4, 4, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, 4, 4, 4, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 6, 4, 4, 4, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 6, 5, 5, 5, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 6, 5, 5, 5, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 7, 5, 5, 5, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 7, 6, 6, 6, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, 6, 6, 6, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, 6, 6, 6, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 8, 7, 7, 7, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, 7, 7, 7, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, 7, 7, 7, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, 8, 8, 8, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 8, 8, 8, 8, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 9, 8, 8, 8, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 9, 9, 9, 9, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 9, 9, 9, 9, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 9, 9, 9, 9, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 9, 10, 10, 10, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 9, 10, 10, 10, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 10, 10, 10, 10, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 10, 10, 10, 10, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 10, 10, 10, 10, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 10, 11, 11, 11, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, }, } skills["FireTrap"] = { @@ -4265,14 +4054,7 @@ skills["FireTrap"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "base_chance_to_ignite_%", 3 }, - { "active_skill_area_of_effect_+%_final", -1 }, + { "trap_trigger_radius_+%", 4 }, }, }, constantStats = { @@ -4291,6 +4073,7 @@ skills["FireTrap"] = { "base_skill_show_average_damage_instead_of_dps", "spell_damage_modifiers_apply_to_skill_dot", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0.31999999284744, 0.47999998927116, 63.333333954215, 0.10000000149012, 0.15000000596046, 0, damageEffectiveness = 2.6, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, @@ -4403,14 +4186,7 @@ skills["FlamethrowerTrap"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "active_skill_quality_duration_+%_final", -1 }, - { "base_cooldown_speed_+%", 3 }, - }, - Alternate2 = { - { "trap_throwing_speed_+%", 1 }, + { "base_cooldown_speed_+%", 1 }, }, }, constantStats = { @@ -4426,6 +4202,7 @@ skills["FlamethrowerTrap"] = { "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 0.3, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, @@ -4505,13 +4282,7 @@ skills["FlickerStrike"] = { }, qualityStats = { Default = { - { "add_frenzy_charge_on_skill_hit_%", 0.25 }, - }, - Alternate1 = { - { "base_cooldown_speed_+%", 3 }, - }, - Alternate2 = { - { "flicker_strike_teleport_range_+%", 1 }, + { "add_frenzy_charge_on_skill_hit_%", 0.5 }, }, }, constantStats = { @@ -4609,7 +4380,7 @@ skills["VaalFlickerStrike"] = { }, qualityStats = { Default = { - { "add_frenzy_charge_on_skill_hit_%", 0.25 }, + { "add_frenzy_charge_on_skill_hit_%", 0.5 }, }, }, constantStats = { @@ -4683,6 +4454,12 @@ skills["Frenzy"] = { ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "FrenzyCharge" }), }, + ["quality_display_frenzy_is_gem"] = { + -- Display only + }, + ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -4694,15 +4471,6 @@ skills["Frenzy"] = { { "frenzy_skill_attack_damage_+%_final_per_frenzy_charge", 0.1 }, { "frenzy_skill_attack_speed_+%_final_per_frenzy_charge", 0.1 }, }, - Alternate1 = { - { "number_of_additional_projectiles", 0.05 }, - }, - Alternate2 = { - { "melee_attack_number_of_spirit_strikes", 0.05 }, - }, - Alternate3 = { - { "ailment_damage_+%_per_frenzy_charge", 0.25 }, - }, }, constantStats = { { "frenzy_skill_attack_damage_+%_final_per_frenzy_charge", 5 }, @@ -4711,6 +4479,8 @@ skills["Frenzy"] = { stats = { "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", + "quality_display_frenzy_is_gem", + "quality_display_active_skill_attack_speed_per_frenzy_is_gem", }, levels = { [1] = { damageEffectiveness = 1.15, baseMultiplier = 1.15, levelRequirement = 16, cost = { Mana = 10, }, }, @@ -4796,13 +4566,7 @@ skills["FrostBlades"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.1 }, - }, - Alternate2 = { - { "cold_ailment_duration_+%", 1 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { @@ -4812,52 +4576,53 @@ skills["FrostBlades"] = { stats = { "attack_minimum_added_cold_damage", "attack_maximum_added_cold_damage", - "number_of_additional_projectiles", + "base_number_of_projectiles", "melee_weapon_range_+", "show_number_of_projectiles", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 4, 18, damageEffectiveness = 1.1, baseMultiplier = 1.1, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, 18, damageEffectiveness = 1.16, baseMultiplier = 1.16, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, 18, damageEffectiveness = 1.22, baseMultiplier = 1.22, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 4, 18, damageEffectiveness = 1.28, baseMultiplier = 1.28, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 18, damageEffectiveness = 1.34, baseMultiplier = 1.34, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 5, 19, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 5, 19, damageEffectiveness = 1.46, baseMultiplier = 1.46, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 5, 19, damageEffectiveness = 1.52, baseMultiplier = 1.52, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 5, 19, damageEffectiveness = 1.58, baseMultiplier = 1.58, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, 19, damageEffectiveness = 1.64, baseMultiplier = 1.64, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 6, 20, damageEffectiveness = 1.71, baseMultiplier = 1.71, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 6, 20, damageEffectiveness = 1.77, baseMultiplier = 1.77, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, 20, damageEffectiveness = 1.83, baseMultiplier = 1.83, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, 20, damageEffectiveness = 1.89, baseMultiplier = 1.89, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 6, 20, damageEffectiveness = 1.95, baseMultiplier = 1.95, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, 21, damageEffectiveness = 2.01, baseMultiplier = 2.01, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 7, 21, damageEffectiveness = 2.07, baseMultiplier = 2.07, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 7, 21, damageEffectiveness = 2.13, baseMultiplier = 2.13, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 7, 21, damageEffectiveness = 2.19, baseMultiplier = 2.19, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 7, 21, damageEffectiveness = 2.25, baseMultiplier = 2.25, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 8, 22, damageEffectiveness = 2.31, baseMultiplier = 2.31, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 8, 22, damageEffectiveness = 2.37, baseMultiplier = 2.37, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 8, 22, damageEffectiveness = 2.43, baseMultiplier = 2.43, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 8, 22, damageEffectiveness = 2.49, baseMultiplier = 2.49, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 8, 22, damageEffectiveness = 2.55, baseMultiplier = 2.55, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.61, baseMultiplier = 2.61, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.67, baseMultiplier = 2.67, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.73, baseMultiplier = 2.73, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.79, baseMultiplier = 2.79, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.86, baseMultiplier = 2.86, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 2.89, baseMultiplier = 2.89, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 2.92, baseMultiplier = 2.92, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 2.95, baseMultiplier = 2.95, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 2.98, baseMultiplier = 2.98, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.01, baseMultiplier = 3.01, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.04, baseMultiplier = 3.04, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.07, baseMultiplier = 3.07, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.1, baseMultiplier = 3.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.13, baseMultiplier = 3.13, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 10, 24, damageEffectiveness = 3.16, baseMultiplier = 3.16, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 5, 18, damageEffectiveness = 1.1, baseMultiplier = 1.1, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, 18, damageEffectiveness = 1.16, baseMultiplier = 1.16, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 5, 18, damageEffectiveness = 1.22, baseMultiplier = 1.22, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 5, 18, damageEffectiveness = 1.28, baseMultiplier = 1.28, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 5, 18, damageEffectiveness = 1.34, baseMultiplier = 1.34, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 6, 19, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 6, 19, damageEffectiveness = 1.46, baseMultiplier = 1.46, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 6, 19, damageEffectiveness = 1.52, baseMultiplier = 1.52, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 6, 19, damageEffectiveness = 1.58, baseMultiplier = 1.58, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 6, 19, damageEffectiveness = 1.64, baseMultiplier = 1.64, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 7, 20, damageEffectiveness = 1.71, baseMultiplier = 1.71, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 7, 20, damageEffectiveness = 1.77, baseMultiplier = 1.77, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 7, 20, damageEffectiveness = 1.83, baseMultiplier = 1.83, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 7, 20, damageEffectiveness = 1.89, baseMultiplier = 1.89, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 7, 20, damageEffectiveness = 1.95, baseMultiplier = 1.95, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 8, 21, damageEffectiveness = 2.01, baseMultiplier = 2.01, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 8, 21, damageEffectiveness = 2.07, baseMultiplier = 2.07, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 8, 21, damageEffectiveness = 2.13, baseMultiplier = 2.13, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 8, 21, damageEffectiveness = 2.19, baseMultiplier = 2.19, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 8, 21, damageEffectiveness = 2.25, baseMultiplier = 2.25, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 2.31, baseMultiplier = 2.31, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 2.37, baseMultiplier = 2.37, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 2.43, baseMultiplier = 2.43, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 2.49, baseMultiplier = 2.49, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 2.55, baseMultiplier = 2.55, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.61, baseMultiplier = 2.61, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.67, baseMultiplier = 2.67, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.73, baseMultiplier = 2.73, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.79, baseMultiplier = 2.79, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.86, baseMultiplier = 2.86, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 10, 23, damageEffectiveness = 2.89, baseMultiplier = 2.89, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 2.92, baseMultiplier = 2.92, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 2.95, baseMultiplier = 2.95, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 2.98, baseMultiplier = 2.98, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.01, baseMultiplier = 3.01, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.04, baseMultiplier = 3.04, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.07, baseMultiplier = 3.07, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.1, baseMultiplier = 3.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.13, baseMultiplier = 3.13, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 11, 24, damageEffectiveness = 3.16, baseMultiplier = 3.16, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, }, } skills["ShrapnelShot"] = { @@ -4865,7 +4630,7 @@ skills["ShrapnelShot"] = { color = 2, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Releases arrows along with a burst of lightning which damages all enemies in a cone. The arrows degrade in-flight as the lightning dissipates, soon vanishing.", + description = "Fire a trio of electrical arrows that quickly dissipate, vanishing shortly after being loosed. The arrows are fired with such force that they create a burst of lightning, damaging enemies in a cone in front of you.", skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, @@ -4892,18 +4657,12 @@ skills["ShrapnelShot"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "base_stun_threshold_reduction_+%", 1 }, - }, - Alternate2 = { - { "shrapnel_shot_cone_placement_distance_+", 1 }, + { "base_projectile_speed_+%", 2 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, - { "base_number_of_additional_arrows", 2 }, + { "base_number_of_arrows", 3 }, }, stats = { "attack_minimum_added_lightning_damage", @@ -4912,6 +4671,7 @@ skills["ShrapnelShot"] = { "base_is_projectile", "skill_can_fire_arrows", "additive_arrow_speed_modifiers_apply_to_area_of_effect", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 0.10000000149012, 1.8999999761581, 0, damageEffectiveness = 0.8, baseMultiplier = 0.8, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -4970,12 +4730,6 @@ skills["Grace"] = { ["base_evasion_rating"] = { mod("Evasion", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["avoid_all_elemental_status_%"] = { - mod("AvoidElementalAilments", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["avoid_chaos_damage_%"] = { - mod("AvoidChaosDamageChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, baseFlags = { spell = true, @@ -4989,12 +4743,6 @@ skills["Grace"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "avoid_all_elemental_status_%", 0.1 }, - }, - Alternate2 = { - { "avoid_chaos_damage_%", 0.05 }, - }, }, stats = { "grace_aura_evasion_rating_+%_final", @@ -5142,15 +4890,6 @@ skills["Haste"] = { ["base_movement_velocity_+%"] = { mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["summon_totem_cast_speed_+%"] = { - mod("TotemPlacementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["base_projectile_speed_+%"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["buff_time_passed_+%_only_buff_category"] = { - mod("BuffExpireFaster", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, baseFlags = { spell = true, @@ -5164,15 +4903,6 @@ skills["Haste"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "summon_totem_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 0.2 }, - }, - Alternate3 = { - { "buff_time_passed_+%_only_buff_category", 0.25 }, - }, }, stats = { "attack_speed_+%_granted_from_skill", @@ -5327,13 +5057,6 @@ skills["Hatred"] = { ["hatred_aura_cold_damage_+%_final"] = { mod("ColdDamage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["chill_and_freeze_duration_+%"] = { - mod("EnemyChillDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - mod("EnemyFreezeDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["movement_velocity_+%_on_chilled_ground"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, {type = "Condition", var = "OnChilledGround"}) - } }, baseFlags = { spell = true, @@ -5347,12 +5070,6 @@ skills["Hatred"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "chill_and_freeze_duration_+%", 0.5 }, - }, - Alternate2 = { - { "movement_velocity_+%_on_chilled_ground", 0.5 }, - }, }, stats = { "physical_damage_%_to_add_as_cold", @@ -5435,12 +5152,9 @@ skills["HeraldOfAgony"] = { ["scorpion_minion_maximum_added_physical_damage"] = { mod("MinionModifier", "LIST", { type = "HeraldOfAgonySpiderPlated", mod = mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "VirulenceStack", limitVar = "VirulenceStacksMax", limitActor = "parent" })}) }, - ["active_skill_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + ["quality_display_herald_of_agony_is_gem"] = { + -- Display only }, - ["withered_on_hit_for_2_seconds_%_chance"] = { - flag("Condition:CanWither"), - } }, baseFlags = { cast = true, @@ -5449,14 +5163,7 @@ skills["HeraldOfAgony"] = { }, qualityStats = { Default = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate1 = { - { "active_skill_minion_damage_+%_final", -2 }, - { "withered_on_hit_for_2_seconds_%_chance", 1 }, - }, - Alternate2 = { - { "skill_buff_grants_chance_to_poison_%", 1 }, + { "maximum_virulence_stacks", 0.25 }, }, }, constantStats = { @@ -5473,6 +5180,7 @@ skills["HeraldOfAgony"] = { "herald_of_agony_add_stack_on_poison", "minions_cannot_taunt_enemies", "infinite_minion_duration", + "quality_display_herald_of_agony_is_gem", }, levels = { [1] = { 0.69999998807907, 1.2999999523163, 5, 2, storedUses = 1, manaReservationPercent = 25, cooldown = 1, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, }, @@ -5527,9 +5235,6 @@ skills["HeraldOfIce"] = { statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { - ["herald_of_ice_cold_damage_+%"] = { - mod("ColdDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["spell_minimum_added_cold_damage"] = { mod("ColdMin", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -5542,30 +5247,19 @@ skills["HeraldOfIce"] = { ["attack_maximum_added_cold_damage"] = { mod("ColdMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "GlobalEffect", effectType = "Buff" }), }, - ["skill_buff_grants_chance_to_freeze_%"] = { - mod("FreezeChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - } }, baseFlags = { cast = true, area = true, }, - baseMods = { - skill("radius", 12), - }, qualityStats = { Default = { - { "herald_of_ice_cold_damage_+%", 0.75 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "skill_buff_grants_chance_to_freeze_%", 0.5 }, + { "active_skill_base_radius_+", 0.1 }, }, }, constantStats = { { "skill_override_pvp_scaling_time_ms", 1000 }, + { "active_skill_base_area_of_effect_radius", 12 }, }, stats = { "spell_minimum_added_cold_damage", @@ -5657,13 +5351,7 @@ skills["IceShot"] = { }, qualityStats = { Default = { - { "cold_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 1 }, + { "skill_area_angle_+%", 3 }, }, }, constantStats = { @@ -5672,51 +5360,50 @@ skills["IceShot"] = { stats = { "attack_minimum_added_cold_damage", "attack_maximum_added_cold_damage", - "cold_ailment_effect_+%", "active_skill_chill_as_though_damage_+%_final", "skill_can_fire_arrows", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, 100, damageEffectiveness = 1.3, baseMultiplier = 1.3, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 1, 105, damageEffectiveness = 1.32, baseMultiplier = 1.323, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 2, 110, damageEffectiveness = 1.35, baseMultiplier = 1.346, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 3, 115, damageEffectiveness = 1.37, baseMultiplier = 1.369, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 120, damageEffectiveness = 1.39, baseMultiplier = 1.393, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 5, 125, damageEffectiveness = 1.42, baseMultiplier = 1.416, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 6, 130, damageEffectiveness = 1.44, baseMultiplier = 1.439, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 7, 135, damageEffectiveness = 1.46, baseMultiplier = 1.462, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 8, 140, damageEffectiveness = 1.49, baseMultiplier = 1.485, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 9, 145, damageEffectiveness = 1.51, baseMultiplier = 1.508, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 10, 150, damageEffectiveness = 1.53, baseMultiplier = 1.532, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 11, 155, damageEffectiveness = 1.55, baseMultiplier = 1.555, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 12, 160, damageEffectiveness = 1.58, baseMultiplier = 1.578, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 13, 165, damageEffectiveness = 1.6, baseMultiplier = 1.601, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 14, 170, damageEffectiveness = 1.62, baseMultiplier = 1.624, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 15, 175, damageEffectiveness = 1.65, baseMultiplier = 1.647, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 16, 180, damageEffectiveness = 1.67, baseMultiplier = 1.671, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 17, 185, damageEffectiveness = 1.69, baseMultiplier = 1.694, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 18, 190, damageEffectiveness = 1.72, baseMultiplier = 1.717, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 19, 195, damageEffectiveness = 1.74, baseMultiplier = 1.74, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 20, 200, damageEffectiveness = 1.76, baseMultiplier = 1.763, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 21, 205, damageEffectiveness = 1.79, baseMultiplier = 1.786, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 22, 210, damageEffectiveness = 1.81, baseMultiplier = 1.809, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 23, 215, damageEffectiveness = 1.83, baseMultiplier = 1.833, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 24, 220, damageEffectiveness = 1.86, baseMultiplier = 1.856, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 25, 225, damageEffectiveness = 1.88, baseMultiplier = 1.879, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 26, 230, damageEffectiveness = 1.9, baseMultiplier = 1.902, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 27, 235, damageEffectiveness = 1.93, baseMultiplier = 1.925, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 28, 240, damageEffectiveness = 1.95, baseMultiplier = 1.948, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 29, 245, damageEffectiveness = 1.97, baseMultiplier = 1.972, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 29, 247, damageEffectiveness = 1.98, baseMultiplier = 1.983, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 30, 250, damageEffectiveness = 1.99, baseMultiplier = 1.995, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 30, 252, damageEffectiveness = 2.01, baseMultiplier = 2.006, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 31, 255, damageEffectiveness = 2.02, baseMultiplier = 2.018, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 31, 257, damageEffectiveness = 2.03, baseMultiplier = 2.029, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 32, 260, damageEffectiveness = 2.04, baseMultiplier = 2.041, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 32, 262, damageEffectiveness = 2.05, baseMultiplier = 2.053, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 33, 265, damageEffectiveness = 2.06, baseMultiplier = 2.064, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 33, 267, damageEffectiveness = 2.08, baseMultiplier = 2.076, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 34, 270, damageEffectiveness = 2.09, baseMultiplier = 2.087, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 100, damageEffectiveness = 1.3, baseMultiplier = 1.3, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 105, damageEffectiveness = 1.32, baseMultiplier = 1.323, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 110, damageEffectiveness = 1.35, baseMultiplier = 1.346, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 115, damageEffectiveness = 1.37, baseMultiplier = 1.369, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 120, damageEffectiveness = 1.39, baseMultiplier = 1.393, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 125, damageEffectiveness = 1.42, baseMultiplier = 1.416, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 130, damageEffectiveness = 1.44, baseMultiplier = 1.439, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 135, damageEffectiveness = 1.46, baseMultiplier = 1.462, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 140, damageEffectiveness = 1.49, baseMultiplier = 1.485, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 145, damageEffectiveness = 1.51, baseMultiplier = 1.508, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 150, damageEffectiveness = 1.53, baseMultiplier = 1.532, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 155, damageEffectiveness = 1.55, baseMultiplier = 1.555, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 160, damageEffectiveness = 1.58, baseMultiplier = 1.578, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 165, damageEffectiveness = 1.6, baseMultiplier = 1.601, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 170, damageEffectiveness = 1.62, baseMultiplier = 1.624, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 175, damageEffectiveness = 1.65, baseMultiplier = 1.647, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 180, damageEffectiveness = 1.67, baseMultiplier = 1.671, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 185, damageEffectiveness = 1.69, baseMultiplier = 1.694, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 190, damageEffectiveness = 1.72, baseMultiplier = 1.717, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 195, damageEffectiveness = 1.74, baseMultiplier = 1.74, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 200, damageEffectiveness = 1.76, baseMultiplier = 1.763, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 205, damageEffectiveness = 1.79, baseMultiplier = 1.786, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 210, damageEffectiveness = 1.81, baseMultiplier = 1.809, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 215, damageEffectiveness = 1.83, baseMultiplier = 1.833, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 220, damageEffectiveness = 1.86, baseMultiplier = 1.856, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 225, damageEffectiveness = 1.88, baseMultiplier = 1.879, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 230, damageEffectiveness = 1.9, baseMultiplier = 1.902, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 235, damageEffectiveness = 1.93, baseMultiplier = 1.925, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 240, damageEffectiveness = 1.95, baseMultiplier = 1.948, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 245, damageEffectiveness = 1.97, baseMultiplier = 1.972, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 247, damageEffectiveness = 1.98, baseMultiplier = 1.983, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 250, damageEffectiveness = 1.99, baseMultiplier = 1.995, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 252, damageEffectiveness = 2.01, baseMultiplier = 2.006, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 255, damageEffectiveness = 2.02, baseMultiplier = 2.018, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 257, damageEffectiveness = 2.03, baseMultiplier = 2.029, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 260, damageEffectiveness = 2.04, baseMultiplier = 2.041, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 262, damageEffectiveness = 2.05, baseMultiplier = 2.053, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 265, damageEffectiveness = 2.06, baseMultiplier = 2.064, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 267, damageEffectiveness = 2.08, baseMultiplier = 2.076, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 270, damageEffectiveness = 2.09, baseMultiplier = 2.087, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, }, } skills["VaalIceShot"] = { @@ -5739,7 +5426,7 @@ skills["VaalIceShot"] = { }, qualityStats = { Default = { - { "cold_damage_+%", 1 }, + { "skill_area_angle_+%", 3 }, }, }, constantStats = { @@ -5813,26 +5500,20 @@ skills["IceTrap"] = { area = true, }, baseMods = { - skill("radius", 18), skill("radiusLabel", "First Explosion:"), - skill("radiusSecondary", 9), skill("radiusSecondaryLabel", "Second Explosion:"), - skill("radiusTertiary", 6), skill("radiusTertiaryLabel", "Third Explosion:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_reduce_enemy_cold_resistance_%", 0.25 }, - }, - Alternate2 = { - { "freeze_as_though_dealt_damage_+%", 5 }, + { "trap_%_chance_to_trigger_twice", 0.75 }, }, }, constantStats = { { "base_trap_duration", 4000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_secondary_area_of_effect_radius", 9 }, + { "active_skill_base_tertiary_area_of_effect_radius", 6 }, }, stats = { "spell_minimum_base_cold_damage", @@ -5841,6 +5522,7 @@ skills["IceTrap"] = { "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 2.9, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, @@ -5890,7 +5572,7 @@ skills["DoubleSlash"] = { color = 2, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Slashes twice, releasing waves of force that damage enemies they hit. Enemies in the middle of the slashes can be hit by both. The slashes will have a chance to inflict bleeding in Blood Stance, or have a wider angle in Sand Stance, Can be used with Axes and Swords. You are in Blood Stance by default.", + description = "Slashes twice, releasing waves of force that damage enemies they hit. Enemies in the middle of the slashes can be hit by both. The slashes will have a chance to inflict bleeding in Blood Stance, or have a wider angle in Sand Stance. Can be used with Axes and Swords. You are in Blood Stance by default.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, }, weaponTypes = { ["Two Handed Axe"] = true, @@ -5909,6 +5591,11 @@ skills["DoubleSlash"] = { name = "Both slashes", }, }, + statMap = { + ["attack_speed_+%_if_changed_stance_recently"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Condition", var = "ChangedStanceRecently" }), + }, + }, baseFlags = { attack = true, melee = true, @@ -5920,13 +5607,7 @@ skills["DoubleSlash"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "physical_damage_+%", 1 }, - }, - Alternate2 = { - { "base_bleed_duration_+%", 1 }, + { "attack_speed_+%_if_changed_stance_recently", 1 }, }, }, constantStats = { @@ -6032,20 +5713,11 @@ skills["LancingSteel"] = { }, qualityStats = { Default = { - { "impale_debuff_effect_+%", 1 }, - }, - Alternate1 = { - { "lancing_steel_targeting_range_+%", 1.5 }, - }, - Alternate2 = { - { "lancing_steel_damage_+%_at_close_range", 2 }, - }, - Alternate3 = { - { "attacks_impale_on_hit_%_chance", 0.5 }, + { "base_number_of_projectiles", 0.05 }, }, }, constantStats = { - { "number_of_additional_projectiles", 3 }, + { "base_number_of_projectiles", 4 }, { "attacks_impale_on_hit_%_chance", 20 }, { "steel_ammo_consumed_per_use", 4 }, { "number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed", 50 }, @@ -6055,6 +5727,7 @@ skills["LancingSteel"] = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", "base_is_projectile", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.63, attackSpeedMultiplier = -20, baseMultiplier = 0.63, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, @@ -6104,13 +5777,18 @@ skills["LightningArrow"] = { color = 2, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Fires a charged arrow at the target, causing them to be struck by a bolt of lightning which damages a number of surrounding enemies.", + description = "Fires a charged arrow which damages enemies by causing them to be struck by a bolt of lightning, which also damages a number of surrounding enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + statMap = { + ["quality_display_lightning_arrow_is_gem"] = { + -- Display only + }, + }, baseFlags = { attack = true, projectile = true, @@ -6120,16 +5798,7 @@ skills["LightningArrow"] = { }, qualityStats = { Default = { - { "base_chance_to_shock_%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_lightning", 1 }, - }, - Alternate3 = { - { "lightning_arrow_%_chance_to_hit_an_additional_enemy", 1 }, + { "lightning_arrow_maximum_number_of_extra_targets", 0.1 }, }, }, constantStats = { @@ -6141,6 +5810,7 @@ skills["LightningArrow"] = { "attack_maximum_added_lightning_damage", "active_skill_shock_as_though_damage_+%_final", "skill_can_fire_arrows", + "quality_display_lightning_arrow_is_gem", }, levels = { [1] = { 0.10000000149012, 1.8999999761581, 100, damageEffectiveness = 1.3, baseMultiplier = 1.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, @@ -6215,6 +5885,12 @@ skills["VaalLightningArrow"] = { }, ["base_skill_show_average_damage_instead_of_dps"] = { }, + ["quality_display_lightning_arrow_is_gem"] = { + -- Display only + }, + ["quality_display_base_additional_arrows_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -6225,13 +5901,13 @@ skills["VaalLightningArrow"] = { }, qualityStats = { Default = { - { "base_chance_to_shock_%", 1 }, + { "lightning_arrow_maximum_number_of_extra_targets", 0.1 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, { "lightning_arrow_maximum_number_of_extra_targets", 3 }, - { "base_number_of_additional_arrows", 4 }, + { "base_number_of_arrows", 5 }, { "projectile_random_angle_based_on_distance_to_target_location_%", 35 }, { "vaal_lightning_arrow_number_of_redirects", 9 }, }, @@ -6246,6 +5922,8 @@ skills["VaalLightningArrow"] = { "projectiles_barrage", "cannot_cancel_skill_before_contact_point", "skill_can_add_multiple_charges_per_action", + "quality_display_lightning_arrow_is_gem", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 0.10000000149012, 1.8999999761581, baseMultiplier = 0.62, damageEffectiveness = 0.62, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Soul = 20, }, }, @@ -6295,7 +5973,7 @@ skills["LightningStrike"] = { color = 2, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Infuses your melee weapon with electrical energies as you swing. In addition to converting some of your physical damage to lightning damage, the stored energy is released from the weapon as projectiles as you strike, flying out to hit farther-away enemies. The projectiles cannot miss if the melee attack hits a target.", + description = "Infuses your melee weapon with electrical energies as you swing. In addition to converting some of your physical damage to lightning damage, the stored energy is released from the weapon as projectiles as you strike, flying out to hit farther-away enemies. The projectiles cannot miss if the melee attack hit a target.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.ProjectilesNotFromUser] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -6324,11 +6002,6 @@ skills["LightningStrike"] = { projectile = true, }, }, - statMap = { - ["projectile_base_number_of_targets_to_pierce"] = { - mod("PierceCount", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - }, baseFlags = { attack = true, melee = true, @@ -6336,16 +6009,7 @@ skills["LightningStrike"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "base_chance_to_shock_%", 1 }, - }, - Alternate3 = { - { "skill_physical_damage_%_to_convert_to_lightning", 1 }, + { "base_number_of_projectiles", 0.05 }, }, }, constantStats = { @@ -6356,51 +6020,52 @@ skills["LightningStrike"] = { stats = { "attack_minimum_added_lightning_damage", "attack_maximum_added_lightning_damage", - "number_of_additional_projectiles", + "base_number_of_projectiles", "show_number_of_projectiles", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.35, baseMultiplier = 1.35, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.4, baseMultiplier = 1.397, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.44, baseMultiplier = 1.445, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.49, baseMultiplier = 1.492, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.54, baseMultiplier = 1.539, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.59, baseMultiplier = 1.587, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.63, baseMultiplier = 1.634, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.68, baseMultiplier = 1.682, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.73, baseMultiplier = 1.729, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.78, baseMultiplier = 1.776, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.82, baseMultiplier = 1.824, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.87, baseMultiplier = 1.871, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.92, baseMultiplier = 1.918, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 1.97, baseMultiplier = 1.966, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.01, baseMultiplier = 2.013, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.06, baseMultiplier = 2.061, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.11, baseMultiplier = 2.108, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.16, baseMultiplier = 2.155, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.2, baseMultiplier = 2.203, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.25, baseMultiplier = 2.25, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.3, baseMultiplier = 2.297, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.34, baseMultiplier = 2.345, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.39, baseMultiplier = 2.392, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.44, baseMultiplier = 2.439, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.49, baseMultiplier = 2.487, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.53, baseMultiplier = 2.534, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.58, baseMultiplier = 2.582, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.63, baseMultiplier = 2.629, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.68, baseMultiplier = 2.676, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.72, baseMultiplier = 2.724, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.75, baseMultiplier = 2.747, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.77, baseMultiplier = 2.771, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.79, baseMultiplier = 2.795, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.82, baseMultiplier = 2.818, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.84, baseMultiplier = 2.842, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.87, baseMultiplier = 2.866, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.89, baseMultiplier = 2.889, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.91, baseMultiplier = 2.913, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.94, baseMultiplier = 2.937, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 2, damageEffectiveness = 2.96, baseMultiplier = 2.961, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.35, baseMultiplier = 1.35, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.4, baseMultiplier = 1.397, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.44, baseMultiplier = 1.445, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.49, baseMultiplier = 1.492, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.54, baseMultiplier = 1.539, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.59, baseMultiplier = 1.587, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.63, baseMultiplier = 1.634, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.68, baseMultiplier = 1.682, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.73, baseMultiplier = 1.729, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.78, baseMultiplier = 1.776, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.82, baseMultiplier = 1.824, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.87, baseMultiplier = 1.871, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.92, baseMultiplier = 1.918, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.97, baseMultiplier = 1.966, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.01, baseMultiplier = 2.013, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.06, baseMultiplier = 2.061, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.11, baseMultiplier = 2.108, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.16, baseMultiplier = 2.155, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.2, baseMultiplier = 2.203, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.25, baseMultiplier = 2.25, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.3, baseMultiplier = 2.297, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.34, baseMultiplier = 2.345, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.39, baseMultiplier = 2.392, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.44, baseMultiplier = 2.439, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.49, baseMultiplier = 2.487, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.53, baseMultiplier = 2.534, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.58, baseMultiplier = 2.582, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.63, baseMultiplier = 2.629, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.68, baseMultiplier = 2.676, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.72, baseMultiplier = 2.724, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.75, baseMultiplier = 2.747, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.77, baseMultiplier = 2.771, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.79, baseMultiplier = 2.795, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.82, baseMultiplier = 2.818, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.84, baseMultiplier = 2.842, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.87, baseMultiplier = 2.866, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.89, baseMultiplier = 2.889, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.91, baseMultiplier = 2.913, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.94, baseMultiplier = 2.937, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 2.96, baseMultiplier = 2.961, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["VaalLightningStrike"] = { @@ -6450,7 +6115,7 @@ skills["VaalLightningStrike"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, + { "base_number_of_projectiles", 0.05 }, }, }, constantStats = { @@ -6461,54 +6126,55 @@ skills["VaalLightningStrike"] = { stats = { "attack_minimum_added_lightning_damage", "attack_maximum_added_lightning_damage", - "number_of_additional_projectiles", + "base_number_of_projectiles", "global_always_hit", "show_number_of_projectiles", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "cannot_cancel_skill_before_contact_point", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 4, baseMultiplier = 1.05, damageEffectiveness = 1.05, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 4, baseMultiplier = 1.081, damageEffectiveness = 1.08, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 4, baseMultiplier = 1.111, damageEffectiveness = 1.11, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 4, baseMultiplier = 1.142, damageEffectiveness = 1.14, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 4, baseMultiplier = 1.172, damageEffectiveness = 1.17, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.203, damageEffectiveness = 1.2, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.233, damageEffectiveness = 1.23, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.264, damageEffectiveness = 1.26, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.294, damageEffectiveness = 1.29, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.325, damageEffectiveness = 1.32, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.355, damageEffectiveness = 1.36, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.386, damageEffectiveness = 1.39, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.416, damageEffectiveness = 1.42, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.447, damageEffectiveness = 1.45, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 6, baseMultiplier = 1.477, damageEffectiveness = 1.48, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.508, damageEffectiveness = 1.51, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.538, damageEffectiveness = 1.54, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.569, damageEffectiveness = 1.57, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.599, damageEffectiveness = 1.6, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.63, damageEffectiveness = 1.63, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.661, damageEffectiveness = 1.66, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.691, damageEffectiveness = 1.69, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.722, damageEffectiveness = 1.72, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.752, damageEffectiveness = 1.75, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 8, baseMultiplier = 1.783, damageEffectiveness = 1.78, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.813, damageEffectiveness = 1.81, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.844, damageEffectiveness = 1.84, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.874, damageEffectiveness = 1.87, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.905, damageEffectiveness = 1.9, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.935, damageEffectiveness = 1.94, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.951, damageEffectiveness = 1.95, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.966, damageEffectiveness = 1.97, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.981, damageEffectiveness = 1.98, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 1.996, damageEffectiveness = 2, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.012, damageEffectiveness = 2.01, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.027, damageEffectiveness = 2.03, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.042, damageEffectiveness = 2.04, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.057, damageEffectiveness = 2.06, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.073, damageEffectiveness = 2.07, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 10, baseMultiplier = 2.088, damageEffectiveness = 2.09, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 5, baseMultiplier = 1.05, damageEffectiveness = 1.05, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 5, baseMultiplier = 1.081, damageEffectiveness = 1.08, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 5, baseMultiplier = 1.111, damageEffectiveness = 1.11, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 5, baseMultiplier = 1.142, damageEffectiveness = 1.14, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 5, baseMultiplier = 1.172, damageEffectiveness = 1.17, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.203, damageEffectiveness = 1.2, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.233, damageEffectiveness = 1.23, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.264, damageEffectiveness = 1.26, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.294, damageEffectiveness = 1.29, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.325, damageEffectiveness = 1.32, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.355, damageEffectiveness = 1.36, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.386, damageEffectiveness = 1.39, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.416, damageEffectiveness = 1.42, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.447, damageEffectiveness = 1.45, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, baseMultiplier = 1.477, damageEffectiveness = 1.48, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.508, damageEffectiveness = 1.51, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.538, damageEffectiveness = 1.54, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.569, damageEffectiveness = 1.57, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.599, damageEffectiveness = 1.6, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.63, damageEffectiveness = 1.63, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.661, damageEffectiveness = 1.66, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.691, damageEffectiveness = 1.69, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.722, damageEffectiveness = 1.72, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.752, damageEffectiveness = 1.75, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 9, baseMultiplier = 1.783, damageEffectiveness = 1.78, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.813, damageEffectiveness = 1.81, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.844, damageEffectiveness = 1.84, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.874, damageEffectiveness = 1.87, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.905, damageEffectiveness = 1.9, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.935, damageEffectiveness = 1.94, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.951, damageEffectiveness = 1.95, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.966, damageEffectiveness = 1.97, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.981, damageEffectiveness = 1.98, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 1.996, damageEffectiveness = 2, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.012, damageEffectiveness = 2.01, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.027, damageEffectiveness = 2.03, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.042, damageEffectiveness = 2.04, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.057, damageEffectiveness = 2.06, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.073, damageEffectiveness = 2.07, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 11, baseMultiplier = 2.088, damageEffectiveness = 2.09, vaalStoredUses = 2, soulPreventionDuration = 8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 20, }, }, }, } skills["MirrorArrow"] = { @@ -6523,7 +6189,7 @@ skills["MirrorArrow"] = { statDescriptionScope = "minion_attack_skill_stat_descriptions", castTime = 1, minionList = { - "Clone", + "ArrowClone", }, baseFlags = { attack = true, @@ -6536,72 +6202,62 @@ skills["MirrorArrow"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "minion_maximum_life_+%", 3 }, - }, - Alternate3 = { - { "base_added_cooldown_count", 0.1 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { { "base_skill_effect_duration", 3000 }, { "number_of_monsters_to_summon", 1 }, - { "active_skill_minion_damage_+%_final", 75 }, - { "display_minion_monster_type", 4 }, + { "display_minion_monster_type", 25 }, }, stats = { - "minion_damage_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "base_cooldown_speed_+%", + "active_skill_minion_damage_+%_final", "base_is_projectile", + "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 0, 0, 24, 0, storedUses = 1, levelRequirement = 10, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [2] = { 6, 3, 27, 2, storedUses = 1, levelRequirement = 13, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [3] = { 12, 6, 30, 5, storedUses = 1, levelRequirement = 17, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [4] = { 18, 9, 33, 7, storedUses = 1, levelRequirement = 21, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [5] = { 24, 12, 35, 10, storedUses = 1, levelRequirement = 25, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [6] = { 30, 15, 38, 12, storedUses = 1, levelRequirement = 29, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [7] = { 36, 18, 40, 15, storedUses = 1, levelRequirement = 33, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [8] = { 42, 21, 43, 17, storedUses = 1, levelRequirement = 36, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [9] = { 48, 24, 46, 20, storedUses = 1, levelRequirement = 39, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [10] = { 54, 27, 48, 22, storedUses = 1, levelRequirement = 42, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [11] = { 60, 30, 50, 25, storedUses = 1, levelRequirement = 45, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [12] = { 66, 33, 52, 27, storedUses = 1, levelRequirement = 48, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [13] = { 72, 36, 54, 30, storedUses = 1, levelRequirement = 51, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [14] = { 78, 39, 56, 32, storedUses = 1, levelRequirement = 54, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [15] = { 84, 42, 58, 35, storedUses = 1, levelRequirement = 57, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 90, 45, 60, 37, storedUses = 1, levelRequirement = 60, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 96, 48, 62, 40, storedUses = 1, levelRequirement = 63, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [18] = { 102, 51, 64, 42, storedUses = 1, levelRequirement = 66, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 108, 54, 66, 45, storedUses = 1, levelRequirement = 68, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [20] = { 114, 57, 68, 47, storedUses = 1, levelRequirement = 70, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 120, 60, 70, 50, storedUses = 1, levelRequirement = 72, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [22] = { 126, 63, 72, 52, storedUses = 1, levelRequirement = 74, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 132, 66, 74, 55, storedUses = 1, levelRequirement = 76, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [24] = { 138, 69, 76, 57, storedUses = 1, levelRequirement = 78, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [25] = { 144, 72, 78, 60, storedUses = 1, levelRequirement = 80, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 150, 75, 80, 62, storedUses = 1, levelRequirement = 82, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [27] = { 156, 78, 82, 65, storedUses = 1, levelRequirement = 84, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 162, 81, 84, 67, storedUses = 1, levelRequirement = 86, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 168, 84, 86, 70, storedUses = 1, levelRequirement = 88, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [30] = { 174, 87, 88, 72, storedUses = 1, levelRequirement = 90, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 177, 89, 89, 73, storedUses = 1, levelRequirement = 91, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 180, 90, 90, 75, storedUses = 1, levelRequirement = 92, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [33] = { 183, 92, 91, 76, storedUses = 1, levelRequirement = 93, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 186, 93, 92, 77, storedUses = 1, levelRequirement = 94, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 189, 95, 93, 78, storedUses = 1, levelRequirement = 95, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 192, 96, 94, 80, storedUses = 1, levelRequirement = 96, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [37] = { 195, 98, 95, 81, storedUses = 1, levelRequirement = 97, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 198, 99, 96, 82, storedUses = 1, levelRequirement = 98, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [39] = { 201, 101, 97, 83, storedUses = 1, levelRequirement = 99, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [40] = { 204, 102, 98, 85, storedUses = 1, levelRequirement = 100, cooldown = 3, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [1] = { 10, 0, 0, storedUses = 1, levelRequirement = 10, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [2] = { 13, 2, 3, storedUses = 1, levelRequirement = 13, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [3] = { 17, 5, 6, storedUses = 1, levelRequirement = 17, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [4] = { 21, 7, 9, storedUses = 1, levelRequirement = 21, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [5] = { 25, 10, 12, storedUses = 1, levelRequirement = 25, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [6] = { 29, 12, 15, storedUses = 1, levelRequirement = 29, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [7] = { 33, 15, 18, storedUses = 1, levelRequirement = 33, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [8] = { 36, 17, 21, storedUses = 1, levelRequirement = 36, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [9] = { 39, 20, 24, storedUses = 1, levelRequirement = 39, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [10] = { 42, 22, 27, storedUses = 1, levelRequirement = 42, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [11] = { 45, 25, 30, storedUses = 1, levelRequirement = 45, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 48, 27, 33, storedUses = 1, levelRequirement = 48, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [13] = { 51, 30, 36, storedUses = 1, levelRequirement = 51, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [14] = { 54, 32, 39, storedUses = 1, levelRequirement = 54, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [15] = { 57, 35, 42, storedUses = 1, levelRequirement = 57, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 60, 37, 45, storedUses = 1, levelRequirement = 60, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 63, 40, 48, storedUses = 1, levelRequirement = 63, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [18] = { 66, 42, 51, storedUses = 1, levelRequirement = 66, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 68, 45, 54, storedUses = 1, levelRequirement = 68, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [20] = { 70, 47, 57, storedUses = 1, levelRequirement = 70, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 72, 50, 60, storedUses = 1, levelRequirement = 72, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [22] = { 74, 52, 63, storedUses = 1, levelRequirement = 74, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 76, 55, 66, storedUses = 1, levelRequirement = 76, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [24] = { 78, 57, 69, storedUses = 1, levelRequirement = 78, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [25] = { 80, 60, 72, storedUses = 1, levelRequirement = 80, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 82, 62, 75, storedUses = 1, levelRequirement = 82, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [27] = { 84, 65, 78, storedUses = 1, levelRequirement = 84, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 86, 67, 81, storedUses = 1, levelRequirement = 86, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 88, 70, 84, storedUses = 1, levelRequirement = 88, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [30] = { 90, 72, 87, storedUses = 1, levelRequirement = 90, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 91, 73, 88, storedUses = 1, levelRequirement = 91, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 92, 75, 90, storedUses = 1, levelRequirement = 92, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [33] = { 93, 76, 91, storedUses = 1, levelRequirement = 93, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 94, 77, 93, storedUses = 1, levelRequirement = 94, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 95, 78, 94, storedUses = 1, levelRequirement = 95, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 96, 80, 96, storedUses = 1, levelRequirement = 96, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [37] = { 97, 81, 97, storedUses = 1, levelRequirement = 97, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 98, 82, 99, storedUses = 1, levelRequirement = 98, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, + [39] = { 99, 83, 100, storedUses = 1, levelRequirement = 99, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, + [40] = { 100, 85, 102, storedUses = 1, levelRequirement = 100, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, }, } skills["MambaStrike"] = { @@ -6627,16 +6283,7 @@ skills["MambaStrike"] = { }, qualityStats = { Default = { - { "poison_dot_multiplier_+", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate3 = { - { "skill_physical_damage_%_to_convert_to_chaos", 1 }, + { "active_skill_poison_duration_+%_final", 1 }, }, }, constantStats = { @@ -6718,12 +6365,6 @@ skills["NewPhaseRun"] = { Default = { { "base_movement_velocity_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "phase_run_%_chance_to_not_replace_buff_on_skill_use", 0.5 }, - }, }, constantStats = { { "stealth_+%", 100 }, @@ -6790,12 +6431,6 @@ skills["CorrosiveShroud"] = { statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { - ["plague_bearer_movement_speed_+%_while_infecting"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerInfecting" }), - }, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"] = { - mod("DotMultiplier", "BASE", nil, 0, KeywordFlag.Poison, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerInfecting" }), - }, ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"] = { mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerIncubating" }), }, @@ -6809,13 +6444,7 @@ skills["CorrosiveShroud"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "plague_bearer_movement_speed_+%_while_infecting", 0.25 }, - }, - Alternate2 = { - { "corrosive_shroud_poison_dot_multiplier_+_while_aura_active", 0.5 }, + { "corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second", 0.2 }, }, }, constantStats = { @@ -6827,6 +6456,7 @@ skills["CorrosiveShroud"] = { "corrosive_shroud_maximum_stored_poison_damage", "active_skill_base_radius_+", "base_deal_no_damage", + "quality_display_plague_bearer_is_gem", }, levels = { [1] = { 1, 0, storedUses = 1, levelRequirement = 24, cooldown = 0.5, statInterpolation = { 3, 1, }, cost = { Mana = 6, }, }, @@ -6896,9 +6526,6 @@ skills["PoachersMark"] = { ["maximum_added_physical_damage_taken"] = { mod("SelfPhysicalMax", "BASE", nil, ModFlag.Hit, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, }, baseFlags = { spell = true, @@ -6913,12 +6540,6 @@ skills["PoachersMark"] = { Default = { { "grant_attacker_frenzy_charge_when_hit_%_chance", 0.25 }, }, - Alternate1 = { - { "base_damage_taken_+%", 0.2 }, - }, - Alternate2 = { - { "base_additional_physical_damage_reduction_%", -0.25 }, - }, }, constantStats = { { "base_additional_physical_damage_reduction_%", -20 }, @@ -6988,12 +6609,6 @@ skills["AccuracyAndCritsAura"] = { ["skill_buff_grants_critical_strike_chance_+%"] = { mod("CritChance", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["auras_grant_damage_+%_to_you_and_your_allies"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["precision_grants_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, baseFlags = { spell = true, @@ -7007,12 +6622,6 @@ skills["AccuracyAndCritsAura"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "base_reservation_efficiency_+%", 1 }, - }, - Alternate2 = { - { "auras_grant_damage_+%_to_you_and_your_allies", 0.1 }, - }, }, stats = { "accuracy_rating", @@ -7092,12 +6701,6 @@ skills["SnipersMark"] = { Default = { { "projectile_damage_taken_+%", 0.25 }, }, - Alternate1 = { - { "curse_cast_speed_+%", 1 }, - }, - Alternate2 = { - { "chance_to_be_knocked_back_%", 2 }, - }, }, stats = { "projectiles_hitting_self_split_into_x", @@ -7179,6 +6782,12 @@ skills["StormRain"] = { ["prismatic_rain_beam_frequency_+%"] = { mod("StormRainBeamFrequency", "INC", nil), }, + ["number_of_allowed_storm_arrows"] = { + -- Display only + }, + ["quality_display_storm_rain_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -7193,13 +6802,7 @@ skills["StormRain"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "prismatic_rain_beam_frequency_+%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", -0.5 }, + { "storm_rain_pulse_count", 0.05 }, }, }, constantStats = { @@ -7215,6 +6818,7 @@ skills["StormRain"] = { "cannot_pierce", "console_skill_dont_chase", "skill_can_add_multiple_charges_per_action", + "quality_display_storm_rain_is_gem", }, levels = { [1] = { 500, damageEffectiveness = 0.46, baseMultiplier = 0.46, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, @@ -7277,8 +6881,8 @@ skills["Puncture"] = { statDescriptionScope = "skill_stat_descriptions", castTime = 1, statMap = { - ["puncture_bleeding_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed), + ["quality_display_active_skill_bleed_damage_final_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -7292,16 +6896,7 @@ skills["Puncture"] = { }, qualityStats = { Default = { - { "faster_bleed_%", 0.5 }, - }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "melee_attack_number_of_spirit_strikes", 0.1 }, - }, - Alternate3 = { - { "maim_on_hit_%", 0.5 }, + { "active_skill_bleeding_damage_+%_final", 1 }, }, }, constantStats = { @@ -7310,10 +6905,11 @@ skills["Puncture"] = { stats = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", - "puncture_bleeding_damage_+%_final", + "active_skill_bleeding_damage_+%_final", "skill_can_fire_arrows", "global_bleed_on_hit", "bleed_duration_is_skill_duration", + "quality_display_active_skill_bleed_damage_final_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 30, damageEffectiveness = 1.35, attackSpeedMultiplier = -30, baseMultiplier = 1.3474, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -7372,12 +6968,6 @@ skills["ColdResistAura"] = { ["base_maximum_cold_damage_resistance_%"] = { mod("ColdResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_freeze_%"] = { - mod("AvoidFreeze", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_reduce_enemy_cold_resistance_%"] = { - mod("ColdPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -7389,13 +6979,7 @@ skills["ColdResistAura"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate1 = { - { "base_avoid_freeze_%", 0.25 }, - }, - Alternate2 = { - { "base_reduce_enemy_cold_resistance_%", 0.05 }, + { "base_cold_damage_resistance_%", 0.5 }, }, }, stats = { @@ -7557,66 +7141,58 @@ skills["RainOfArrows"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "rain_of_arrows_additional_sequence_chance_%", 0.25 }, - }, - Alternate2 = { - { "base_number_of_additional_arrows", 0.2 }, - }, - Alternate3 = { - { "maim_on_hit_%", 0.5 }, + { "base_number_of_arrows", 0.2 }, }, }, stats = { - "base_number_of_additional_arrows", + "base_number_of_arrows", "base_is_projectile", "is_area_damage", "skill_can_fire_arrows", "cannot_pierce", + "quality_display_base_additional_arrows_is_gem", }, levels = { - [1] = { 17, damageEffectiveness = 0.48, baseMultiplier = 0.48, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [2] = { 17, damageEffectiveness = 0.49, baseMultiplier = 0.486, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [3] = { 17, damageEffectiveness = 0.49, baseMultiplier = 0.493, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [4] = { 17, damageEffectiveness = 0.5, baseMultiplier = 0.499, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [5] = { 18, damageEffectiveness = 0.51, baseMultiplier = 0.505, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [6] = { 18, damageEffectiveness = 0.51, baseMultiplier = 0.512, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [7] = { 18, damageEffectiveness = 0.52, baseMultiplier = 0.518, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [8] = { 18, damageEffectiveness = 0.52, baseMultiplier = 0.524, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [9] = { 19, damageEffectiveness = 0.53, baseMultiplier = 0.531, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [10] = { 19, damageEffectiveness = 0.54, baseMultiplier = 0.537, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [11] = { 19, damageEffectiveness = 0.54, baseMultiplier = 0.543, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [12] = { 19, damageEffectiveness = 0.55, baseMultiplier = 0.549, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [13] = { 20, damageEffectiveness = 0.56, baseMultiplier = 0.556, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [14] = { 20, damageEffectiveness = 0.56, baseMultiplier = 0.562, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [15] = { 20, damageEffectiveness = 0.57, baseMultiplier = 0.568, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [16] = { 20, damageEffectiveness = 0.57, baseMultiplier = 0.575, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [17] = { 21, damageEffectiveness = 0.58, baseMultiplier = 0.581, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [18] = { 21, damageEffectiveness = 0.59, baseMultiplier = 0.587, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [19] = { 21, damageEffectiveness = 0.59, baseMultiplier = 0.594, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [20] = { 21, damageEffectiveness = 0.6, baseMultiplier = 0.6, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [21] = { 22, damageEffectiveness = 0.61, baseMultiplier = 0.606, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [22] = { 22, damageEffectiveness = 0.61, baseMultiplier = 0.613, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [23] = { 22, damageEffectiveness = 0.62, baseMultiplier = 0.619, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [24] = { 22, damageEffectiveness = 0.63, baseMultiplier = 0.625, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [25] = { 23, damageEffectiveness = 0.63, baseMultiplier = 0.632, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [26] = { 23, damageEffectiveness = 0.64, baseMultiplier = 0.638, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [27] = { 23, damageEffectiveness = 0.64, baseMultiplier = 0.644, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [28] = { 23, damageEffectiveness = 0.65, baseMultiplier = 0.651, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [29] = { 24, damageEffectiveness = 0.66, baseMultiplier = 0.657, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [30] = { 24, damageEffectiveness = 0.66, baseMultiplier = 0.663, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [31] = { 24, damageEffectiveness = 0.67, baseMultiplier = 0.666, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [32] = { 24, damageEffectiveness = 0.67, baseMultiplier = 0.669, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [33] = { 24, damageEffectiveness = 0.67, baseMultiplier = 0.673, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [34] = { 24, damageEffectiveness = 0.68, baseMultiplier = 0.676, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [35] = { 24, damageEffectiveness = 0.68, baseMultiplier = 0.679, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [36] = { 25, damageEffectiveness = 0.68, baseMultiplier = 0.682, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [37] = { 25, damageEffectiveness = 0.69, baseMultiplier = 0.685, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [38] = { 25, damageEffectiveness = 0.69, baseMultiplier = 0.688, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [39] = { 25, damageEffectiveness = 0.69, baseMultiplier = 0.692, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [40] = { 25, damageEffectiveness = 0.69, baseMultiplier = 0.695, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [1] = { 18, damageEffectiveness = 0.48, baseMultiplier = 0.48, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [2] = { 18, damageEffectiveness = 0.49, baseMultiplier = 0.486, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [3] = { 18, damageEffectiveness = 0.49, baseMultiplier = 0.493, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [4] = { 18, damageEffectiveness = 0.5, baseMultiplier = 0.499, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [5] = { 19, damageEffectiveness = 0.51, baseMultiplier = 0.505, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [6] = { 19, damageEffectiveness = 0.51, baseMultiplier = 0.512, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [7] = { 19, damageEffectiveness = 0.52, baseMultiplier = 0.518, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 19, damageEffectiveness = 0.52, baseMultiplier = 0.524, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 20, damageEffectiveness = 0.53, baseMultiplier = 0.531, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [10] = { 20, damageEffectiveness = 0.54, baseMultiplier = 0.537, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [11] = { 20, damageEffectiveness = 0.54, baseMultiplier = 0.543, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [12] = { 20, damageEffectiveness = 0.55, baseMultiplier = 0.549, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [13] = { 21, damageEffectiveness = 0.56, baseMultiplier = 0.556, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [14] = { 21, damageEffectiveness = 0.56, baseMultiplier = 0.562, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [15] = { 21, damageEffectiveness = 0.57, baseMultiplier = 0.568, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [16] = { 21, damageEffectiveness = 0.57, baseMultiplier = 0.575, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [17] = { 22, damageEffectiveness = 0.58, baseMultiplier = 0.581, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [18] = { 22, damageEffectiveness = 0.59, baseMultiplier = 0.587, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [19] = { 22, damageEffectiveness = 0.59, baseMultiplier = 0.594, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [20] = { 22, damageEffectiveness = 0.6, baseMultiplier = 0.6, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [21] = { 23, damageEffectiveness = 0.61, baseMultiplier = 0.606, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [22] = { 23, damageEffectiveness = 0.61, baseMultiplier = 0.613, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [23] = { 23, damageEffectiveness = 0.62, baseMultiplier = 0.619, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [24] = { 23, damageEffectiveness = 0.63, baseMultiplier = 0.625, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [25] = { 24, damageEffectiveness = 0.63, baseMultiplier = 0.632, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [26] = { 24, damageEffectiveness = 0.64, baseMultiplier = 0.638, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [27] = { 24, damageEffectiveness = 0.64, baseMultiplier = 0.644, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [28] = { 24, damageEffectiveness = 0.65, baseMultiplier = 0.651, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [29] = { 25, damageEffectiveness = 0.66, baseMultiplier = 0.657, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [30] = { 25, damageEffectiveness = 0.66, baseMultiplier = 0.663, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [31] = { 25, damageEffectiveness = 0.67, baseMultiplier = 0.666, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [32] = { 25, damageEffectiveness = 0.67, baseMultiplier = 0.669, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [33] = { 25, damageEffectiveness = 0.67, baseMultiplier = 0.673, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [34] = { 25, damageEffectiveness = 0.68, baseMultiplier = 0.676, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [35] = { 25, damageEffectiveness = 0.68, baseMultiplier = 0.679, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [36] = { 26, damageEffectiveness = 0.68, baseMultiplier = 0.682, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [37] = { 26, damageEffectiveness = 0.69, baseMultiplier = 0.685, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [38] = { 26, damageEffectiveness = 0.69, baseMultiplier = 0.688, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [39] = { 26, damageEffectiveness = 0.69, baseMultiplier = 0.692, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [40] = { 26, damageEffectiveness = 0.69, baseMultiplier = 0.695, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 14, }, }, }, } skills["VaalRainOfArrows"] = { @@ -7642,7 +7218,7 @@ skills["VaalRainOfArrows"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "base_number_of_arrows", 0.2 }, }, }, constantStats = { @@ -7650,7 +7226,7 @@ skills["VaalRainOfArrows"] = { { "maim_effect_+%", 150 }, }, stats = { - "base_number_of_additional_arrows", + "base_number_of_arrows", "base_is_projectile", "is_area_damage", "global_maim_on_hit", @@ -7658,54 +7234,55 @@ skills["VaalRainOfArrows"] = { "cannot_pierce", "global_always_hit", "cannot_cancel_skill_before_contact_point", + "quality_display_base_additional_arrows_is_gem", }, levels = { - [1] = { 27, baseMultiplier = 0.8, damageEffectiveness = 0.8, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 12, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [2] = { 27, baseMultiplier = 0.811, damageEffectiveness = 0.81, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 15, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [3] = { 27, baseMultiplier = 0.821, damageEffectiveness = 0.82, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 19, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [4] = { 28, baseMultiplier = 0.832, damageEffectiveness = 0.83, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 23, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [5] = { 28, baseMultiplier = 0.842, damageEffectiveness = 0.84, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 27, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [6] = { 28, baseMultiplier = 0.853, damageEffectiveness = 0.85, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 31, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [7] = { 29, baseMultiplier = 0.863, damageEffectiveness = 0.86, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 35, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [8] = { 29, baseMultiplier = 0.874, damageEffectiveness = 0.87, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 38, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [9] = { 29, baseMultiplier = 0.884, damageEffectiveness = 0.88, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 41, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [10] = { 30, baseMultiplier = 0.895, damageEffectiveness = 0.89, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 44, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [11] = { 30, baseMultiplier = 0.906, damageEffectiveness = 0.91, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 47, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [12] = { 30, baseMultiplier = 0.916, damageEffectiveness = 0.92, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 50, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [13] = { 31, baseMultiplier = 0.927, damageEffectiveness = 0.93, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 53, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [14] = { 31, baseMultiplier = 0.937, damageEffectiveness = 0.94, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 56, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [15] = { 31, baseMultiplier = 0.948, damageEffectiveness = 0.95, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 59, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [16] = { 32, baseMultiplier = 0.958, damageEffectiveness = 0.96, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 62, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [17] = { 32, baseMultiplier = 0.969, damageEffectiveness = 0.97, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 64, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [18] = { 32, baseMultiplier = 0.98, damageEffectiveness = 0.98, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 66, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [19] = { 33, baseMultiplier = 0.99, damageEffectiveness = 0.99, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 68, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [20] = { 33, baseMultiplier = 1.001, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 70, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [21] = { 33, baseMultiplier = 1.011, damageEffectiveness = 1.01, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 72, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [22] = { 34, baseMultiplier = 1.022, damageEffectiveness = 1.02, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 74, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [23] = { 34, baseMultiplier = 1.032, damageEffectiveness = 1.03, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 76, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [24] = { 34, baseMultiplier = 1.043, damageEffectiveness = 1.04, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 78, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [25] = { 35, baseMultiplier = 1.053, damageEffectiveness = 1.05, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 80, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [26] = { 35, baseMultiplier = 1.064, damageEffectiveness = 1.06, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 82, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [27] = { 35, baseMultiplier = 1.075, damageEffectiveness = 1.08, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 84, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [28] = { 36, baseMultiplier = 1.085, damageEffectiveness = 1.09, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 86, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [29] = { 36, baseMultiplier = 1.096, damageEffectiveness = 1.1, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 88, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [30] = { 36, baseMultiplier = 1.106, damageEffectiveness = 1.11, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 90, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [31] = { 36, baseMultiplier = 1.117, damageEffectiveness = 1.12, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 91, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [32] = { 37, baseMultiplier = 1.127, damageEffectiveness = 1.13, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 92, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [33] = { 37, baseMultiplier = 1.138, damageEffectiveness = 1.14, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 93, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [34] = { 37, baseMultiplier = 1.148, damageEffectiveness = 1.15, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 94, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [35] = { 37, baseMultiplier = 1.159, damageEffectiveness = 1.16, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 95, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [36] = { 37, baseMultiplier = 1.17, damageEffectiveness = 1.17, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 96, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [37] = { 37, baseMultiplier = 1.18, damageEffectiveness = 1.18, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 97, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [38] = { 38, baseMultiplier = 1.191, damageEffectiveness = 1.19, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 98, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [39] = { 38, baseMultiplier = 1.201, damageEffectiveness = 1.2, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 99, statInterpolation = { 1, }, cost = { Soul = 20, }, }, - [40] = { 38, baseMultiplier = 1.212, damageEffectiveness = 1.21, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 100, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [1] = { 28, baseMultiplier = 0.8, damageEffectiveness = 0.8, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 12, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [2] = { 28, baseMultiplier = 0.811, damageEffectiveness = 0.81, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 15, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [3] = { 28, baseMultiplier = 0.821, damageEffectiveness = 0.82, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 19, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [4] = { 29, baseMultiplier = 0.832, damageEffectiveness = 0.83, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 23, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [5] = { 29, baseMultiplier = 0.842, damageEffectiveness = 0.84, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 27, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [6] = { 29, baseMultiplier = 0.853, damageEffectiveness = 0.85, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 31, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [7] = { 30, baseMultiplier = 0.863, damageEffectiveness = 0.86, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 35, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [8] = { 30, baseMultiplier = 0.874, damageEffectiveness = 0.87, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 38, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [9] = { 30, baseMultiplier = 0.884, damageEffectiveness = 0.88, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 41, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [10] = { 31, baseMultiplier = 0.895, damageEffectiveness = 0.89, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 44, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [11] = { 31, baseMultiplier = 0.906, damageEffectiveness = 0.91, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 47, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [12] = { 31, baseMultiplier = 0.916, damageEffectiveness = 0.92, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 50, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [13] = { 32, baseMultiplier = 0.927, damageEffectiveness = 0.93, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 53, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [14] = { 32, baseMultiplier = 0.937, damageEffectiveness = 0.94, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 56, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [15] = { 32, baseMultiplier = 0.948, damageEffectiveness = 0.95, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 59, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [16] = { 33, baseMultiplier = 0.958, damageEffectiveness = 0.96, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 62, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [17] = { 33, baseMultiplier = 0.969, damageEffectiveness = 0.97, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 64, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [18] = { 33, baseMultiplier = 0.98, damageEffectiveness = 0.98, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 66, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [19] = { 34, baseMultiplier = 0.99, damageEffectiveness = 0.99, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 68, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [20] = { 34, baseMultiplier = 1.001, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 70, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [21] = { 34, baseMultiplier = 1.011, damageEffectiveness = 1.01, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 72, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [22] = { 35, baseMultiplier = 1.022, damageEffectiveness = 1.02, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 74, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [23] = { 35, baseMultiplier = 1.032, damageEffectiveness = 1.03, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 76, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [24] = { 35, baseMultiplier = 1.043, damageEffectiveness = 1.04, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 78, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [25] = { 36, baseMultiplier = 1.053, damageEffectiveness = 1.05, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 80, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [26] = { 36, baseMultiplier = 1.064, damageEffectiveness = 1.06, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 82, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [27] = { 36, baseMultiplier = 1.075, damageEffectiveness = 1.08, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 84, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [28] = { 37, baseMultiplier = 1.085, damageEffectiveness = 1.09, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 86, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [29] = { 37, baseMultiplier = 1.096, damageEffectiveness = 1.1, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 88, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [30] = { 37, baseMultiplier = 1.106, damageEffectiveness = 1.11, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 90, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [31] = { 37, baseMultiplier = 1.117, damageEffectiveness = 1.12, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 91, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [32] = { 38, baseMultiplier = 1.127, damageEffectiveness = 1.13, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 92, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [33] = { 38, baseMultiplier = 1.138, damageEffectiveness = 1.14, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 93, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [34] = { 38, baseMultiplier = 1.148, damageEffectiveness = 1.15, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 94, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [35] = { 38, baseMultiplier = 1.159, damageEffectiveness = 1.16, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 95, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [36] = { 38, baseMultiplier = 1.17, damageEffectiveness = 1.17, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 96, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [37] = { 38, baseMultiplier = 1.18, damageEffectiveness = 1.18, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 97, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [38] = { 39, baseMultiplier = 1.191, damageEffectiveness = 1.19, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 98, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [39] = { 39, baseMultiplier = 1.201, damageEffectiveness = 1.2, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 99, statInterpolation = { 1, }, cost = { Soul = 20, }, }, + [40] = { 39, baseMultiplier = 1.212, damageEffectiveness = 1.21, vaalStoredUses = 2, soulPreventionDuration = 5, levelRequirement = 100, statInterpolation = { 1, }, cost = { Soul = 20, }, }, }, } skills["Reave"] = { name = "Reave", color = 2, - description = "Attacks a small area in front of you. Each Reave that hits an enemy grants stages, which you will begin to lose after a short period without hitting anything. Only works with Daggers, Claws, and One-Handed Swords.", + description = "Attacks an area in front of you. Each Reave that hits an enemy grants stages, which you will begin to lose after a short period without hitting anything. Only works with Daggers, Claws, and One-Handed Swords.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, @@ -7734,20 +7311,12 @@ skills["Reave"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "skill_convert_%_physical_damage_to_random_element", 5 }, - }, - Alternate2 = { - { "bleed_on_hit_with_attacks_%", 1 }, - }, - Alternate3 = { { "reave_additional_max_stacks", 0.1 }, }, }, constantStats = { { "reave_area_of_effect_+%_final_per_stage", 50 }, + { "display_reave_base_maximum_stacks", 4 }, }, stats = { "active_skill_base_radius_+", @@ -7830,7 +7399,7 @@ skills["VaalReave"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, + { "reave_additional_max_stacks", 0.1 }, }, }, constantStats = { @@ -7918,13 +7487,7 @@ skills["Riposte"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate2 = { - { "base_onlsaught_on_hit_%_chance", 1 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -7984,7 +7547,7 @@ skills["ScourgeArrow"] = { name = "Scourge Arrow", color = 2, incrementalEffectiveness = 0.023299999535084, - description = "Channel to infuse an arrow with chaos, gaining stages while it is held. Release to fire it, leaving spore pods in its wake. Each spore pod blooms, firing thorn arrows, which travel for a short time before dissipating. Modifiers that cause additional projectiles to be fired will only apply to the initial arrows, and the spore pods will be split between those arrows.", + description = "Channel to infuse an arrow with chaos, gaining stages while it is held. Release to fire it, leaving spore pods in its wake. Each spore pod blooms, firing thorn arrows, which travel for a short time before dissipating. Modifiers that cause additional projectiles to be fired will only apply to the initial arrows, and the spore pods will be divided between those arrows.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Channel] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Bow"] = true, @@ -8021,16 +7584,7 @@ skills["ScourgeArrow"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "virulent_arrow_number_of_pod_projectiles", 0.05 }, - }, - Alternate2 = { - { "damage_+%", 1 }, - }, - Alternate3 = { - { "base_chance_to_poison_on_hit_%", 1 }, + { "virulent_arrow_number_of_pod_projectiles", 0.1 }, }, }, constantStats = { @@ -8047,6 +7601,7 @@ skills["ScourgeArrow"] = { "skill_can_fire_arrows", "base_arrows_always_pierce", "visual_hit_effect_chaos_is_green", + "quality_display_scourge_arrow_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.3, attackSpeedMultiplier = 90, baseMultiplier = 0.3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, @@ -8096,8 +7651,8 @@ skills["ShatteringSteel"] = { color = 2, baseEffectiveness = 0.52929997444153, incrementalEffectiveness = 0.034099999815226, - description = "Swing an Axe or Sword, consuming Steel Shards to gain a Steel Ward that protects you for a duration, and fire projectiles which shatter on impact or soon after being launched, dealing area damage in front of where they shatter. Steel Shards are gained with the Call of Steel Skill.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Steel] = true, }, + description = "Swing an Axe or Sword, firing projectiles which shatter on impact or soon after being launched, dealing area damage in front of where they shatter.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.ProjectilesFromUser] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -8137,85 +7692,71 @@ skills["ShatteringSteel"] = { }, qualityStats = { Default = { - { "impale_debuff_effect_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "number_of_additional_projectiles", 0.05 }, - }, - Alternate3 = { - { "base_projectile_speed_+%", 1.5 }, + { "impale_debuff_effect_+%", 2 }, }, }, constantStats = { { "attacks_impale_on_hit_%_chance", 40 }, - { "number_of_additional_projectiles", 2 }, + { "base_number_of_projectiles", 3 }, { "active_skill_projectile_speed_+%_variation_final", 100 }, - { "steel_ammo_consumed_per_use", 2 }, { "active_skill_additional_projectiles_fire_parallel_x_dist", 90 }, - { "additional_block_chance_against_projectiles_%_per_steel_charge", 4 }, - { "base_skill_effect_duration", 5000 }, }, stats = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", - "shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed", "base_is_projectile", - "no_additional_projectiles_if_no_steel_ammo", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 50, attackSpeedMultiplier = -15, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 50, damageEffectiveness = 1.03, attackSpeedMultiplier = -15, baseMultiplier = 1.031, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 55, damageEffectiveness = 1.06, attackSpeedMultiplier = -15, baseMultiplier = 1.062, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 60, damageEffectiveness = 1.09, attackSpeedMultiplier = -15, baseMultiplier = 1.093, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 60, damageEffectiveness = 1.12, attackSpeedMultiplier = -15, baseMultiplier = 1.124, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 65, damageEffectiveness = 1.16, attackSpeedMultiplier = -15, baseMultiplier = 1.155, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 70, damageEffectiveness = 1.19, attackSpeedMultiplier = -15, baseMultiplier = 1.186, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 70, damageEffectiveness = 1.22, attackSpeedMultiplier = -15, baseMultiplier = 1.217, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 75, damageEffectiveness = 1.25, attackSpeedMultiplier = -15, baseMultiplier = 1.248, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 80, damageEffectiveness = 1.28, attackSpeedMultiplier = -15, baseMultiplier = 1.279, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 80, damageEffectiveness = 1.31, attackSpeedMultiplier = -15, baseMultiplier = 1.311, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 85, damageEffectiveness = 1.34, attackSpeedMultiplier = -15, baseMultiplier = 1.342, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 90, damageEffectiveness = 1.37, attackSpeedMultiplier = -15, baseMultiplier = 1.373, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 90, damageEffectiveness = 1.4, attackSpeedMultiplier = -15, baseMultiplier = 1.404, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 95, damageEffectiveness = 1.43, attackSpeedMultiplier = -15, baseMultiplier = 1.435, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 100, damageEffectiveness = 1.47, attackSpeedMultiplier = -15, baseMultiplier = 1.466, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 100, damageEffectiveness = 1.5, attackSpeedMultiplier = -15, baseMultiplier = 1.497, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 105, damageEffectiveness = 1.53, attackSpeedMultiplier = -15, baseMultiplier = 1.528, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 110, damageEffectiveness = 1.56, attackSpeedMultiplier = -15, baseMultiplier = 1.559, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 110, damageEffectiveness = 1.59, attackSpeedMultiplier = -15, baseMultiplier = 1.59, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 115, damageEffectiveness = 1.62, attackSpeedMultiplier = -15, baseMultiplier = 1.621, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 120, damageEffectiveness = 1.65, attackSpeedMultiplier = -15, baseMultiplier = 1.652, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 120, damageEffectiveness = 1.68, attackSpeedMultiplier = -15, baseMultiplier = 1.683, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 125, damageEffectiveness = 1.71, attackSpeedMultiplier = -15, baseMultiplier = 1.714, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 130, damageEffectiveness = 1.75, attackSpeedMultiplier = -15, baseMultiplier = 1.745, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 130, damageEffectiveness = 1.78, attackSpeedMultiplier = -15, baseMultiplier = 1.776, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 135, damageEffectiveness = 1.81, attackSpeedMultiplier = -15, baseMultiplier = 1.807, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 140, damageEffectiveness = 1.84, attackSpeedMultiplier = -15, baseMultiplier = 1.838, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 140, damageEffectiveness = 1.87, attackSpeedMultiplier = -15, baseMultiplier = 1.869, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 145, damageEffectiveness = 1.9, attackSpeedMultiplier = -15, baseMultiplier = 1.901, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 150, damageEffectiveness = 1.92, attackSpeedMultiplier = -15, baseMultiplier = 1.916, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 150, damageEffectiveness = 1.93, attackSpeedMultiplier = -15, baseMultiplier = 1.932, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 155, damageEffectiveness = 1.95, attackSpeedMultiplier = -15, baseMultiplier = 1.947, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 160, damageEffectiveness = 1.96, attackSpeedMultiplier = -15, baseMultiplier = 1.963, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 160, damageEffectiveness = 1.98, attackSpeedMultiplier = -15, baseMultiplier = 1.978, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 165, damageEffectiveness = 1.99, attackSpeedMultiplier = -15, baseMultiplier = 1.994, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 170, damageEffectiveness = 2.01, attackSpeedMultiplier = -15, baseMultiplier = 2.009, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 170, damageEffectiveness = 2.02, attackSpeedMultiplier = -15, baseMultiplier = 2.025, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 175, damageEffectiveness = 2.04, attackSpeedMultiplier = -15, baseMultiplier = 2.04, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 180, damageEffectiveness = 2.06, attackSpeedMultiplier = -15, baseMultiplier = 2.056, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [1] = { 0.80000001192093, 1.2000000476837, attackSpeedMultiplier = -15, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.03, attackSpeedMultiplier = -15, baseMultiplier = 1.031, levelRequirement = 15, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.06, attackSpeedMultiplier = -15, baseMultiplier = 1.062, levelRequirement = 19, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.09, attackSpeedMultiplier = -15, baseMultiplier = 1.093, levelRequirement = 23, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.12, attackSpeedMultiplier = -15, baseMultiplier = 1.124, levelRequirement = 27, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.16, attackSpeedMultiplier = -15, baseMultiplier = 1.155, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.19, attackSpeedMultiplier = -15, baseMultiplier = 1.186, levelRequirement = 35, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [8] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.22, attackSpeedMultiplier = -15, baseMultiplier = 1.217, levelRequirement = 38, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [9] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.25, attackSpeedMultiplier = -15, baseMultiplier = 1.248, levelRequirement = 41, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [10] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.28, attackSpeedMultiplier = -15, baseMultiplier = 1.279, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [11] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.31, attackSpeedMultiplier = -15, baseMultiplier = 1.311, levelRequirement = 47, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [12] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.34, attackSpeedMultiplier = -15, baseMultiplier = 1.342, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.37, attackSpeedMultiplier = -15, baseMultiplier = 1.373, levelRequirement = 53, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [14] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.4, attackSpeedMultiplier = -15, baseMultiplier = 1.404, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [15] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.43, attackSpeedMultiplier = -15, baseMultiplier = 1.435, levelRequirement = 59, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [16] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.47, attackSpeedMultiplier = -15, baseMultiplier = 1.466, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [17] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, attackSpeedMultiplier = -15, baseMultiplier = 1.497, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [18] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.53, attackSpeedMultiplier = -15, baseMultiplier = 1.528, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [19] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.56, attackSpeedMultiplier = -15, baseMultiplier = 1.559, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [20] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.59, attackSpeedMultiplier = -15, baseMultiplier = 1.59, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [21] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.62, attackSpeedMultiplier = -15, baseMultiplier = 1.621, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.65, attackSpeedMultiplier = -15, baseMultiplier = 1.652, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.68, attackSpeedMultiplier = -15, baseMultiplier = 1.683, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [24] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.71, attackSpeedMultiplier = -15, baseMultiplier = 1.714, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [25] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.75, attackSpeedMultiplier = -15, baseMultiplier = 1.745, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [26] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.78, attackSpeedMultiplier = -15, baseMultiplier = 1.776, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [27] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.81, attackSpeedMultiplier = -15, baseMultiplier = 1.807, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [28] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.84, attackSpeedMultiplier = -15, baseMultiplier = 1.838, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [29] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.87, attackSpeedMultiplier = -15, baseMultiplier = 1.869, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [30] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.9, attackSpeedMultiplier = -15, baseMultiplier = 1.901, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [31] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.92, attackSpeedMultiplier = -15, baseMultiplier = 1.916, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [32] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.93, attackSpeedMultiplier = -15, baseMultiplier = 1.932, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [33] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.95, attackSpeedMultiplier = -15, baseMultiplier = 1.947, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [34] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.96, attackSpeedMultiplier = -15, baseMultiplier = 1.963, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [35] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.98, attackSpeedMultiplier = -15, baseMultiplier = 1.978, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [36] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.99, attackSpeedMultiplier = -15, baseMultiplier = 1.994, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [37] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 2.01, attackSpeedMultiplier = -15, baseMultiplier = 2.009, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [38] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 2.02, attackSpeedMultiplier = -15, baseMultiplier = 2.025, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [39] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 2.04, attackSpeedMultiplier = -15, baseMultiplier = 2.04, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [40] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 2.06, attackSpeedMultiplier = -15, baseMultiplier = 2.056, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, }, } skills["PhysCascadeTrap"] = { name = "Seismic Trap", color = 2, - baseEffectiveness = 1.296599984169, + baseEffectiveness = 1.3999999761581, incrementalEffectiveness = 0.044399999082088, - description = "Throws a trap which, once triggered, repeatedly releases a number of waves for a duration. Each wave deals damage in a series of small bursts in a line, ending with a larger burst. Modifiers to trap throwing speed affects how frequently it releases waves.", + description = "Throws a trap which, once triggered, repeatedly releases a number of waves for a duration. Each wave deals damage in a series of small bursts in a line, ending with a larger burst.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Trapped] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -8367,6 +7908,9 @@ skills["PhysCascadeTrap"] = { ["seismic_trap_frequency_+%"] = { mod("SeismicPulseFrequency", "INC", nil), }, + ["quality_display_phys_cascade_trap_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -8382,17 +7926,7 @@ skills["PhysCascadeTrap"] = { }, qualityStats = { Default = { - { "physical_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate3 = { - { "seismic_trap_frequency_+%", -3 }, - { "damage_+%", 5 }, + { "phys_cascade_trap_number_of_cascades", 0.05 }, }, }, constantStats = { @@ -8408,48 +7942,51 @@ skills["PhysCascadeTrap"] = { "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "quality_display_phys_cascade_trap_is_gem", + "quality_display_trap_duration_is_gem", + "modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.9, storedUses = 3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, cooldown = 8, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, }, } skills["ShrapnelBallista"] = { @@ -8482,22 +8019,13 @@ skills["ShrapnelBallista"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "number_of_chains", 0.1 }, - }, - Alternate2 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate3 = { - { "attack_speed_+%", 0.5 }, + { "base_projectile_speed_+%", 2 }, }, }, constantStats = { { "base_totem_range", 40 }, { "base_totem_duration", 8000 }, - { "base_number_of_additional_arrows", 2 }, + { "base_number_of_arrows", 3 }, }, stats = { "attack_minimum_added_physical_damage", @@ -8509,6 +8037,7 @@ skills["ShrapnelBallista"] = { "skill_can_fire_arrows", "projectiles_can_shotgun", "is_ranged_attack_totem", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, baseMultiplier = 0.38, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, @@ -8564,6 +8093,11 @@ skills["SiegeBallista"] = { statDescriptionScope = "skill_stat_descriptions", skillTotemId = 12, castTime = 1, + statMap = { + ["attack_speed_+%_per_maximum_totem"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "ActiveTotemLimit" }), + }, + }, baseFlags = { attack = true, projectile = true, @@ -8575,17 +8109,7 @@ skills["SiegeBallista"] = { }, qualityStats = { Default = { - { "projectile_damage_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.1 }, - { "attack_speed_+%", -1 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate3 = { - { "attacks_impale_on_hit_%_chance", 1 }, + { "attack_speed_+%_per_maximum_totem", 0.25 }, }, }, constantStats = { @@ -8655,9 +8179,6 @@ skills["SmokeMine"] = { ["base_movement_velocity_+%"] = { mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["skill_buff_grants_attack_and_cast_speed_+%"] = { - mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, baseFlags = { spell = true, @@ -8670,13 +8191,7 @@ skills["SmokeMine"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "skill_buff_grants_attack_and_cast_speed_+%", 0.5 }, + { "base_movement_velocity_+%", 1 }, }, }, constantStats = { @@ -8772,15 +8287,6 @@ skills["ThrownShield"] = { Default = { { "number_of_additional_projectiles", 0.1 }, }, - Alternate1 = { - { "damage_+%", 1 }, - }, - Alternate2 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate3 = { - { "critical_multiplier_+%_per_100_max_es_on_shield", 1 }, - }, }, constantStats = { { "number_of_additional_projectiles", 3 }, @@ -8862,24 +8368,12 @@ skills["ThrownWeapon"] = { attack = true, projectile = true, }, - statMap = { - ["projectile_damage_+%_if_pierced_enemy"] = { - mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), - }, - }, baseMods = { mod("PierceChance", "BASE", 100), }, qualityStats = { Default = { - { "projectile_damage_+%_if_pierced_enemy", 0.5 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", -0.5 }, - { "number_of_additional_projectiles", 0.05 }, + { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, }, }, constantStats = { @@ -8955,9 +8449,6 @@ skills["VaalThrownWeapon"] = { ["base_number_of_projectiles_in_spiral_nova"] = { mod("ProjectileCount", "BASE", nil), }, - ["projectile_damage_+%_if_pierced_enemy"] = { - mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), - }, }, baseFlags = { attack = true, @@ -8966,7 +8457,7 @@ skills["VaalThrownWeapon"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, }, }, constantStats = { @@ -9056,22 +8547,12 @@ skills["RainOfSpores"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_chaos", 1 }, - }, - Alternate3 = { - { "skill_buff_effect_+%", -1 }, - { "base_number_of_additional_arrows", 0.1 }, + { "base_skill_effect_duration", 10 }, }, }, constantStats = { { "base_skill_effect_duration", 1000 }, - { "base_number_of_additional_arrows", 4 }, + { "base_number_of_arrows", 5 }, { "skill_physical_damage_%_to_convert_to_chaos", 60 }, { "rain_of_spores_vines_movement_speed_+%_final", -5 }, { "minimum_rain_of_spores_movement_speed_+%_final_cap", -30 }, @@ -9084,6 +8565,7 @@ skills["RainOfSpores"] = { "cannot_pierce", "projectile_damage_modifiers_apply_to_skill_dot", "visual_hit_effect_chaos_is_green", + "quality_display_base_additional_arrows_is_gem", }, levels = { [1] = { 20.000001241763, damageEffectiveness = 0.5, baseMultiplier = 0.5, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 7, }, }, @@ -9152,9 +8634,6 @@ skills["SpectralHelix"] = { ["spectral_spiral_weapon_base_number_of_bounces"] = { mod("BounceCount", "BASE", nil), }, - ["projectile_damage_+%_if_pierced_enemy"] = { - mod("Damage", "MORE", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), - }, }, baseFlags = { attack = true, @@ -9167,13 +8646,7 @@ skills["SpectralHelix"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_if_pierced_enemy", 0.5 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "spectral_spiral_weapon_base_number_of_bounces", 0.1 }, + { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, }, }, constantStats = { @@ -9246,13 +8719,7 @@ skills["SplitArrow"] = { }, qualityStats = { Default = { - { "base_number_of_additional_arrows", 0.2 }, - }, - Alternate1 = { - { "base_number_of_additional_arrows", 0.2 }, - }, - Alternate2 = { - { "damage_+%", 1 }, + { "base_number_of_arrows", 0.2 }, }, }, constantStats = { @@ -9261,50 +8728,51 @@ skills["SplitArrow"] = { stats = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", - "base_number_of_additional_arrows", + "base_number_of_arrows", "skill_can_fire_arrows", + "quality_display_base_additional_arrows_is_gem", }, levels = { - [1] = { 0.60000002384186, 1.2000000476837, 4, attackSpeedMultiplier = 10, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 1.01, attackSpeedMultiplier = 10, baseMultiplier = 1.01, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 1.02, attackSpeedMultiplier = 10, baseMultiplier = 1.02, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.03, attackSpeedMultiplier = 10, baseMultiplier = 1.03, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.04, attackSpeedMultiplier = 10, baseMultiplier = 1.04, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.05, attackSpeedMultiplier = 10, baseMultiplier = 1.05, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.06, attackSpeedMultiplier = 10, baseMultiplier = 1.06, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.07, attackSpeedMultiplier = 10, baseMultiplier = 1.07, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.08, attackSpeedMultiplier = 10, baseMultiplier = 1.08, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.09, attackSpeedMultiplier = 10, baseMultiplier = 1.09, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.1, attackSpeedMultiplier = 10, baseMultiplier = 1.1, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.11, attackSpeedMultiplier = 10, baseMultiplier = 1.11, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.12, attackSpeedMultiplier = 10, baseMultiplier = 1.12, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.13, attackSpeedMultiplier = 10, baseMultiplier = 1.13, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.14, attackSpeedMultiplier = 10, baseMultiplier = 1.14, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.15, attackSpeedMultiplier = 10, baseMultiplier = 1.15, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.16, attackSpeedMultiplier = 10, baseMultiplier = 1.16, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.17, attackSpeedMultiplier = 10, baseMultiplier = 1.17, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.18, attackSpeedMultiplier = 10, baseMultiplier = 1.18, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.19, attackSpeedMultiplier = 10, baseMultiplier = 1.19, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.2, attackSpeedMultiplier = 10, baseMultiplier = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.21, attackSpeedMultiplier = 10, baseMultiplier = 1.21, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.22, attackSpeedMultiplier = 10, baseMultiplier = 1.22, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.23, attackSpeedMultiplier = 10, baseMultiplier = 1.23, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.24, attackSpeedMultiplier = 10, baseMultiplier = 1.24, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.25, attackSpeedMultiplier = 10, baseMultiplier = 1.25, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.26, attackSpeedMultiplier = 10, baseMultiplier = 1.26, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.27, attackSpeedMultiplier = 10, baseMultiplier = 1.27, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.28, attackSpeedMultiplier = 10, baseMultiplier = 1.28, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.29, attackSpeedMultiplier = 10, baseMultiplier = 1.29, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.3, attackSpeedMultiplier = 10, baseMultiplier = 1.295, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.3, attackSpeedMultiplier = 10, baseMultiplier = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.31, attackSpeedMultiplier = 10, baseMultiplier = 1.305, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.31, attackSpeedMultiplier = 10, baseMultiplier = 1.31, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.32, attackSpeedMultiplier = 10, baseMultiplier = 1.315, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.32, attackSpeedMultiplier = 10, baseMultiplier = 1.32, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.33, attackSpeedMultiplier = 10, baseMultiplier = 1.325, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.33, attackSpeedMultiplier = 10, baseMultiplier = 1.33, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.34, attackSpeedMultiplier = 10, baseMultiplier = 1.335, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.34, attackSpeedMultiplier = 10, baseMultiplier = 1.34, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [1] = { 0.60000002384186, 1.2000000476837, 5, attackSpeedMultiplier = 10, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.01, attackSpeedMultiplier = 10, baseMultiplier = 1.01, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 1.02, attackSpeedMultiplier = 10, baseMultiplier = 1.02, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.03, attackSpeedMultiplier = 10, baseMultiplier = 1.03, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.04, attackSpeedMultiplier = 10, baseMultiplier = 1.04, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.05, attackSpeedMultiplier = 10, baseMultiplier = 1.05, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.06, attackSpeedMultiplier = 10, baseMultiplier = 1.06, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.07, attackSpeedMultiplier = 10, baseMultiplier = 1.07, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.08, attackSpeedMultiplier = 10, baseMultiplier = 1.08, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.09, attackSpeedMultiplier = 10, baseMultiplier = 1.09, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 1.1, attackSpeedMultiplier = 10, baseMultiplier = 1.1, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.11, attackSpeedMultiplier = 10, baseMultiplier = 1.11, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.12, attackSpeedMultiplier = 10, baseMultiplier = 1.12, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.13, attackSpeedMultiplier = 10, baseMultiplier = 1.13, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.14, attackSpeedMultiplier = 10, baseMultiplier = 1.14, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.15, attackSpeedMultiplier = 10, baseMultiplier = 1.15, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.16, attackSpeedMultiplier = 10, baseMultiplier = 1.16, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.17, attackSpeedMultiplier = 10, baseMultiplier = 1.17, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.18, attackSpeedMultiplier = 10, baseMultiplier = 1.18, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 1.19, attackSpeedMultiplier = 10, baseMultiplier = 1.19, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.2, attackSpeedMultiplier = 10, baseMultiplier = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.21, attackSpeedMultiplier = 10, baseMultiplier = 1.21, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.22, attackSpeedMultiplier = 10, baseMultiplier = 1.22, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 1.23, attackSpeedMultiplier = 10, baseMultiplier = 1.23, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.24, attackSpeedMultiplier = 10, baseMultiplier = 1.24, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.25, attackSpeedMultiplier = 10, baseMultiplier = 1.25, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.26, attackSpeedMultiplier = 10, baseMultiplier = 1.26, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.27, attackSpeedMultiplier = 10, baseMultiplier = 1.27, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 1.28, attackSpeedMultiplier = 10, baseMultiplier = 1.28, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.29, attackSpeedMultiplier = 10, baseMultiplier = 1.29, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.3, attackSpeedMultiplier = 10, baseMultiplier = 1.295, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.3, attackSpeedMultiplier = 10, baseMultiplier = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.31, attackSpeedMultiplier = 10, baseMultiplier = 1.305, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.31, attackSpeedMultiplier = 10, baseMultiplier = 1.31, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.32, attackSpeedMultiplier = 10, baseMultiplier = 1.315, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.32, attackSpeedMultiplier = 10, baseMultiplier = 1.32, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 1.33, attackSpeedMultiplier = 10, baseMultiplier = 1.325, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 1.33, attackSpeedMultiplier = 10, baseMultiplier = 1.33, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 1.34, attackSpeedMultiplier = 10, baseMultiplier = 1.335, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 1.34, attackSpeedMultiplier = 10, baseMultiplier = 1.34, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, }, } skills["ImpactingSteel"] = { @@ -9312,8 +8780,8 @@ skills["ImpactingSteel"] = { color = 2, baseEffectiveness = 0.39730000495911, incrementalEffectiveness = 0.035399999469519, - description = "Consume a Steel Shard to fire a single projectile that splits on impact or at the targeted location, dealing area damage when it splits and again when the split projectiles explode at the end of their flight. Requires a Sword or Axe. Steel Shards are gained with the Call of Steel Skill.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Steel] = true, [SkillType.Area] = true, [SkillType.Physical] = true, }, + description = "Fire a single projectile that splits on impact or at the targeted location, dealing area damage when it splits and again when the split projectiles explode at the end of their flight. Requires a Sword or Axe.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SingleMainProjectile] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -9341,26 +8809,16 @@ skills["ImpactingSteel"] = { Default = { { "impale_debuff_effect_+%", 2 }, }, - Alternate1 = { - { "chance_to_inflict_additional_impale_%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.5 }, - { "base_projectile_speed_+%", 1 }, - }, - Alternate3 = { - { "attacks_impale_on_hit_%_chance", -2 }, - { "damage_+%", 2 }, - }, }, constantStats = { { "attacks_impale_on_hit_%_chance", 40 }, + { "active_skill_base_area_of_effect_radius", 6 }, }, stats = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", "projectile_number_to_split", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "modifiers_to_number_of_projectiles_instead_apply_to_splitting", "projectiles_can_split_at_end_of_range", "projectiles_can_split_from_terrain", @@ -9413,7 +8871,7 @@ skills["ImpactingSteel"] = { skills["SummonIceGolem"] = { name = "Summon Ice Golem", color = 2, - description = "Summons an Ice Golem that grants you increased Critical Strike Chance and Accuracy. The Ice Golem can use an icy barrage spell and a chilling spinning dash in addition to its melee attack.", + description = "Summons an Ice Golem that grants you increased Critical Strike Chance and Accuracy. The Ice Golem can use an icy barrage spell and a chilling spinning attack in addition to its melee attack.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Movement] = true, [SkillType.Multistrikeable] = true, [SkillType.ChillingArea] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -9443,12 +8901,6 @@ skills["SummonIceGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -9458,51 +8910,50 @@ skills["SummonIceGolem"] = { "base_actor_scale_+%", "ice_golem_grants_critical_strike_chance_+%", "ice_golem_grants_accuracy_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0, 20, 20, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 1, 21, 21, 2, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 1, 21, 21, 4, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 2, 22, 22, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 2, 22, 22, 8, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 3, 23, 23, 10, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 3, 23, 23, 12, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 4, 24, 24, 14, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 4, 24, 24, 16, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 5, 25, 25, 18, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 5, 25, 25, 20, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 6, 26, 26, 22, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 6, 26, 26, 24, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 7, 27, 27, 26, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 7, 27, 27, 28, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 8, 28, 28, 30, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 8, 28, 28, 32, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 9, 29, 29, 34, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 9, 29, 29, 36, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 10, 30, 30, 38, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 10, 30, 30, 40, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 11, 31, 31, 42, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 11, 31, 31, 44, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 12, 32, 32, 46, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 12, 32, 32, 48, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 13, 33, 33, 50, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 13, 33, 33, 52, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 14, 34, 34, 54, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 14, 34, 34, 56, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 15, 35, 35, 58, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 15, 35, 35, 59, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 15, 35, 35, 60, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 15, 35, 35, 61, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 16, 36, 36, 62, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 16, 36, 36, 63, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 16, 36, 36, 64, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 16, 36, 36, 65, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 17, 37, 37, 66, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 17, 37, 37, 67, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 17, 37, 37, 68, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0, 20, 20, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 1, 21, 21, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 1, 21, 21, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 2, 22, 22, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 2, 22, 22, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 3, 23, 23, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 3, 23, 23, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 4, 24, 24, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 4, 24, 24, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 5, 25, 25, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 5, 25, 25, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 6, 26, 26, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 6, 26, 26, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 7, 27, 27, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 7, 27, 27, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 8, 28, 28, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 8, 28, 28, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 9, 29, 29, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 9, 29, 29, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 10, 30, 30, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 10, 30, 30, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 11, 31, 31, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 11, 31, 31, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 12, 32, 32, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 12, 32, 32, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 13, 33, 33, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 13, 33, 33, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 14, 34, 34, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 14, 34, 34, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 15, 35, 35, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 15, 35, 35, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 15, 35, 35, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 15, 35, 35, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 16, 36, 36, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 16, 36, 36, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 16, 36, 36, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 16, 36, 36, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 17, 37, 37, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 17, 37, 37, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 17, 37, 37, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["TemporalChains"] = { @@ -9542,12 +8993,6 @@ skills["TemporalChains"] = { Default = { { "base_curse_duration_+%", 1 }, }, - Alternate1 = { - { "curse_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "curse_cast_speed_+%", 0.5 }, - }, }, constantStats = { { "buff_time_passed_+%_other_than_temporal_chains", -25 }, @@ -9619,13 +9064,7 @@ skills["TornadoShot"] = { }, qualityStats = { Default = { - { "projectile_damage_+%", 1 }, - }, - Alternate1 = { - { "skill_convert_%_physical_damage_to_random_element", 3 }, - }, - Alternate2 = { - { "attack_speed_+%", 0.5 }, + { "tornado_shot_num_of_secondary_projectiles", 0.05 }, }, }, constantStats = { @@ -9634,6 +9073,7 @@ skills["TornadoShot"] = { stats = { "base_is_projectile", "skill_can_fire_arrows", + "quality_display_tornado_shot_is_gem", }, levels = { [1] = { PvPDamageMultiplier = -30, levelRequirement = 28, cost = { Mana = 8, }, }, @@ -9702,16 +9142,7 @@ skills["BoneLance"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "physical_damage_+%", 1 }, - }, - Alternate2 = { - { "desecrate_maximum_number_of_corpses", 0.1 }, - }, - Alternate3 = { - { "maximum_life_+%_for_corpses_you_create", 1 }, + { "maximum_life_+%_for_corpses_you_create", 1.5 }, }, }, constantStats = { @@ -9795,13 +9226,7 @@ skills["SnappingAdder"] = { }, qualityStats = { Default = { - { "base_poison_duration_+%", 1 }, - }, - Alternate1 = { - { "active_skill_returning_projectile_damage_+%_final", 1 }, - }, - Alternate2 = { - { "number_of_chains", 0.05 }, + { "maximum_number_of_snapping_adder_projectiles", 0.5 }, }, }, constantStats = { @@ -9820,6 +9245,7 @@ skills["SnappingAdder"] = { "projectiles_return", "visual_hit_effect_chaos_is_green", "quality_display_active_skill_returning_damage_is_gem", + "quality_display_venom_gyre_is_gem", }, levels = { [1] = { damageEffectiveness = 1.25, attackSpeedMultiplier = 20, baseMultiplier = 1.25, levelRequirement = 12, cost = { Mana = 5, }, }, @@ -9981,17 +9407,7 @@ skills["ViperStrike"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - { "base_poison_duration_+%", 0.5 }, - }, - Alternate1 = { - { "skill_physical_damage_%_to_convert_to_chaos", 1 }, - }, - Alternate2 = { - { "chaos_damage_+%", 1 }, - }, - Alternate3 = { - { "chance_%_when_poison_to_also_poison_another_enemy", 0.5 }, + { "base_skill_effect_duration", 50 }, }, }, constantStats = { @@ -10086,22 +9502,20 @@ skills["VolatileDead"] = { }, baseMods = { skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }), - skill("radius", 15), + skill("radiusLabel", "Orb Explosion:"), + skill("radiusSecondaryLabel", "Corpse Explosion:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "fire_damage_+%", 1 }, - }, - Alternate2 = { - { "volatile_dead_core_movement_speed_+%", 1 }, + { "volatile_dead_core_movement_speed_+%", 2 }, }, }, constantStats = { { "volatile_dead_base_number_of_corpses_to_consume", 3 }, { "volatile_dead_max_cores_allowed", 60 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "active_skill_secondary_area_of_effect_description_mode", 1 }, }, stats = { "spell_minimum_base_fire_damage", @@ -10167,11 +9581,6 @@ skills["WhirlingBlades"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.6, - statMap = { - ["whirling_blades_evasion_rating_+%_while_moving"] = { - mod("Evasion", "INC", nil, 0, 0, { type = "Condition", var = "Moving" } ) - }, - }, baseFlags = { attack = true, melee = true, @@ -10180,12 +9589,6 @@ skills["WhirlingBlades"] = { Default = { { "attack_speed_+%", 0.5 }, }, - Alternate1 = { - { "damage_+%", 3 }, - }, - Alternate2 = { - { "whirling_blades_evasion_rating_+%_while_moving", 10 }, - }, }, constantStats = { { "additional_weapon_base_attack_time_ms", 600 }, @@ -10323,22 +9726,13 @@ skills["WildStrike"] = { }, qualityStats = { Default = { - { "elemental_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "number_of_additional_projectiles", 0.1 }, - }, - Alternate3 = { - { "chaining_range_+%", 1 }, + { "chance_to_freeze_shock_ignite_%", 1 }, }, }, constantStats = { { "elemental_strike_physical_damage_%_to_convert", 100 }, { "fixed_projectile_spread", 70 }, - { "number_of_additional_projectiles", 2 }, + { "base_number_of_projectiles", 3 }, }, stats = { "additional_beam_only_chains", @@ -10346,6 +9740,7 @@ skills["WildStrike"] = { "show_number_of_projectiles", "always_pierce", "console_skill_dont_chase", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 4, 0, damageEffectiveness = 1.6, baseMultiplier = 1.6, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, @@ -10402,6 +9797,9 @@ skills["Slither"] = { ["slither_wither_stacks"] = { flag("Condition:CanWither"), }, + ["quality_display_withering_step_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -10413,14 +9811,8 @@ skills["Slither"] = { }, qualityStats = { Default = { - { "elusive_effect_+%", 0.5 }, - }, - Alternate1 = { { "slither_wither_stacks", 0.1 }, }, - Alternate2 = { - { "withering_step_chance_to_not_remove_on_skill_use_%", 1 }, - }, }, constantStats = { { "active_skill_withered_base_duration_ms", 3000 }, @@ -10433,6 +9825,7 @@ skills["Slither"] = { "display_this_skill_cooldown_does_not_recover_during_buff", "display_removes_and_grants_elusive_when_used", "base_deal_no_damage", + "quality_display_withering_step_is_gem", }, levels = { [1] = { 0, 4, 0, storedUses = 1, levelRequirement = 10, cooldown = 3, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, @@ -10518,12 +9911,6 @@ skills["PoisonousConcoction"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "critical_strike_chance_+%", 1.5 }, - }, - Alternate2 = { { "withered_on_hit_for_2_seconds_%_chance", 1 }, }, }, @@ -10586,6 +9973,162 @@ skills["PoisonousConcoction"] = { [40] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, }, } +skills["ChannelledSnipe"] = { + name = "Snipe", + color = 2, + description = "Channel to charge up your bow, gaining stages. Release to trigger one supported bow skill for each stage gained. If there are no supported skills, but at least one stage was gained, this skill will fire its own arrow instead. Cannot be used by Totems.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.Physical] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + statMap = { + ["snipe_max_stacks"] = { + mod("Multiplier:SnipeStagesMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + ["quality_display_snipe_is_gem"] = { + -- Display only + }, + }, + baseFlags = { + attack = true, + projectile = true, + channelRelease = true, + }, + qualityStats = { + Default = { + { "snipe_max_stacks", 0.05 }, + }, + }, + constantStats = { + { "override_turn_duration_ms", 100 }, + { "snipe_max_stacks", 6 }, + }, + stats = { + "snipe_triggered_skill_ailment_damage_+%_final_per_stage", + "snipe_triggered_skill_hit_damage_+%_final_per_stage", + "skill_can_fire_arrows", + "is_snipe_default_projectile", + "is_snipe_default_projectile_2", + "quality_display_snipe_is_gem", + }, + levels = { + [1] = { 50, 70, attackSpeedMultiplier = 80, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [2] = { 51, 72, attackSpeedMultiplier = 80, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [3] = { 53, 74, attackSpeedMultiplier = 80, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [4] = { 54, 76, attackSpeedMultiplier = 80, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [5] = { 56, 78, attackSpeedMultiplier = 80, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [6] = { 58, 80, attackSpeedMultiplier = 80, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [7] = { 59, 82, attackSpeedMultiplier = 80, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [8] = { 61, 84, attackSpeedMultiplier = 80, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [9] = { 62, 86, attackSpeedMultiplier = 80, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [10] = { 64, 88, attackSpeedMultiplier = 80, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [11] = { 66, 90, attackSpeedMultiplier = 80, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [12] = { 67, 92, attackSpeedMultiplier = 80, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [13] = { 69, 94, attackSpeedMultiplier = 80, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [14] = { 70, 96, attackSpeedMultiplier = 80, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [15] = { 72, 98, attackSpeedMultiplier = 80, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [16] = { 74, 100, attackSpeedMultiplier = 80, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [17] = { 75, 102, attackSpeedMultiplier = 80, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [18] = { 77, 104, attackSpeedMultiplier = 80, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [19] = { 78, 106, attackSpeedMultiplier = 80, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [20] = { 80, 108, attackSpeedMultiplier = 80, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [21] = { 82, 110, attackSpeedMultiplier = 80, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [22] = { 83, 112, attackSpeedMultiplier = 80, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [23] = { 85, 114, attackSpeedMultiplier = 80, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [24] = { 86, 116, attackSpeedMultiplier = 80, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [25] = { 88, 118, attackSpeedMultiplier = 80, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [26] = { 90, 120, attackSpeedMultiplier = 80, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [27] = { 91, 122, attackSpeedMultiplier = 80, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [28] = { 93, 124, attackSpeedMultiplier = 80, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [29] = { 94, 126, attackSpeedMultiplier = 80, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [30] = { 96, 128, attackSpeedMultiplier = 80, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [31] = { 97, 129, attackSpeedMultiplier = 80, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [32] = { 98, 130, attackSpeedMultiplier = 80, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [33] = { 98, 131, attackSpeedMultiplier = 80, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [34] = { 99, 132, attackSpeedMultiplier = 80, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [35] = { 100, 133, attackSpeedMultiplier = 80, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [36] = { 101, 134, attackSpeedMultiplier = 80, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [37] = { 102, 135, attackSpeedMultiplier = 80, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [38] = { 102, 136, attackSpeedMultiplier = 80, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [39] = { 103, 137, attackSpeedMultiplier = 80, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [40] = { 104, 138, attackSpeedMultiplier = 80, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + }, +} +skills["ChannelledSnipeSupport"] = { + name = "Snipe", + description = "Supports bow attack skills. Cannot support channelled skills, instant skills, Vaal skills, or skills used by totems, traps, or mines.", + color = 2, + support = true, + requireSkillTypes = { SkillType.RangedAttack, SkillType.ThresholdJewelRangedAttack, SkillType.OR, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, + excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, }, + isTrigger = true, + ignoreMinionTypes = true, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "gem_stat_descriptions", + baseMods = { + flag("TriggeredBySnipe"), + }, + qualityStats = { + Default = { + { "dummy_stat_display_nothing", 0 }, + }, + }, + constantStats = { + { "snipe_triggered_skill_damage_+%_final", -40 }, + }, + stats = { + "snipe_triggered_skill_ailment_damage_+%_final_per_stage", + "snipe_triggered_skill_hit_damage_+%_final_per_stage", + "skill_triggered_by_snipe", + }, + levels = { + [1] = { 50, 70, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [2] = { 51, 72, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [3] = { 53, 74, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [4] = { 54, 76, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [5] = { 56, 78, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [6] = { 58, 80, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [7] = { 59, 82, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [8] = { 61, 84, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [9] = { 62, 86, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [10] = { 64, 88, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [11] = { 66, 90, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [12] = { 67, 92, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [13] = { 69, 94, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [14] = { 70, 96, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [15] = { 72, 98, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [16] = { 74, 100, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [17] = { 75, 102, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [18] = { 77, 104, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [19] = { 78, 106, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [20] = { 80, 108, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [21] = { 82, 110, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [22] = { 83, 112, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [23] = { 85, 114, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [24] = { 86, 116, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [25] = { 88, 118, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [26] = { 90, 120, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [27] = { 91, 122, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [28] = { 93, 124, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [29] = { 94, 126, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [30] = { 96, 128, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [31] = { 97, 129, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [32] = { 98, 130, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [33] = { 98, 131, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [34] = { 99, 132, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [35] = { 100, 133, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [36] = { 101, 134, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [37] = { 102, 135, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [38] = { 102, 136, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [39] = { 103, 137, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + [40] = { 104, 138, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, + }, +} skills["TemporalRift"] = { name = "Temporal Rift", color = 2, @@ -10594,9 +10137,6 @@ skills["TemporalRift"] = { statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0.25, statMap = { - ["chronomancer_buff_cooldown_speed_+%"] = { - mod("CooldownRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) - }, ["debuff_time_passed_+%"] = { mod("SelfDebuffExpirationRate", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) }, @@ -10606,14 +10146,7 @@ skills["TemporalRift"] = { }, qualityStats = { Default = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate1 = { - { "chronomancer_buff_cooldown_speed_+%", 0.25 }, - { "base_reservation_efficiency_+%", -0.5 }, - }, - Alternate2 = { - { "debuff_time_passed_+%", 0.5 }, + { "debuff_time_passed_+%", 1 }, }, }, stats = { @@ -10692,13 +10225,7 @@ skills["Tornado"] = { }, qualityStats = { Default = { - { "tornado_movement_speed_+%", 0.5 }, - }, - Alternate1 = { - { "tornado_only_primary_duration_+%", -2 }, - }, - Alternate2 = { - { "tornado_only_primary_duration_+%", 0.5 }, + { "tornado_movement_speed_+%", 1 }, }, }, constantStats = { @@ -10780,13 +10307,7 @@ skills["IntuitiveLink"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "base_mana_cost_-%", 0.25 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, + { "base_skill_effect_duration", 75 }, }, }, stats = { @@ -10860,12 +10381,6 @@ skills["SupportIntuitiveLink"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "triggered_skill_damage_+%", 1 }, - }, }, stats = { "support_trigger_link_damage_+%_final", @@ -10930,9 +10445,6 @@ skills["VampiricLink"] = { mod("MaxLifeLeechRate", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), div = 60, }, - ["remora_link_grants_damage_+%_when_on_full_life"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "FullLife" }) - }, }, baseFlags = { spell = true, @@ -10940,13 +10452,7 @@ skills["VampiricLink"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "skill_buff_effect_+%", 0.5 }, - }, - Alternate2 = { - { "remora_link_grants_damage_+%_when_on_full_life", 1 }, + { "base_skill_effect_duration", 75 }, }, }, stats = { @@ -10999,171 +10505,6 @@ skills["VampiricLink"] = { [40] = { 528, 11450, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2850, }, }, }, } -skills["ChannelledSnipe"] = { - name = "Snipe", - color = 2, - description = "Channel to charge up your bow, gaining stages. Release to trigger one supported bow skill for each stage gained. If there are no supported skills, but at least one stage was gained, this skill will fire its own arrow instead. Cannot be used by Totems.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Channel] = true, [SkillType.Physical] = true, }, - weaponTypes = { - ["Bow"] = true, - }, - statDescriptionScope = "skill_stat_descriptions", - castTime = 1, - statMap = { - ["snipe_max_stacks"] = { - mod("Multiplier:SnipeStagesMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - }, - baseFlags = { - attack = true, - projectile = true, - channelRelease = true, - }, - qualityStats = { - Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, - }, - constantStats = { - { "override_turn_duration_ms", 100 }, - { "snipe_max_stacks", 6 }, - }, - stats = { - "snipe_triggered_skill_ailment_damage_+%_final_per_stage", - "snipe_triggered_skill_hit_damage_+%_final_per_stage", - "skill_can_fire_arrows", - "is_snipe_default_projectile", - "is_snipe_default_projectile_2", - }, - levels = { - [1] = { 50, 70, attackSpeedMultiplier = 80, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [2] = { 51, 72, attackSpeedMultiplier = 80, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [3] = { 53, 74, attackSpeedMultiplier = 80, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [4] = { 54, 76, attackSpeedMultiplier = 80, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [5] = { 56, 78, attackSpeedMultiplier = 80, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [6] = { 58, 80, attackSpeedMultiplier = 80, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [7] = { 59, 82, attackSpeedMultiplier = 80, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [8] = { 61, 84, attackSpeedMultiplier = 80, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [9] = { 62, 86, attackSpeedMultiplier = 80, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [10] = { 64, 88, attackSpeedMultiplier = 80, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [11] = { 66, 90, attackSpeedMultiplier = 80, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [12] = { 67, 92, attackSpeedMultiplier = 80, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [13] = { 69, 94, attackSpeedMultiplier = 80, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [14] = { 70, 96, attackSpeedMultiplier = 80, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [15] = { 72, 98, attackSpeedMultiplier = 80, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [16] = { 74, 100, attackSpeedMultiplier = 80, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [17] = { 75, 102, attackSpeedMultiplier = 80, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [18] = { 77, 104, attackSpeedMultiplier = 80, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [19] = { 78, 106, attackSpeedMultiplier = 80, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [20] = { 80, 108, attackSpeedMultiplier = 80, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [21] = { 82, 110, attackSpeedMultiplier = 80, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [22] = { 83, 112, attackSpeedMultiplier = 80, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [23] = { 85, 114, attackSpeedMultiplier = 80, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [24] = { 86, 116, attackSpeedMultiplier = 80, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [25] = { 88, 118, attackSpeedMultiplier = 80, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [26] = { 90, 120, attackSpeedMultiplier = 80, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [27] = { 91, 122, attackSpeedMultiplier = 80, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [28] = { 93, 124, attackSpeedMultiplier = 80, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [29] = { 94, 126, attackSpeedMultiplier = 80, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [30] = { 96, 128, attackSpeedMultiplier = 80, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [31] = { 97, 129, attackSpeedMultiplier = 80, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [32] = { 98, 130, attackSpeedMultiplier = 80, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [33] = { 98, 131, attackSpeedMultiplier = 80, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [34] = { 99, 132, attackSpeedMultiplier = 80, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [35] = { 100, 133, attackSpeedMultiplier = 80, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [36] = { 101, 134, attackSpeedMultiplier = 80, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [37] = { 102, 135, attackSpeedMultiplier = 80, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [38] = { 102, 136, attackSpeedMultiplier = 80, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [39] = { 103, 137, attackSpeedMultiplier = 80, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [40] = { 104, 138, attackSpeedMultiplier = 80, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - }, -} -skills["ChannelledSnipeSupport"] = { - name = "Snipe", - description = "Supports bow attack skills. Cannot support channelled skills, instant skills, Vaal skills, or skills used by totems, traps, or mines.", - color = 2, - support = true, - requireSkillTypes = { SkillType.RangedAttack, SkillType.ThresholdJewelRangedAttack, SkillType.OR, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, }, - isTrigger = true, - ignoreMinionTypes = true, - weaponTypes = { - ["Bow"] = true, - }, - statDescriptionScope = "gem_stat_descriptions", - baseMods = { - flag("TriggeredBySnipe"), - }, - qualityStats = { - Default = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate1 = { - { "snipe_triggered_skill_ailment_damage_+%_final_per_stage", -1 }, - { "snipe_triggered_skill_hit_damage_+%_final_per_stage", 0.5 }, - }, - Alternate2 = { - { "base_stun_duration_+%", 1 }, - }, - }, - constantStats = { - { "snipe_triggered_skill_damage_+%_final", -40 }, - }, - stats = { - "snipe_triggered_skill_ailment_damage_+%_final_per_stage", - "snipe_triggered_skill_hit_damage_+%_final_per_stage", - "skill_triggered_by_snipe", - }, - levels = { - [1] = { 50, 70, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [2] = { 51, 72, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [3] = { 53, 74, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [4] = { 54, 76, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [5] = { 56, 78, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [6] = { 58, 80, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [7] = { 59, 82, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [8] = { 61, 84, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [9] = { 62, 86, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [10] = { 64, 88, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [11] = { 66, 90, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [12] = { 67, 92, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [13] = { 69, 94, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [14] = { 70, 96, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [15] = { 72, 98, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [16] = { 74, 100, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [17] = { 75, 102, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [18] = { 77, 104, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [19] = { 78, 106, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [20] = { 80, 108, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [21] = { 82, 110, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [22] = { 83, 112, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [23] = { 85, 114, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [24] = { 86, 116, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [25] = { 88, 118, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [26] = { 90, 120, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [27] = { 91, 122, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [28] = { 93, 124, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [29] = { 94, 126, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [30] = { 96, 128, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [31] = { 97, 129, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [32] = { 98, 130, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [33] = { 98, 131, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [34] = { 99, 132, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [35] = { 100, 133, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [36] = { 101, 134, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [37] = { 102, 135, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [38] = { 102, 136, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [39] = { 103, 137, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - [40] = { 104, 138, storedUses = 1, cooldown = 0.05, levelRequirement = 0, manaMultiplier = -50, statInterpolation = { 1, 1, }, }, - }, -} skills["QuickstepHardMode"] = { name = "Quickstep", color = 4, diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index ab0b4333ff..374bdb2ece 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -11,7 +11,7 @@ skills["Arc"] = { color = 3, baseEffectiveness = 1.584900021553, incrementalEffectiveness = 0.039500001817942, - description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", + description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.7, @@ -41,46 +41,46 @@ skills["Arc"] = { "disable_visual_hit_effect", }, levels = { - [1] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.30000001192093, 1.7000000476837, 4, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.30000001192093, 1.7000000476837, 5, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.30000001192093, 1.7000000476837, 6, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.30000001192093, 1.7000000476837, 7, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.30000001192093, 1.7000000476837, 8, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.30000001192093, 1.7000000476837, 9, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.30000001192093, 1.7000000476837, 10, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.30000001192093, 1.7000000476837, 11, damageEffectiveness = 1.2, PvPDamageMultiplier = -25, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["VaalArcChain"] = { @@ -88,7 +88,7 @@ skills["VaalArcChain"] = { color = 3, baseEffectiveness = 4.5599999427795, incrementalEffectiveness = 0.032999999821186, - description = "A shocking arc of lightning stretches from the caster to a targeted enemy and chains to other nearby enemies. Each time the beam chains it will also chain simultaneously to a second enemy, but no enemy can be hit twice by the beams. Also grants a buff making you lucky when damaging enemies with Arc for a short duration.", + description = "A shocking arc of lightning reaches from the caster to a targeted enemy and chains to other enemies. Each time the arc chains from an enemy, it will do so simultaneously to two further enemies, but never to enemies that have already been hit by any of these chains. Also grants a buff making your Arc damage lucky for a short duration.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Vaal] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, @@ -125,46 +125,46 @@ skills["VaalArcChain"] = { "disable_visual_hit_effect", }, levels = { - [1] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [2] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [3] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [4] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [5] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [6] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [7] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [8] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [9] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [10] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [11] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [12] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [13] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [14] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [15] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [16] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [17] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [18] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [19] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [20] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [21] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [22] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [23] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [24] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [25] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [26] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [27] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [28] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [29] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [30] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [31] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [32] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [33] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [34] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [35] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [36] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [37] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [38] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [39] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, - [40] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 1.8, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [1] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [2] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [3] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [4] = { 0.75, 1.25, 5, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [5] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [6] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [7] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [8] = { 0.75, 1.25, 6, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [9] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [10] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [11] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [12] = { 0.75, 1.25, 7, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [13] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [14] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [15] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [16] = { 0.75, 1.25, 8, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [17] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [18] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [19] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [20] = { 0.75, 1.25, 9, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [21] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [22] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [23] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [24] = { 0.75, 1.25, 10, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [25] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [26] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [27] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [28] = { 0.75, 1.25, 11, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [29] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [30] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [31] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [32] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [33] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [34] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [35] = { 0.75, 1.25, 12, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [36] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [37] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [38] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [39] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, + [40] = { 0.75, 1.25, 13, critChance = 6, PvPDamageMultiplier = -25, damageEffectiveness = 2.2, vaalStoredUses = 1, soulPreventionDuration = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 25, }, }, }, } skills["ArcaneCloak"] = { @@ -196,13 +196,7 @@ skills["ArcaneCloak"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "damage_taken_goes_to_mana_%", 0.25 }, - }, - Alternate2 = { - { "skill_buff_effect_+%", 0.5 }, + { "skill_buff_effect_+%", 1 }, }, }, constantStats = { @@ -258,6 +252,167 @@ skills["ArcaneCloak"] = { [40] = { 79, 18, storedUses = 1, levelRequirement = 100, cooldown = 4, statInterpolation = { 1, 1, }, }, }, } +skills["BrandSupport"] = { + name = "Arcanist Brand", + color = 3, + description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, triggering linked spells. The brand will detach if the enemy dies.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Multicastable] = true, [SkillType.Brand] = true, }, + statDescriptionScope = "brand_skill_stat_descriptions", + castTime = 0.8, + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "Speed", "BrandActivationFrequency") / 100) / activeSkill.skillModList:More(activeSkill.skillCfg, "BrandActivationFrequency") + end, + baseFlags = { + spell = true, + duration = true, + brand = true, + }, + qualityStats = { + Default = { + { "sigil_repeat_frequency_+%", 0.5 }, + }, + }, + constantStats = { + { "base_number_of_sigils_allowed_per_target", 1 }, + { "base_sigil_repeat_frequency_ms", 1000 }, + { "base_secondary_skill_effect_duration", 5000 }, + { "base_skill_effect_duration", 3000 }, + }, + stats = { + "additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency", + "base_deal_no_damage", + }, + levels = { + [1] = { levelRequirement = 38, cost = { Mana = 18, }, }, + [2] = { levelRequirement = 40, cost = { Mana = 18, }, }, + [3] = { levelRequirement = 42, cost = { Mana = 19, }, }, + [4] = { levelRequirement = 44, cost = { Mana = 20, }, }, + [5] = { levelRequirement = 46, cost = { Mana = 22, }, }, + [6] = { levelRequirement = 48, cost = { Mana = 23, }, }, + [7] = { levelRequirement = 50, cost = { Mana = 23, }, }, + [8] = { levelRequirement = 52, cost = { Mana = 24, }, }, + [9] = { levelRequirement = 54, cost = { Mana = 25, }, }, + [10] = { levelRequirement = 56, cost = { Mana = 25, }, }, + [11] = { levelRequirement = 58, cost = { Mana = 26, }, }, + [12] = { levelRequirement = 60, cost = { Mana = 26, }, }, + [13] = { levelRequirement = 62, cost = { Mana = 28, }, }, + [14] = { levelRequirement = 64, cost = { Mana = 29, }, }, + [15] = { levelRequirement = 65, cost = { Mana = 29, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 30, }, }, + [17] = { levelRequirement = 67, cost = { Mana = 30, }, }, + [18] = { levelRequirement = 68, cost = { Mana = 31, }, }, + [19] = { levelRequirement = 69, cost = { Mana = 32, }, }, + [20] = { levelRequirement = 70, cost = { Mana = 32, }, }, + [21] = { levelRequirement = 72, cost = { Mana = 34, }, }, + [22] = { levelRequirement = 74, cost = { Mana = 34, }, }, + [23] = { levelRequirement = 76, cost = { Mana = 35, }, }, + [24] = { levelRequirement = 78, cost = { Mana = 36, }, }, + [25] = { levelRequirement = 80, cost = { Mana = 36, }, }, + [26] = { levelRequirement = 82, cost = { Mana = 37, }, }, + [27] = { levelRequirement = 84, cost = { Mana = 37, }, }, + [28] = { levelRequirement = 86, cost = { Mana = 38, }, }, + [29] = { levelRequirement = 88, cost = { Mana = 38, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 40, }, }, + [31] = { levelRequirement = 91, cost = { Mana = 40, }, }, + [32] = { levelRequirement = 92, cost = { Mana = 41, }, }, + [33] = { levelRequirement = 93, cost = { Mana = 41, }, }, + [34] = { levelRequirement = 94, cost = { Mana = 41, }, }, + [35] = { levelRequirement = 95, cost = { Mana = 42, }, }, + [36] = { levelRequirement = 96, cost = { Mana = 42, }, }, + [37] = { levelRequirement = 97, cost = { Mana = 42, }, }, + [38] = { levelRequirement = 98, cost = { Mana = 42, }, }, + [39] = { levelRequirement = 99, cost = { Mana = 43, }, }, + [40] = { levelRequirement = 100, cost = { Mana = 43, }, }, + }, +} +skills["SupportBrandSupport"] = { + name = "Arcanist Brand", + description = "Supports spell skills that have no reservation. Cannot support skills used by totems, traps or mines. Cannot modify the skills of minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Triggerable, SkillType.Spell, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.InbuiltTrigger, }, + isTrigger = true, + ignoreMinionTypes = true, + statDescriptionScope = "gem_stat_descriptions", + addFlags = { + brand = true, + }, + statMap = { + ["support_brand_damage_+%_final"] = { + mod("TriggeredDamage", "MORE", nil), + }, + ["support_brand_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"] = { + mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "Condition", var = "TargetingBrandedEnemy"}), + }, + }, + addSkillTypes = { SkillType.Brand, }, + baseMods = { + skill("triggeredByBrand", true), + }, + qualityStats = { + Default = { + { "dummy_stat_display_nothing", 0 }, + }, + }, + constantStats = { + { "support_brand_area_of_effect_+%_final", -40 }, + { "chaining_range_+%", -40 }, + { "projectile_maximum_range_override", 48 }, + }, + stats = { + "support_brand_damage_+%_final", + "trigger_brand_support_hit_damage_+%_final_vs_branded_enemy", + "triggered_by_brand_support", + "projectiles_not_offset", + }, + levels = { + [1] = { -69, 40, PvPDamageMultiplier = -70, levelRequirement = 38, statInterpolation = { 1, 1, }, }, + [2] = { -69, 41, PvPDamageMultiplier = -70, levelRequirement = 40, statInterpolation = { 1, 1, }, }, + [3] = { -69, 42, PvPDamageMultiplier = -70, levelRequirement = 42, statInterpolation = { 1, 1, }, }, + [4] = { -68, 43, PvPDamageMultiplier = -70, levelRequirement = 44, statInterpolation = { 1, 1, }, }, + [5] = { -68, 44, PvPDamageMultiplier = -70, levelRequirement = 46, statInterpolation = { 1, 1, }, }, + [6] = { -68, 45, PvPDamageMultiplier = -70, levelRequirement = 48, statInterpolation = { 1, 1, }, }, + [7] = { -67, 46, PvPDamageMultiplier = -70, levelRequirement = 50, statInterpolation = { 1, 1, }, }, + [8] = { -67, 47, PvPDamageMultiplier = -70, levelRequirement = 52, statInterpolation = { 1, 1, }, }, + [9] = { -67, 48, PvPDamageMultiplier = -70, levelRequirement = 54, statInterpolation = { 1, 1, }, }, + [10] = { -66, 49, PvPDamageMultiplier = -70, levelRequirement = 56, statInterpolation = { 1, 1, }, }, + [11] = { -66, 50, PvPDamageMultiplier = -70, levelRequirement = 58, statInterpolation = { 1, 1, }, }, + [12] = { -66, 51, PvPDamageMultiplier = -70, levelRequirement = 60, statInterpolation = { 1, 1, }, }, + [13] = { -65, 52, PvPDamageMultiplier = -70, levelRequirement = 62, statInterpolation = { 1, 1, }, }, + [14] = { -65, 53, PvPDamageMultiplier = -70, levelRequirement = 64, statInterpolation = { 1, 1, }, }, + [15] = { -65, 54, PvPDamageMultiplier = -70, levelRequirement = 65, statInterpolation = { 1, 1, }, }, + [16] = { -64, 55, PvPDamageMultiplier = -70, levelRequirement = 66, statInterpolation = { 1, 1, }, }, + [17] = { -64, 56, PvPDamageMultiplier = -70, levelRequirement = 67, statInterpolation = { 1, 1, }, }, + [18] = { -64, 57, PvPDamageMultiplier = -70, levelRequirement = 68, statInterpolation = { 1, 1, }, }, + [19] = { -63, 58, PvPDamageMultiplier = -70, levelRequirement = 69, statInterpolation = { 1, 1, }, }, + [20] = { -63, 59, PvPDamageMultiplier = -70, levelRequirement = 70, statInterpolation = { 1, 1, }, }, + [21] = { -63, 60, PvPDamageMultiplier = -70, levelRequirement = 72, statInterpolation = { 1, 1, }, }, + [22] = { -62, 61, PvPDamageMultiplier = -70, levelRequirement = 74, statInterpolation = { 1, 1, }, }, + [23] = { -62, 62, PvPDamageMultiplier = -70, levelRequirement = 76, statInterpolation = { 1, 1, }, }, + [24] = { -62, 63, PvPDamageMultiplier = -70, levelRequirement = 78, statInterpolation = { 1, 1, }, }, + [25] = { -61, 64, PvPDamageMultiplier = -70, levelRequirement = 80, statInterpolation = { 1, 1, }, }, + [26] = { -61, 65, PvPDamageMultiplier = -70, levelRequirement = 82, statInterpolation = { 1, 1, }, }, + [27] = { -61, 66, PvPDamageMultiplier = -70, levelRequirement = 84, statInterpolation = { 1, 1, }, }, + [28] = { -60, 67, PvPDamageMultiplier = -70, levelRequirement = 86, statInterpolation = { 1, 1, }, }, + [29] = { -60, 68, PvPDamageMultiplier = -70, levelRequirement = 88, statInterpolation = { 1, 1, }, }, + [30] = { -60, 69, PvPDamageMultiplier = -70, levelRequirement = 90, statInterpolation = { 1, 1, }, }, + [31] = { -59, 69, PvPDamageMultiplier = -70, levelRequirement = 91, statInterpolation = { 1, 1, }, }, + [32] = { -59, 70, PvPDamageMultiplier = -70, levelRequirement = 92, statInterpolation = { 1, 1, }, }, + [33] = { -59, 70, PvPDamageMultiplier = -70, levelRequirement = 93, statInterpolation = { 1, 1, }, }, + [34] = { -58, 71, PvPDamageMultiplier = -70, levelRequirement = 94, statInterpolation = { 1, 1, }, }, + [35] = { -58, 71, PvPDamageMultiplier = -70, levelRequirement = 95, statInterpolation = { 1, 1, }, }, + [36] = { -58, 72, PvPDamageMultiplier = -70, levelRequirement = 96, statInterpolation = { 1, 1, }, }, + [37] = { -57, 72, PvPDamageMultiplier = -70, levelRequirement = 97, statInterpolation = { 1, 1, }, }, + [38] = { -57, 73, PvPDamageMultiplier = -70, levelRequirement = 98, statInterpolation = { 1, 1, }, }, + [39] = { -57, 73, PvPDamageMultiplier = -70, levelRequirement = 99, statInterpolation = { 1, 1, }, }, + [40] = { -56, 74, PvPDamageMultiplier = -70, levelRequirement = 100, statInterpolation = { 1, 1, }, }, + }, +} skills["ArcticBreath"] = { name = "Creeping Frost", color = 3, @@ -274,21 +429,13 @@ skills["ArcticBreath"] = { duration = true, }, baseMods = { - skill("radius", 12), skill("dotIsArea", true), + skill("radiusLabel", "Projectile Impact:"), + skill("radiusSecondaryLabel", "DoT Area:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "number_of_additional_projectiles", 0.05 }, - }, - Alternate3 = { - { "chilling_area_movement_velocity_+%", 2 }, + { "active_skill_base_radius_+", 0.1 }, }, }, constantStats = { @@ -296,6 +443,8 @@ skills["ArcticBreath"] = { { "total_projectile_spread_angle_override", 200 }, { "active_skill_projectile_speed_+%_variation_final", 60 }, { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_secondary_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_cold_damage", @@ -370,21 +519,15 @@ skills["CataclysmSigil"] = { brand = true, }, baseMods = { - skill("radius", 22), skill("radiusSecondary", 8), }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "chance_to_deal_double_damage_%", 0.25 }, - }, - Alternate2 = { - { "armageddon_brand_brands_attach_to_new_enemy_each_activation_%_chance", 1 }, + { "sigil_attached_target_hit_damage_+%_final", 0.5 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 22 }, { "base_number_of_sigils_allowed_per_target", 1 }, { "base_sigil_repeat_frequency_ms", 1500 }, { "base_secondary_skill_effect_duration", 6000 }, @@ -399,6 +542,7 @@ skills["CataclysmSigil"] = { "base_skill_show_average_damage_instead_of_dps", "skill_can_add_multiple_charges_per_action", "console_skill_dont_chase", + "quality_display_sigil_attached_target_damage_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 2, PvPDamageMultiplier = -60, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, @@ -465,9 +609,6 @@ skills["AssassinsMark"] = { ["mana_granted_when_killed"] = { mod("SelfManaOnKill", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, }, baseFlags = { spell = true, @@ -482,12 +623,6 @@ skills["AssassinsMark"] = { Default = { { "grant_attacker_power_charge_when_hit_%_chance", 0.25 }, }, - Alternate1 = { - { "base_damage_taken_+%", 0.2 }, - }, - Alternate2 = { - { "enemy_additional_critical_strike_chance_against_self", 1 }, - }, }, constantStats = { { "enemy_additional_critical_strike_chance_against_self", 150 }, @@ -547,7 +682,7 @@ skills["BallLightning"] = { color = 3, baseEffectiveness = 0.56800001859665, incrementalEffectiveness = 0.044300001114607, - description = "Fires a slow-moving projectile that periodically damages enemies in an area around it with bolts of lightning.", + description = "Fires a slow-moving projectile that damages each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, @@ -716,7 +851,6 @@ skills["BallLightning"] = { projectile = true, }, baseMods = { - skill("radius", 18), skill("strikeInterval", 0.15), skill("projectileSpeed", 40), skill("duration", 2), @@ -724,17 +858,12 @@ skills["BallLightning"] = { }, qualityStats = { Default = { - { "active_skill_base_radius_+", 0.1 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "ball_lightning_superball_%_chance", 0.5 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { { "ball_lightning_projectile_speed_and_hit_frequency_+%_final", 33 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -828,27 +957,21 @@ skills["DarkRitual"] = { }, baseMods = { skill("debuff", true), - skill("radius", 21), }, qualityStats = { Default = { - { "display_linked_curse_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "bane_enemies_explode_on_death_%_chance", 0.5 }, + { "display_linked_curse_effect_+%", 1 }, }, }, constantStats = { { "display_linked_curse_effect_+%_final", -25 }, { "dark_ritual_skill_effect_duration_+%_per_curse_applied", 50 }, { "base_skill_effect_duration", 2000 }, + { "active_skill_base_area_of_effect_radius", 21 }, }, stats = { "base_chaos_damage_to_deal_per_minute", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "dark_ritual_damage_+%_final_per_curse_applied", "display_dark_ritual_curse_max_skill_level_requirement", "spell_damage_modifiers_apply_to_skill_dot", @@ -915,13 +1038,7 @@ skills["SupportDarkRitual"] = { }, qualityStats = { Default = { - { "curse_effect_+%", 0.5 }, - }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, + { "curse_effect_+%", 1 }, }, }, constantStats = { @@ -1011,62 +1128,57 @@ skills["Ember"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 2 }, - }, - Alternate2 = { - { "fire_damage_%_to_add_as_chaos", 0.25 }, + { "active_skill_base_radius_+", 0.1 }, }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "number_of_additional_projectiles", + "base_number_of_projectiles", "base_is_projectile", - }, - levels = { - [1] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + "quality_display_base_number_of_projectiles_is_gem", + }, + levels = { + [1] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["Blight"] = { @@ -1105,13 +1217,7 @@ skills["Blight"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "chaos_damage_+%", 1 }, - }, - Alternate2 = { - { "secondary_skill_effect_duration_+%", 3 }, + { "base_skill_effect_duration", 40 }, }, }, constantStats = { @@ -1195,7 +1301,7 @@ skills["VaalBlight"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "base_skill_effect_duration", 40 }, }, }, constantStats = { @@ -1309,16 +1415,7 @@ skills["CorpseWarp"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "burn_damage_+%", 5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate3 = { - { "bodyswap_damage_+%_when_not_consuming_corpse", 2 }, + { "spell_base_fire_damage_%_maximum_life", 0.2 }, }, }, constantStats = { @@ -1383,18 +1480,12 @@ skills["BoneOffering"] = { statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, statMap = { - ["cast_speed_+%_granted_from_skill"] = { - mod("Speed", "INC", nil, ModFlag.Cast, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["monster_base_block_%"] = { mod("BlockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, ["base_spell_block_%"] = { mod("SpellBlockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["minion_recover_X_life_on_block"] = { - mod("LifeOnBlock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, baseFlags = { spell = true, @@ -1406,15 +1497,7 @@ skills["BoneOffering"] = { }, qualityStats = { Default = { - { "cast_speed_+%_granted_from_skill", 0.5 }, - }, - Alternate1 = { - { "active_skill_quality_duration_+%_final", -2 }, - { "minion_recover_X_life_on_block", 5 }, - }, - Alternate2 = { - { "monster_base_block_%", 0.1 }, - { "base_spell_block_%", 0.1 }, + { "offering_spells_effect_+%", 0.5 }, }, }, constantStats = { @@ -1487,9 +1570,6 @@ skills["SigilRecall"] = { }, qualityStats = { Default = { - { "recall_sigil_target_search_range_+%", 1 }, - }, - Alternate1 = { { "base_cooldown_speed_+%", 1 }, }, }, @@ -1542,12 +1622,6 @@ skills["Clarity"] = { mod("ManaRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), div = 60, }, - ["damage_+%_on_full_mana"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "FullMana" }, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["flask_mana_to_recover_+%"] = { - mod("FlaskManaRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -1561,12 +1635,6 @@ skills["Clarity"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "flask_mana_to_recover_+%", 0.25 }, - }, - Alternate2 = { - { "damage_+%_on_full_mana", 0.25 }, - }, }, stats = { "base_mana_regeneration_rate_per_minute", @@ -1700,7 +1768,7 @@ skills["ColdSnap"] = { color = 3, baseEffectiveness = 2.2339000701904, incrementalEffectiveness = 0.049499999731779, - description = "Creates a sudden burst of cold in a targeted area, damaging enemies. This also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", + description = "Creates a sudden burst of cold in a targeted area, damaging enemies. Also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, @@ -1710,21 +1778,23 @@ skills["ColdSnap"] = { }, baseMods = { skill("showAverage", false), - skill("radius", 16), skill("dotIsArea", true), + skill("radiusLabel", "Initial Burst:"), + skill("radiusSecondaryLabel", "Initial Chilled Ground:"), + skill("radiusTertiaryLabel", "Final Chilled Ground:"), }, qualityStats = { Default = { - { "chill_effect_+%_final", 1 }, - }, - Alternate1 = { - { "chill_effect_+%", 1 }, - }, - Alternate2 = { - { "damage_+%_with_hits_and_ailments", 2 }, + { "active_skill_chill_effect_+%_final", 1 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "active_skill_base_tertiary_area_of_effect_radius", 30 }, + { "active_skill_area_of_effect_description_mode", 2 }, + { "active_skill_secondary_area_of_effect_description_mode", 2 }, + { "active_skill_tertiary_area_of_effect_description_mode", 2 }, { "base_skill_effect_duration", 5000 }, { "chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%", 25 }, }, @@ -1795,17 +1865,19 @@ skills["VaalColdSnap"] = { }, baseMods = { skill("dotIsArea", true), - skill("radius", 20), - skill("radiusLabel", "Initial Area:"), - skill("radiusSecondary", 36), - skill("radiusSecondaryLabel", "Final Area:"), + skill("radiusLabel", "Initial Burst:"), + skill("radiusSecondaryLabel", "Initial Chilled Ground:"), + skill("radiusTertiaryLabel", "Final Chilled Ground:"), }, qualityStats = { Default = { - { "chill_effect_+%_final", 1 }, + { "active_skill_chill_effect_+%_final", 1 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 32 }, + { "active_skill_base_secondary_area_of_effect_radius", 20 }, + { "active_skill_base_tertiary_area_of_effect_radius", 36 }, { "base_skill_effect_duration", 4000 }, { "base_chance_to_freeze_%", 100 }, { "chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%", 100 }, @@ -1898,12 +1970,6 @@ skills["Conductivity"] = { Default = { { "base_self_shock_duration_-%", -1 }, }, - Alternate1 = { - { "curse_effect_+%", 0.5 }, - }, - Alternate2 = { - { "chance_to_be_shocked_%", 1 }, - }, }, constantStats = { { "chance_to_be_shocked_%", 25 }, @@ -1962,7 +2028,7 @@ skills["Contagion"] = { color = 3, baseEffectiveness = 2.2532999515533, incrementalEffectiveness = 0.037999998778105, - description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy dies while affected by Contagion, it spreads to other enemies.", + description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy dies while affected by Contagion, the debuff spreads to other enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.6, @@ -1973,26 +2039,21 @@ skills["Contagion"] = { }, baseMods = { skill("debuff", true), - skill("radius", 17), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "chaos_damage_+%", 3 }, - }, - Alternate2 = { - { "contagion_spread_on_hit_affected_enemy_%", 3 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 17 }, }, stats = { "base_chaos_damage_to_deal_per_minute", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", + "contagion_display_spread_on_death", }, levels = { [1] = { 16.666667039196, levelRequirement = 4, statInterpolation = { 3, }, cost = { Mana = 5, }, }, @@ -2044,11 +2105,6 @@ skills["ConversionTrap"] = { skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Mineable] = true, [SkillType.Trapped] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, - statMap = { - ["conversation_trap_converted_enemy_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) } ) - } - }, baseFlags = { spell = true, duration = true, @@ -2056,13 +2112,7 @@ skills["ConversionTrap"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "conversion_trap_converted_enemies_chance_to_taunt_on_hit_%", 1 }, - }, - Alternate2 = { - { "conversation_trap_converted_enemy_damage_+%", 20 }, + { "base_skill_effect_duration", 200 }, }, }, constantStats = { @@ -2074,6 +2124,7 @@ skills["ConversionTrap"] = { "base_deal_no_damage", "traps_do_not_explode_on_timeout", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 5300, storedUses = 3, levelRequirement = 4, cooldown = 8, statInterpolation = { 1, }, cost = { Mana = 6, }, }, @@ -2144,13 +2195,6 @@ skills["Convocation"] = { { "skill_effect_duration_+%", 1 }, { "base_cooldown_speed_+%", 1 }, }, - Alternate1 = { - { "base_movement_velocity_+%", 2 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", -2 }, - { "unnerve_nearby_enemies_on_use_for_ms", 200 }, - }, }, constantStats = { { "base_skill_effect_duration", 2000 }, @@ -2218,6 +2262,9 @@ skills["Disintegrate"] = { ["disintegrate_base_radius_+_per_intensify"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "Intensity", limitVar = "IntensityLimit" }), }, + ["quality_display_disintegrate_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -2230,15 +2277,6 @@ skills["Disintegrate"] = { Default = { { "disintegrate_damage_+%_final_per_intensity", 0.5 }, }, - Alternate1 = { - { "skill_lightning_damage_%_to_convert_to_chaos", 1 }, - }, - Alternate2 = { - { "intensity_loss_frequency_while_moving_+%", -1 }, - }, - Alternate3 = { - { "base_cast_speed_+%", 0.5 }, - }, }, constantStats = { { "disintegrate_base_radius_+_per_intensify", 3 }, @@ -2250,6 +2288,7 @@ skills["Disintegrate"] = { "is_area_damage", "display_base_intensity_loss", "active_skill_display_does_intensity_stuff", + "quality_display_disintegrate_is_gem", }, levels = { [1] = { 0.5, 1.5, damageEffectiveness = 1.65, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, @@ -2336,6 +2375,9 @@ skills["DarkPact"] = { ["skeletal_chains_no_minions_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 1 }), }, + ["quality_display_dark_pact_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -2347,13 +2389,7 @@ skills["DarkPact"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skeletal_chains_aoe_%_health_dealt_as_chaos_damage", 0.05 }, - }, - Alternate2 = { - { "dark_pact_minions_recover_%_life_on_hit", 0.1 }, + { "skeletal_chains_aoe_%_health_dealt_as_chaos_damage", 0.1 }, }, }, constantStats = { @@ -2366,6 +2402,7 @@ skills["DarkPact"] = { "skeletal_chains_no_minions_damage_+%_final", "is_area_damage", "skeletal_chains_no_minions_targets_self", + "quality_display_dark_pact_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 56, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, @@ -2418,9 +2455,6 @@ skills["Despair"] = { statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { - ["degen_effect_+%"] = { - mod("DamageTakenOverTime", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, ["base_chaos_damage_resistance_%"] = { mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, @@ -2446,12 +2480,6 @@ skills["Despair"] = { Default = { { "curse_effect_+%", 0.5 }, }, - Alternate1 = { - { "degen_effect_+%", 0.5 }, - }, - Alternate2 = { - { "chance_to_be_hindered_when_hit_by_spells_%", 0.5 }, - }, }, stats = { "base_skill_effect_duration", @@ -2502,17 +2530,94 @@ skills["Despair"] = { [40] = { 14800, 17, -41, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, }, } -skills["Discharge"] = { - name = "Discharge", +skills["DestructiveLink"] = { + name = "Destructive Link", color = 3, - baseEffectiveness = 3.876699924469, - incrementalEffectiveness = 0.035999998450279, + description = "Targets an allied player to apply a buff which links you to them for a duration. While linked, they use your main hand critical strike chance. If the target dies while linked, you will also die. This skill cannot be triggered, or used by Totems, Traps, or Mines.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Link] = true, }, + statDescriptionScope = "buff_skill_stat_descriptions", + castTime = 0.5, + statMap = { + ["critical_link_grants_base_critical_strike_multiplier_+"] = { + mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["critical_link_grants_accuracy_rating_+%"] = { + mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["display_critical_link_overrides_main_hand_critical_strike_chance"] = { + flag("MainHandCritIsEqualToParent", { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "MainHandAttack" }), + }, + }, + baseFlags = { + spell = true, + duration = true, + }, + qualityStats = { + Default = { + { "base_skill_effect_duration", 75 }, + }, + }, + stats = { + "critical_link_grants_base_critical_strike_multiplier_+", + "base_skill_effect_duration", + "skill_cost_over_time_is_not_removed_with_skill", + "display_link_stuff", + "display_critical_link_overrides_main_hand_critical_strike_chance", + }, + levels = { + [1] = { 30, 8000, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 900, }, }, + [2] = { 31, 8100, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 960, }, }, + [3] = { 32, 8200, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1030, }, }, + [4] = { 33, 8300, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1080, }, }, + [5] = { 34, 8400, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1140, }, }, + [6] = { 35, 8500, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1200, }, }, + [7] = { 36, 8600, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1250, }, }, + [8] = { 37, 8700, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1310, }, }, + [9] = { 38, 8800, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1380, }, }, + [10] = { 39, 8900, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1440, }, }, + [11] = { 40, 9000, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1490, }, }, + [12] = { 41, 9100, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1550, }, }, + [13] = { 42, 9200, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1610, }, }, + [14] = { 43, 9300, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1680, }, }, + [15] = { 44, 9400, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1730, }, }, + [16] = { 45, 9500, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1790, }, }, + [17] = { 46, 9600, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1850, }, }, + [18] = { 47, 9700, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1900, }, }, + [19] = { 48, 9800, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1940, }, }, + [20] = { 49, 9900, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1960, }, }, + [21] = { 50, 10000, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2030, }, }, + [22] = { 51, 10100, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2090, }, }, + [23] = { 52, 10200, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2140, }, }, + [24] = { 53, 10300, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2200, }, }, + [25] = { 54, 10400, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2260, }, }, + [26] = { 55, 10500, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2330, }, }, + [27] = { 56, 10600, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2380, }, }, + [28] = { 57, 10700, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2440, }, }, + [29] = { 58, 10800, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2500, }, }, + [30] = { 59, 10900, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2550, }, }, + [31] = { 59, 11000, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2590, }, }, + [32] = { 60, 11050, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2610, }, }, + [33] = { 60, 11100, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2650, }, }, + [34] = { 61, 11150, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2680, }, }, + [35] = { 61, 11200, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2700, }, }, + [36] = { 62, 11250, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2740, }, }, + [37] = { 62, 11300, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2760, }, }, + [38] = { 63, 11350, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2790, }, }, + [39] = { 63, 11400, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2830, }, }, + [40] = { 64, 11450, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2850, }, }, + }, +} +skills["Discharge"] = { + name = "Discharge", + color = 3, + baseEffectiveness = 3.876699924469, + incrementalEffectiveness = 0.035999998450279, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, statMap = { - ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"] = { + ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"] = { mod("AreaOfEffect", "MORE", nil, ModFlag.Spell, 0, { type = "Multiplier", var = "RemovableTotalCharges" }), }, ["active_skill_ailment_damage_+%_final"] = { @@ -2523,25 +2628,14 @@ skills["Discharge"] = { spell = true, area = true, }, - baseMods = { - skill("radius", 30), - }, qualityStats = { Default = { - { "discharge_chance_not_to_consume_charges_%", 0.05 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 2 }, - }, - Alternate2 = { { "discharge_chance_not_to_consume_charges_%", 0.5 }, }, - Alternate3 = { - { "discharge_damage_+%_if_3_charge_types_removed", 2 }, - }, }, constantStats = { - { "area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge", 15 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge", 15 }, { "active_skill_ailment_damage_+%_final", -60 }, }, stats = { @@ -2611,12 +2705,6 @@ skills["Discipline"] = { ["base_maximum_energy_shield"] = { mod("EnergyShield", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["damage_+%_on_full_energy_shield"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["energy_shield_delay_-%"] = { - mod("EnergyShieldRechargeFaster", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - } }, baseFlags = { spell = true, @@ -2630,13 +2718,6 @@ skills["Discipline"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "damage_+%_on_full_energy_shield", 0.25 }, - }, - Alternate2 = { - { "energy_shield_delay_-%", -0.5 }, - { "energy_shield_recharge_rate_+%", 0.5 }, - }, }, constantStats = { { "energy_shield_recharge_rate_+%", 30 }, @@ -2772,7 +2853,7 @@ skills["DivineTempest"] = { color = 3, baseEffectiveness = 0.49039998650551, incrementalEffectiveness = 0.04280000180006, - description = "Channelling draws in energy around you to repeatedly build up stages, damaging a number of nearby enemies when you do so. Release to unleash a powerful burst of energy in a beam in front of you.", + description = "Channelling draws in energy around you to repeatedly build up stages, damaging a number of nearby enemies when you do so. Release to unleash this energy in a burst around you and a beam in front of you. Modifiers to area of effect do not affect the beam. Maximum of 10 Stages.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.22, @@ -2816,12 +2897,6 @@ skills["DivineTempest"] = { Default = { { "divine_tempest_beam_width_+%", 1 }, }, - Alternate1 = { - { "divine_tempest_beam_width_+%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 1 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, @@ -2835,6 +2910,7 @@ skills["DivineTempest"] = { "spell_maximum_base_physical_damage", "divine_tempest_beam_width_+", "visual_hit_effect_elemental_is_holy", + "skill_can_add_multiple_charges_per_action", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 0.45, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, @@ -2909,13 +2985,7 @@ skills["ElementalWeakness"] = { }, qualityStats = { Default = { - { "curse_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_curse_duration_+%", 1 }, - }, - Alternate2 = { - { "self_elemental_status_duration_-%", -0.5 }, + { "self_elemental_status_duration_-%", -1 }, }, }, stats = { @@ -3009,28 +3079,13 @@ skills["EnergyBlade"] = { ["storm_blade_maximum_lightning_damage"] = { mod("EnergyBladeMaxLightning", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, - ["storm_blade_quality_local_critical_strike_chance_+%"] = { - mod("EnergyBladeCritChance", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["storm_blade_quality_chance_to_shock_%"] = { - mod("EnergyBladeShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"] = { - mod("EnergyBladeConvertToChaos", "BASE", nil, 0, KeywordFlag.Attack, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, }, baseFlags = { spell = true, }, qualityStats = { Default = { - { "storm_blade_quality_local_critical_strike_chance_+%", 0.5 }, - }, - Alternate1 = { - { "storm_blade_quality_chance_to_shock_%", 1 }, - }, - Alternate2 = { - { "storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos", 1 }, + { "storm_blade_energy_shield_+%_final", 0.25 }, }, }, constantStats = { @@ -3121,12 +3176,6 @@ skills["Enfeeble"] = { Default = { { "base_curse_duration_+%", 1 }, }, - Alternate1 = { - { "curse_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "curse_cast_speed_+%", 0.5 }, - }, }, stats = { "base_skill_effect_duration", @@ -3200,13 +3249,7 @@ skills["EssenceDrain"] = { }, qualityStats = { Default = { - { "chaos_damage_+%", 1 }, - }, - Alternate1 = { - { "siphon_life_leech_from_damage_permyriad", 0.5 }, - }, - Alternate2 = { - { "hit_damage_+%", 5 }, + { "siphon_life_leech_from_damage_permyriad", 2.5 }, }, }, constantStats = { @@ -3219,48 +3262,49 @@ skills["EssenceDrain"] = { "spell_maximum_base_chaos_damage", "spell_damage_modifiers_apply_to_skill_dot", "base_is_projectile", - }, - levels = { - [1] = { 33.500000589838, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, - [2] = { 32.833334544053, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 32, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, - [4] = { 31.000000931323, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, - [5] = { 30.16666638727, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 29.333333830039, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 28.666667784254, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 27.999999751647, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [9] = { 27.500000217309, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [10] = { 26.833334171524, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [11] = { 26.333334637185, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 25.833333116025, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [13] = { 25.16666707024, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 24.666667535901, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 24.166668001562, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 23.666666480402, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 23.33333345751, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 23.000000434617, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 22.666667411725, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 22.500000900279, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 22.166667877386, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 21.833332867672, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 21.49999984478, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 21.166666821887, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 21.000000310441, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 20.666667287548, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 20.333334264656, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 20.000001241763, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 19.833334730317, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 19.499999720603, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 19.333333209157, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 19.166666697711, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 19.166666697711, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 19.000000186265, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 18.833333674818, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 18.666667163372, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 18.500000651926, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 18.500000651926, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 18.33333414048, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 18.166667629033, 0.15999999642372, 0.23999999463558, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + "quality_display_essence_drain_is_gem", + }, + levels = { + [1] = { 33.500000589838, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, + [2] = { 32.833334544053, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, + [3] = { 32, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, + [4] = { 31.000000931323, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, + [5] = { 30.16666638727, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 29.333333830039, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 28.666667784254, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 27.999999751647, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [9] = { 27.500000217309, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [10] = { 26.833334171524, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [11] = { 26.333334637185, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [12] = { 25.833333116025, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [13] = { 25.16666707024, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 24.666667535901, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [15] = { 24.166668001562, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 23.666666480402, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 23.33333345751, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 23.000000434617, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 22.666667411725, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 22.500000900279, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 22.166667877386, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 21.833332867672, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 21.49999984478, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 21.166666821887, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 21.000000310441, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 20.666667287548, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 20.333334264656, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 20.000001241763, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 19.833334730317, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 19.499999720603, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 19.333333209157, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 19.166666697711, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 19.166666697711, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 19.000000186265, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 18.833333674818, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 18.666667163372, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 18.500000651926, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 18.500000651926, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 18.33333414048, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 18.166667629033, 0.15999999642372, 0.23999999463558, damageEffectiveness = 1.4, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, }, } skills["EyeOfWinter"] = { @@ -3279,6 +3323,12 @@ skills["EyeOfWinter"] = { ["freezing_pulse_damage_+%_final_at_long_range"] = { mod("EyeOfWinterRamp", "BASE", nil) }, + ["quality_display_eye_of_winter_is_gem"] = { + -- Display only + }, + ["quality_display_freezing_pulse_damage_at_long_range_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -3286,19 +3336,14 @@ skills["EyeOfWinter"] = { }, qualityStats = { Default = { - { "cold_damage_+%", 1 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "eye_of_winter_spiral_angle_+%", -1.5 }, + { "eye_of_winter_base_explosion_shards", 0.1 }, }, }, constantStats = { { "freezing_pulse_damage_+%_final_at_long_range", 200 }, { "eye_of_winter_base_explosion_shards", 8 }, { "projectile_firing_forward_distance_override", 100 }, + { "display_eye_of_winter_projectile_modifier", 1 }, }, stats = { "spell_minimum_base_cold_damage", @@ -3306,6 +3351,8 @@ skills["EyeOfWinter"] = { "base_is_projectile", "console_skill_dont_chase", "single_primary_projectile", + "quality_display_eye_of_winter_is_gem", + "quality_display_freezing_pulse_damage_at_long_range_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.55, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, @@ -3369,32 +3416,13 @@ skills["Fireball"] = { area = true, }, }, - statMap = { - ["fireball_base_radius_up_to_+_at_longer_ranges"] = { - mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "DistanceRamp", ramp = {{0,0},{50,1}} }) - }, - }, baseFlags = { spell = true, projectile = true, }, - baseMods = { - skill("radius", 9), - }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", -2 }, - { "base_skill_area_of_effect_+%", 3 }, - }, - Alternate2 = { - { "non_damaging_ailment_effect_+%", 3 }, - { "active_skill_ignite_damage_+%_final", -2 }, - }, - Alternate3 = { - { "debilitate_enemies_for_1_second_on_hit_%_chance", 0.25 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { @@ -3403,51 +3431,51 @@ skills["Fireball"] = { stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "fireball_base_radius_up_to_+_at_longer_ranges", + "active_skill_base_area_of_effect_radius", "base_is_projectile", "quality_display_active_skill_ignite_damage_is_gem", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 9, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 11, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 13, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 15, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 17, damageEffectiveness = 3.7, PvPDamageMultiplier = -30, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, }, } skills["VaalFireballSpiralNova"] = { @@ -3469,21 +3497,13 @@ skills["VaalFireballSpiralNova"] = { area = true, }, }, - statMap = { - ["fireball_base_radius_up_to_+_at_longer_ranges"] = { - mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "DistanceRamp", ramp = {{0,0},{50,1}} }) - }, - }, baseFlags = { spell = true, projectile = true, }, - baseMods = { - skill("radius", 9), - }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { @@ -3495,51 +3515,51 @@ skills["VaalFireballSpiralNova"] = { stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "fireball_base_radius_up_to_+_at_longer_ranges", + "active_skill_base_area_of_effect_radius", "base_is_projectile", "cannot_cancel_skill_before_contact_point", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, vaalStoredUses = 1, soulPreventionDuration = 4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, }, } skills["Firestorm"] = { @@ -3574,20 +3594,13 @@ skills["Firestorm"] = { }, baseMods = { skill("showAverage", false, { type = "SkillPart", skillPart = 1 }), - skill("radius", 25), - skill("radiusLabel", "Area in which fireballs fall:"), - skill("radiusSecondary", 13), - skill("radiusSecondaryLabel", "Area of fireball explosion:"), + skill("radiusLabel", "Fireball explosion:"), + skill("radiusSecondary", 25), + skill("radiusSecondaryLabel", "Area in which fireballs fall:"), }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "base_chance_to_ignite_%", 0.5 }, - }, - Alternate2 = { - { "base_stun_threshold_reduction_+%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { @@ -3597,6 +3610,7 @@ skills["Firestorm"] = { { "firestorm_initial_impact_area_of_effect_+%_final", 100 }, { "firestorm_max_number_of_storms", 3 }, { "base_skill_effect_duration", 1400 }, + { "active_skill_base_area_of_effect_radius", 13 }, }, stats = { "spell_minimum_base_fire_damage", @@ -3669,14 +3683,13 @@ skills["VaalFirestorm"] = { baseMods = { skill("dotIsArea", true), flag("dotIsBurningGround"), - skill("radius", 20), - skill("radiusLabel", "Area in which fireballs fall:"), - skill("radiusSecondary", 13), - skill("radiusSecondaryLabel", "Area of fireball explosion:"), + skill("radiusLabel", "Area of fireball explosion:"), + skill("radiusSecondary", 20), + skill("radiusSecondaryLabel", "Area in which fireballs fall:"), }, qualityStats = { Default = { - { "damage_+%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.1 }, }, }, constantStats = { @@ -3684,6 +3697,7 @@ skills["VaalFirestorm"] = { { "vaal_firestorm_number_of_meteors", 16 }, { "firestorm_drop_burning_ground_duration_ms", 4000 }, { "vaal_firestorm_gem_explosion_area_of_effect_+%_final", 20 }, + { "active_skill_base_area_of_effect_radius", 13 }, }, stats = { "spell_minimum_base_fire_damage", @@ -3743,15 +3757,10 @@ skills["FlameDash"] = { color = 3, baseEffectiveness = 0.82279998064041, incrementalEffectiveness = 0.052799999713898, - description = "Teleport to a location, damaging enemies and leaving a trail of burning ground in your wake. Shares a cooldown with other Blink skills.", + description = "Teleport to a location, damaging enemies and leaving a trail of burning ground. Shares a cooldown with other Blink skills.", skillTypes = { [SkillType.Spell] = true, [SkillType.Movement] = true, [SkillType.Damage] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Travel] = true, [SkillType.Blink] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, - statMap = { - ["flame_dash_burning_damage_+%_final"] = { - mod("FireDamage", "MORE", nil, 0, KeywordFlag.FireDot), - } - }, baseFlags = { spell = true, area = true, @@ -3765,13 +3774,6 @@ skills["FlameDash"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "skill_travel_distance_+%", 1 }, - }, - Alternate2 = { - { "base_chance_to_ignite_%", 2 }, - { "flame_dash_burning_damage_+%_final", 2 }, - }, }, constantStats = { { "base_skill_effect_duration", 4000 }, @@ -3782,6 +3784,7 @@ skills["FlameDash"] = { "base_fire_damage_to_deal_per_minute", "base_cooldown_speed_+%", "is_area_damage", + "spell_damage_modifiers_apply_to_skill_dot", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 0, critChance = 6, cooldown = 3.5, damageEffectiveness = 1.4, storedUses = 3, levelRequirement = 10, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, @@ -3857,15 +3860,18 @@ skills["Firewall"] = { ["wall_maximum_length"] = { skill("radius", nil), }, - ["firewall_applies_%_fire_exposure"] = { - mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }), - }, ["flame_wall_minimum_added_fire_damage"] = { mod("FireMin", "BASE", nil, ModFlag.Projectile, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Flame Wall", effectCond = "FlameWallAddedDamage" }), }, ["flame_wall_maximum_added_fire_damage"] = { mod("FireMax", "BASE", nil, ModFlag.Projectile, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Flame Wall", effectCond = "FlameWallAddedDamage" }), - } + }, + ["quality_display_firewall_is_gem"] = { + -- Display only + }, + ["quality_display_alt_flame_wall_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -3879,17 +3885,7 @@ skills["Firewall"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "fire_dot_multiplier_+", 0.5 }, - { "skill_effect_duration_+%", -1 }, - }, - Alternate2 = { - { "base_cast_speed_+%", 2 }, - }, - Alternate3 = { - { "firewall_applies_%_fire_exposure", -0.5 }, + { "number_of_allowed_firewalls", 0.05 }, }, }, constantStats = { @@ -3907,6 +3903,8 @@ skills["Firewall"] = { "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", "console_skill_dont_chase", + "quality_display_firewall_is_gem", + "quality_display_alt_flame_wall_is_gem", }, levels = { [1] = { 5.0000003104409, 16.666667039196, 3, 5, 1000, 40, 3000, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, }, cost = { Mana = 4, }, }, @@ -3970,6 +3968,9 @@ skills["FlameWhip"] = { ["flame_surge_ignite_damage_as_burning_ground_damage_%"] = { mod("IgniteDpsAsBurningGround", "MAX", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, + ["quality_display_flame_whip_is_gem+"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -3981,13 +3982,7 @@ skills["FlameWhip"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "chance_to_scorch_%", 0.5 }, - }, - Alternate2 = { - { "active_skill_base_area_length_+", 0.25 }, + { "flame_whip_damage_+%_final_vs_burning_enemies", 1 }, }, }, constantStats = { @@ -4002,6 +3997,7 @@ skills["FlameWhip"] = { "active_skill_base_area_length_+", "never_ignite", "is_area_damage", + "quality_display_flame_whip_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 50, 0, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, @@ -4051,7 +4047,7 @@ skills["Flameblast"] = { color = 3, baseEffectiveness = 0.86769998073578, incrementalEffectiveness = 0.044599998742342, - description = "Channels to build up a large explosion, which is released when you stop using the skill. The longer you channel, the larger the area of effect and damage of the explosion, up to 10 stages.", + description = "Channels to build up a large explosion, which is released when you stop using the skill. The longer you channel, the larger the area of effect and damage of the explosion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.2, @@ -4076,6 +4072,9 @@ skills["Flameblast"] = { ["vaal_flameblast_radius_+_per_stage"] = { mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }), }, + ["quality_display_flameblast_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -4088,19 +4087,7 @@ skills["Flameblast"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "skill_fire_damage_%_to_convert_to_chaos", 2 }, - { "base_chance_to_poison_on_hit_%", 1 }, - }, - Alternate2 = { - { "flameblast_maximum_stages", 0.1 }, - { "active_skill_cast_speed_+%_final", -1 }, - }, - Alternate3 = { - { "active_skill_base_radius_+", 0.5 }, - { "flameblast_area_+%_final_per_stage", -0.5 }, + { "flameblast_maximum_stages", 0.05 }, }, }, constantStats = { @@ -4115,6 +4102,7 @@ skills["Flameblast"] = { "spell_maximum_base_fire_damage", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", + "quality_display_flameblast_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.9, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, @@ -4280,13 +4268,7 @@ skills["Flammability"] = { }, qualityStats = { Default = { - { "base_self_ignite_duration_-%", -0.5 }, - }, - Alternate1 = { - { "curse_effect_+%", 0.5 }, - }, - Alternate2 = { - { "chance_to_be_ignited_%", 1 }, + { "base_self_ignite_duration_-%", -1 }, }, }, constantStats = { @@ -4369,13 +4351,7 @@ skills["FleshOffering"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate1 = { - { "life_leech_from_any_damage_permyriad", 2 }, - }, - Alternate2 = { - { "attack_speed_+%_granted_from_skill", 0.5 }, + { "offering_spells_effect_+%", 0.5 }, }, }, constantStats = { @@ -4523,14 +4499,8 @@ skills["ForbiddenRite"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { { "soulfeast_number_of_secondary_projectiles", 0.1 }, }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, }, constantStats = { { "soulfeast_take_%_maximum_life_as_chaos_damage", 40 }, @@ -4547,6 +4517,7 @@ skills["ForbiddenRite"] = { "is_area_damage", "projectile_behaviour_only_explode", "console_skill_dont_chase", + "quality_display_forbidden_rite_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 1.1, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, @@ -4602,13 +4573,9 @@ skills["FreezingPulse"] = { castTime = 0.65, preDamageFunc = function(activeSkill, output) activeSkill.skillModList:NewMod("Damage", "MORE", -50, "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,0},{60*output.ProjectileSpeedMod,1}} }) - activeSkill.skillModList:NewMod("Damage", "MORE", activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "FreezingPulseRamp"), "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,0},{60*output.ProjectileSpeedMod,1}} }) activeSkill.skillModList:NewMod("EnemyFreezeChance", "BASE", 25, "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,1},{15*output.ProjectileSpeedMod,0}} }) end, statMap = { - ["freezing_pulse_damage_+%_final_at_long_range"] = { - mod("FreezingPulseRamp", "BASE", nil) - }, ["display_what_freezing_pulse_does"] = { }, }, @@ -4620,13 +4587,6 @@ skills["FreezingPulse"] = { Default = { { "base_projectile_speed_+%", 2 }, }, - Alternate1 = { - { "freezing_pulse_damage_+%_final_at_long_range", 3 }, - { "active_skill_damage_+%_final", -1 }, - }, - Alternate2 = { - { "projectile_chance_to_not_pierce_%", 5 }, - }, }, stats = { "spell_minimum_base_cold_damage", @@ -4683,27 +4643,17 @@ skills["FrostBomb"] = { color = 3, baseEffectiveness = 1.8422000408173, incrementalEffectiveness = 0.051899999380112, - description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies for a secondary duration which reduces life and energy shield regeneration rate, and also inflicts Cold Exposure. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", + description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies for a secondary duration which reduces life regeneration rate, and also inflicts Cold Exposure. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, - preDamageFunc = function(activeSkill, output) - local duration = math.floor(activeSkill.skillData.duration * output.DurationMod * 10) - activeSkill.skillModList:NewMod("Damage", "MORE", activeSkill.skillData.frostBombDamagePer100ms * duration, "Skill:FrostBomb", ModFlag.Hit) - end, statMap = { ["base_cold_damage_resistance_%"] = { mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), }, - ["frost_bomb_damage_+%_final_per_100ms_duration"] = { - skill("frostBombDamagePer100ms", nil), - }, ["life_regeneration_rate_+%"] = { mod("LifeRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), }, - ["energy_shield_regeneration_rate_+%"] = { - mod("EnergyShieldRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), - }, }, baseFlags = { spell = true, @@ -4712,35 +4662,23 @@ skills["FrostBomb"] = { }, baseMods = { skill("debuffSecondary", true), - skill("radius", 24), }, qualityStats = { Default = { - { "cold_damage_+%", 1 }, - }, - Alternate1 = { - { "base_chance_to_freeze_%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate3 = { - { "active_skill_quality_duration_+%_final", -1 }, { "base_cooldown_speed_+%", 1 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 24 }, { "base_skill_effect_duration", 2000 }, { "base_secondary_skill_effect_duration", 5000 }, { "base_cold_damage_resistance_%", -15 }, { "life_regeneration_rate_+%", -75 }, - { "energy_shield_regeneration_rate_+%", -75 }, - { "frost_bomb_damage_+%_final_per_100ms_duration", 4 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", }, @@ -4828,15 +4766,6 @@ skills["FrostGlobe"] = { Default = { { "cold_ailment_effect_+%", 1 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "frost_globe_absorb_damage_%_enemy_in_bubble", 0.5 }, - }, - Alternate3 = { - { "frost_globe_life_regeneration_rate_per_minute_%", 0.6 }, - }, }, constantStats = { { "frost_globe_absorb_damage_%_enemy_in_bubble", 20 }, @@ -4908,13 +4837,7 @@ skills["FrostWall"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "damage_+%", 3 }, - }, - Alternate2 = { - { "freeze_as_though_dealt_damage_+%", 5 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -5004,12 +4927,6 @@ skills["Frostbite"] = { Default = { { "base_self_freeze_duration_-%", -1 }, }, - Alternate1 = { - { "curse_effect_+%", 0.5 }, - }, - Alternate2 = { - { "chance_to_be_frozen_%", 1 }, - }, }, constantStats = { { "chance_to_be_frozen_%", 25 }, @@ -5084,9 +5001,6 @@ skills["GalvanicField"] = { } }, statMap = { - ["skill_buff_grants_shock_duration_+%"] = { - mod("EnemyShockDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Multiplier", var = "ShockEffect", div = 5, actor = "enemy" }), }, @@ -5101,6 +5015,14 @@ skills["GalvanicField"] = { skill("repeatFrequency", nil, { type = "SkillPart", skillPart = 2 }), div = 1000, }, + ["base_chance_to_shock_%_from_skill"] = { + mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Galvanic Field" }), + }, + ["base_skill_show_average_damage_instead_of_dps"] = { + }, + ["quality_display_shock_chance_from_skill_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -5112,18 +5034,8 @@ skills["GalvanicField"] = { }, qualityStats = { Default = { - { "skill_buff_grants_shock_duration_+%", 1.5 }, - }, - Alternate1 = { { "base_chance_to_shock_%_from_skill", 1 }, }, - Alternate2 = { - { "number_of_chains", 0.05 }, - { "active_skill_area_of_effect_+%_final", -1.5 }, - }, - Alternate3 = { - { "galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock", 0.05 }, - }, }, constantStats = { { "base_skill_effect_duration", 6000 }, @@ -5139,6 +5051,8 @@ skills["GalvanicField"] = { "galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock", "never_shock", "skill_can_add_multiple_charges_per_action", + "quality_display_shock_chance_from_skill_is_gem", + "base_skill_show_average_damage_instead_of_dps", }, levels = { [1] = { 0.10000000149012, 1.8999999761581, 700, 10, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, @@ -5214,13 +5128,7 @@ skills["IceDash"] = { }, qualityStats = { Default = { - { "cold_ailment_effect_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy", 2 }, + { "skill_maximum_travel_distance_+%", 0.5 }, }, }, constantStats = { @@ -5287,11 +5195,6 @@ skills["FrostBolt"] = { skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, - statMap = { - ["frostbolt_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), - }, - }, baseFlags = { spell = true, projectile = true, @@ -5300,15 +5203,6 @@ skills["FrostBolt"] = { Default = { { "cold_damage_+%", 1 }, }, - Alternate1 = { - { "frostbolt_projectile_acceleration", 2 }, - }, - Alternate2 = { - { "frostbolt_projectile_speed_+%_final", -1 }, - }, - Alternate3 = { - { "projectile_return_%_chance", 1 }, - }, }, stats = { "spell_minimum_base_cold_damage", @@ -5396,13 +5290,6 @@ skills["GlacialCascade"] = { Default = { { "glacial_cascade_final_spike_damage_+%_final", 2.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", -1 }, - { "glacial_cascade_final_spike_damage_+%_final", 2 }, - }, }, constantStats = { { "upheaval_number_of_spikes", 4 }, @@ -5415,6 +5302,7 @@ skills["GlacialCascade"] = { "is_area_damage", "global_knockback", "quality_display_glacial_cascade_is_gem", + "quality_display_glacial_cascade_num_spikes_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.65, PvPDamageMultiplier = -25, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, @@ -5501,6 +5389,10 @@ skills["WaterSphere"] = { mod("HydroSphereFrequency", "INC", nil), }, ["water_sphere_does_weird_conversion_stuff"] = { + -- Display Only + }, + ["quality_display_hydrosphere_is_gem"] = { + -- Display Only }, }, baseFlags = { @@ -5515,12 +5407,6 @@ skills["WaterSphere"] = { Default = { { "hydro_sphere_pulse_frequency_+%", 0.5 }, }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_cold", 100 }, @@ -5539,6 +5425,7 @@ skills["WaterSphere"] = { "water_sphere_does_weird_conversion_stuff", "active_skill_display_suppress_physical_to_cold_damage_conversion", "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "quality_display_hydrosphere_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 1500, damageEffectiveness = 1.1, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, @@ -5602,6 +5489,9 @@ skills["DoomBlast"] = { ["chaos_damage_resisted_by_lowest_resistance"] = { flag("ChaosDamageUsesLowestResistance"), }, + ["hexblast_display_innate_remove_hex_100%_chance"] = { + -- Display Only + }, }, parts = { { @@ -5618,27 +5508,17 @@ skills["DoomBlast"] = { area = true, }, baseMods = { - skill("radius", 29), skill("showAverage", true), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_ailment_damage_+%", 2 }, - { "non_damaging_ailment_effect_+%", 1 }, - }, - Alternate3 = { { "hexblast_%_chance_to_not_consume_hex", 0.5 }, }, }, constantStats = { { "hexblast_hit_damage_+%_final_if_hexed", 100 }, { "hexblast_ailment_damage_+%_final_if_hexed", 40 }, + { "active_skill_base_area_of_effect_radius", 28 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -5646,6 +5526,7 @@ skills["DoomBlast"] = { "all_damage_can_ignite_freeze_shock", "chaos_damage_resisted_by_lowest_resistance", "spell_cast_time_added_to_cooldown_if_triggered", + "hexblast_display_innate_remove_hex_100%_chance", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 3.4, critChance = 4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, @@ -5703,9 +5584,6 @@ skills["HeraldOfThunder"] = { activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "HeraldStormFrequency") / 100) end, statMap = { - ["herald_of_thunder_lightning_damage_+%"] = { - mod("LightningDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["spell_minimum_added_lightning_damage"] = { mod("LightningMin", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -5722,11 +5600,11 @@ skills["HeraldOfThunder"] = { skill("repeatFrequency", nil), div = 1000, }, - ["skill_buff_grants_damage_+%"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + ["herald_of_thunder_bolt_frequency_+%"] = { + mod("HeraldStormFrequency", "INC", nil), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + ["quality_display_herald_of_thunder_is_gem"] = { + -- Display Only }, }, baseFlags = { @@ -5739,14 +5617,7 @@ skills["HeraldOfThunder"] = { }, qualityStats = { Default = { - { "herald_of_thunder_lightning_damage_+%", 0.75 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "skill_buff_grants_damage_+%", 1.5 }, - { "base_damage_taken_+%", 0.5 }, + { "herald_of_thunder_bolt_frequency_+%", 1 }, }, }, constantStats = { @@ -5766,6 +5637,7 @@ skills["HeraldOfThunder"] = { "skill_can_add_multiple_charges_per_action", "display_herald_of_thunder_storm", "herald_of_thunder_pvp_scaling_time_uses_bolt_frequency", + "quality_display_herald_of_thunder_is_gem", }, levels = { [1] = { 0.10000000149012, 0.40000000596046, 0.10000000149012, 0.40000000596046, 1, 31, storedUses = 1, manaReservationPercent = 25, cooldown = 1, levelRequirement = 16, statInterpolation = { 3, 3, 3, 3, 1, 1, }, }, @@ -5813,85 +5685,71 @@ skills["HeraldOfThunder"] = { skills["IceNova"] = { name = "Ice Nova", color = 3, - baseEffectiveness = 2.15, + baseEffectiveness = 2.2599999904633, incrementalEffectiveness = 0.043600000441074, - description = "A chilling circle of ice expands from the caster. If the caster targets near their Frostbolt projectiles, it will expand from a number of those projectiles instead. If this skill would repeat when cast this way, it will instead expand again from the same projectiles after a short delay.", + description = "A circle of ice expands from the caster.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, - statMap = { - ["damage_+%_vs_chilled_enemies"] = { - mod("Damage", "INC", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Chilled" }), - }, - }, baseFlags = { spell = true, area = true, }, - baseMods = { - skill("radius", 30), - }, qualityStats = { Default = { - { "active_skill_base_radius_+", 0.15 }, - }, - Alternate1 = { - { "damage_+%_vs_chilled_enemies", 1.5 }, - }, - Alternate2 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate3 = { - { "chill_effect_+%", 0.5 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 26 }, + }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "is_area_damage", }, levels = { - [1] = { 0.85000002384186, 1.261, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.85000002384186, 1.261, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.85000002384186, 1.261, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.85000002384186, 1.261, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.85000002384186, 1.261, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.85000002384186, 1.261, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.85000002384186, 1.261, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.85000002384186, 1.261, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.85000002384186, 1.261, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.85000002384186, 1.261, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.85000002384186, 1.261, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.85000002384186, 1.261, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.85000002384186, 1.261, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.85000002384186, 1.261, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.85000002384186, 1.261, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.85000002384186, 1.261, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.85000002384186, 1.261, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.85000002384186, 1.261, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.85000002384186, 1.261, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.85000002384186, 1.261, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.85000002384186, 1.261, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.85000002384186, 1.261, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.85000002384186, 1.261, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.85000002384186, 1.261, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.85000002384186, 1.261, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.85000002384186, 1.261, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.85000002384186, 1.261, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.85000002384186, 1.261, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.85000002384186, 1.261, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.85000002384186, 1.261, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 2.3, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["VaalIceNova"] = { @@ -5907,15 +5765,13 @@ skills["VaalIceNova"] = { spell = true, area = true, }, - baseMods = { - skill("radius", 26), - }, qualityStats = { Default = { - { "active_skill_base_radius_+", 0.15 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 26 }, { "ice_nova_number_of_repeats", 5 }, { "ice_nova_radius_+%_per_repeat", -20 }, }, @@ -6015,20 +5871,11 @@ skills["IceSpear"] = { Default = { { "ice_spear_second_form_critical_strike_multiplier_+", 2 }, }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "cold_damage_+%", 1 }, - }, - Alternate3 = { - { "ice_spear_distance_before_form_change_+%", -1 }, - }, }, constantStats = { { "ice_spear_second_form_critical_strike_chance_+%", 600 }, { "ice_spear_second_form_projectile_speed_+%_final", 300 }, - { "number_of_additional_projectiles", 1 }, + { "base_number_of_projectiles", 2 }, { "projectile_random_angle_based_on_distance_to_target_location_%", 35 }, }, stats = { @@ -6036,6 +5883,7 @@ skills["IceSpear"] = { "spell_maximum_base_cold_damage", "ice_spear_second_form_critical_strike_multiplier_+", "base_is_projectile", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 30, damageEffectiveness = 1.3, critChance = 7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, @@ -6085,7 +5933,7 @@ skills["ColdProjectileMine"] = { color = 3, baseEffectiveness = 1.6928999423981, incrementalEffectiveness = 0.038100000470877, - description = "Throws a mine that fires projectiles around it when detonated. These projectiles quickly dissipate as they travel, before disappearing", + description = "Throws a mine that fires projectiles around it when detonated. These projectiles quickly dissipate as they travel, before disappearing.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.RemoteMined] = true, [SkillType.Cold] = true, [SkillType.HasReservation] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Aura] = true, [SkillType.Area] = true, [SkillType.AuraAffectsEnemies] = true, [SkillType.AuraNotOnCaster] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, @@ -6101,20 +5949,14 @@ skills["ColdProjectileMine"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.1 }, - }, - Alternate2 = { - { "critical_strike_chance_+%", 1 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { { "base_mine_duration", 5000 }, { "base_mine_detonation_time_ms", 300 }, { "cold_projectile_mine_enemy_critical_strike_chance_+%_against_self", 10 }, - { "number_of_additional_projectiles", 4 }, + { "base_number_of_projectiles", 5 }, { "projectile_speed_variation_+%", 10 }, { "skill_visual_scale_+%", 50 }, }, @@ -6127,6 +5969,7 @@ skills["ColdProjectileMine"] = { "base_is_projectile", "projectiles_nova", "display_additional_projectile_per_2_mines_in_detonation_sequence", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, @@ -6225,6 +6068,9 @@ skills["ExpandingFireCone"] = { ["quality_display_incinerate_is_gem_ingite"] = { --Display Only }, + ["quality_display_incinerate_is_gem_stages"] = { + --Display Only + }, }, baseFlags = { spell = true, @@ -6238,15 +6084,7 @@ skills["ExpandingFireCone"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "flamethrower_damage_+%_per_stage_final", 0.2 }, - { "expanding_fire_cone_release_hit_damage_+%_final", -10 }, - { "grant_expanding_fire_cone_release_ignite_damage_+%_final", -10 }, + { "expanding_fire_cone_maximum_number_of_stages", 0.1 }, }, }, constantStats = { @@ -6266,6 +6104,7 @@ skills["ExpandingFireCone"] = { "expanding_fire_cone_final_wave_always_ignite", "quality_display_incinerate_is_gem_hit", "quality_display_incinerate_is_gem_ingite", + "quality_display_incinerate_is_gem_stages", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 4, 15, damageEffectiveness = 0.5, critChance = 5, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, @@ -6330,11 +6169,6 @@ skills["ClusterBurst"] = { area = true, }, }, - statMap = { - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "StatThreshold", stat = "ForkedCount", threshold = 1 }), - }, - }, baseFlags = { attack = true, projectile = true, @@ -6347,12 +6181,6 @@ skills["ClusterBurst"] = { Default = { { "cluster_burst_spawn_amount", 0.05 }, }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "kinetic_blast_projectiles_gain_%_aoe_after_forking", 1.5 }, - }, }, constantStats = { { "cluster_burst_spawn_amount", 4 }, @@ -6361,6 +6189,7 @@ skills["ClusterBurst"] = { stats = { "base_is_projectile", "skill_can_fire_wand_projectiles", + "quality_display_active_skill_area_damage_is_gem", }, levels = { [1] = { damageEffectiveness = 1.4, PvPDamageMultiplier = -30, baseMultiplier = 1.4, levelRequirement = 28, cost = { Mana = 15, }, }, @@ -6420,12 +6249,8 @@ skills["KineticBolt"] = { flag("SpellDamageAppliesToAttacks"), mod("ImprovedSpellDamageAppliesToAttacks", "MAX", nil), }, - ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"] = { - flag("CastSpeedAppliesToAttacks"), - mod("ImprovedCastSpeedAppliesToAttacks", "MAX", nil) - }, - ["mana_gain_per_target"] = { - mod("ManaOnHit", "BASE", nil), + ["quality_display_spell_damage_to_attack_damage_is_gem"] = { + --Display Only }, }, baseFlags = { @@ -6434,13 +6259,7 @@ skills["KineticBolt"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value", 2.5 }, - }, - Alternate2 = { - { "mana_gain_per_target", 0.1 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 2.5 }, }, }, constantStats = { @@ -6451,6 +6270,7 @@ skills["KineticBolt"] = { "base_is_projectile", "skill_can_fire_wand_projectiles", "kinetic_bolt_forks_apply_to_zig_zags", + "quality_display_spell_damage_to_attack_damage_is_gem", }, levels = { [1] = { 5, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 1, statInterpolation = { 1, }, cost = { Mana = 6, }, }, @@ -6500,7 +6320,7 @@ skills["LightningTowerTrap"] = { color = 3, baseEffectiveness = 0.61379998922348, incrementalEffectiveness = 0.048900000751019, - description = "Throws a trap which, once triggered, will repeatedly strike multiple areas around it for a duration, dealing lightning damage. Modifiers to trap throwing speed will affect how frequently it strikes. Has a higher chance to critically strike Shocked enemies.", + description = "Throws a trap which, once triggered, will repeatedly strike multiple areas around it for a duration, dealing lightning damage.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Trapped] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -6655,6 +6475,9 @@ skills["LightningTowerTrap"] = { ["lightning_tower_trap_number_of_beams"] = { mod("MaximumWaves", "BASE", nil), }, + ["quality_display_lightning_tower_trap_is_gem"] = { + -- Display Only + }, }, baseFlags = { spell = true, @@ -6670,14 +6493,7 @@ skills["LightningTowerTrap"] = { }, qualityStats = { Default = { - { "base_chance_to_shock_%", 1 }, - }, - Alternate1 = { - { "active_skill_quality_duration_+%_final", -1 }, - { "base_cooldown_speed_+%", 3 }, - }, - Alternate2 = { - { "spells_chance_to_hinder_on_hit_%", 0.5 }, + { "lightning_tower_trap_number_of_beams", 0.05 }, }, }, constantStats = { @@ -6694,6 +6510,9 @@ skills["LightningTowerTrap"] = { "base_skill_is_trapped", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency", + "quality_display_lightning_tower_trap_is_gem", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0.5, 1.5, 100, 550, critChance = 6, cooldown = 8, damageEffectiveness = 0.85, storedUses = 3, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, @@ -6751,24 +6570,23 @@ skills["LightningConduit"] = { ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"] = { mod("Damage", "MORE", nil, 0, KeywordFlag.Hit, { type = "Multiplier", var = "ShockEffect", div = 5, actor = "enemy" }), }, + ["quality_display_lightning_conduit_is_gem"] = { + -- Display Only + }, }, baseFlags = { spell = true, }, baseMods = { - skill("radius", 60), skill("radiusLabel", "Targeting range:"), }, qualityStats = { Default = { { "energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target", 0.2 }, }, - Alternate1 = { - { "base_critical_strike_multiplier_+", 0.5 }, - }, - Alternate2 = { - { "destroy_corpses_on_kill_%_chance", 5 }, - }, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 60 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -6776,6 +6594,7 @@ skills["LightningConduit"] = { "energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target", "spell_cast_time_added_to_cooldown_if_triggered", "never_shock", + "quality_display_lightning_conduit_is_gem", }, levels = { [1] = { 0.5, 1.5, 10, damageEffectiveness = 1.4, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -6850,31 +6669,19 @@ skills["LightningTendrilsChannelled"] = { spell = true, area = true, }, - baseMods = { - skill("radius", 22), - }, qualityStats = { Default = { - { "lightning_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate3 = { - { "active_skill_damage_+%_final", -1.5 }, - { "lightning_tendrils_channelled_larger_pulse_damage_+%_final", 7.5 }, + { "base_critical_strike_multiplier_+", 2 }, }, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 24 }, { "lightning_tendrils_channelled_larger_pulse_interval", 3 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", "is_area_damage", "skill_can_add_multiple_charges_per_action", "lightning_tendrils_channelled_larger_pulse_always_crit", @@ -6938,19 +6745,12 @@ skills["LightningTrap"] = { }, qualityStats = { Default = { - { "lightning_damage_+%", 1 }, - { "lightning_ailment_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "projectile_return_%_chance", 1 }, + { "trap_%_chance_to_trigger_twice", 0.75 }, }, }, constantStats = { { "base_trap_duration", 4000 }, - { "number_of_additional_projectiles", 8 }, + { "base_number_of_projectiles", 9 }, { "base_chance_to_shock_%", 20 }, }, stats = { @@ -6963,6 +6763,8 @@ skills["LightningTrap"] = { "base_skill_is_trapped", "base_is_projectile", "base_skill_show_average_damage_instead_of_dps", + "quality_display_base_number_of_projectiles_is_gem", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0.5, 1.5, 0, 80, damageEffectiveness = 2.4, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, @@ -7034,7 +6836,7 @@ skills["VaalLightningTrap"] = { }, constantStats = { { "base_trap_duration", 4000 }, - { "number_of_additional_projectiles", 8 }, + { "base_number_of_projectiles", 9 }, { "base_skill_effect_duration", 4000 }, { "shocked_ground_base_magnitude_override", 15 }, }, @@ -7050,6 +6852,8 @@ skills["VaalLightningTrap"] = { "always_pierce", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "cannot_cancel_skill_before_contact_point", + "quality_display_trap_duration_is_gem", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.5, vaalStoredUses = 3, soulPreventionDuration = 4, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Soul = 20, }, }, @@ -7115,16 +6919,6 @@ skills["LightningWarp"] = { Default = { { "base_cast_speed_+%", 1 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - { "damage_+%", 3 }, - }, - Alternate3 = { - { "active_skill_quality_duration_+%_final", -0.5 }, - }, }, constantStats = { { "skill_override_pvp_scaling_time_ms", 1000 }, @@ -7277,16 +7071,7 @@ skills["MagmaOrb"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate3 = { - { "magma_orb_%_chance_to_big_explode_instead_of_chaining", 0.5 }, + { "number_of_chains", 0.1 }, }, }, constantStats = { @@ -7361,9 +7146,6 @@ skills["DamageOverTimeAura"] = { ["delirium_skill_effect_duration_+%"] = { mod("Duration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_ailment_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Ailment, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -7377,12 +7159,6 @@ skills["DamageOverTimeAura"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "delirium_skill_effect_duration_+%", 0.1 }, - }, - Alternate2 = { - { "base_ailment_damage_+%", 0.25 }, - }, }, stats = { "delirium_aura_damage_over_time_+%_final", @@ -7447,6 +7223,9 @@ skills["Manabond"] = { mod("Multiplier:ManabondUnreservedMana", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaUnreserved" }), div = 100, }, + ["quality_display_manabond_is_gem"] = { + -- Display Only + }, }, baseFlags = { spell = true, @@ -7463,13 +7242,7 @@ skills["Manabond"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "lightning_ailment_effect_+%", 1 }, - }, - Alternate2 = { - { "base_mana_cost_-%", 0.5 }, + { "mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage", 0.5 }, }, }, stats = { @@ -7478,6 +7251,8 @@ skills["Manabond"] = { "mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage", "is_area_damage", "console_skill_dont_chase", + "display_manabond_length", + "quality_display_manabond_is_gem", }, levels = { [1] = { 0.30000001192093, 1.7000000476837, 25, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { ManaPercent = 5, }, }, @@ -7550,15 +7325,8 @@ skills["OrbOfStorms"] = { }, qualityStats = { Default = { - { "lightning_damage_+%", 1 }, - }, - Alternate1 = { { "projectile_number_to_split", 0.1 }, }, - Alternate2 = { - { "orb_of_storms_maximum_number_of_hits", -0.25 }, - { "base_reduce_enemy_lightning_resistance_%", 0.25 }, - }, }, constantStats = { { "projectile_number_to_split", 3 }, @@ -7618,9 +7386,9 @@ skills["OrbOfStorms"] = { skills["MagmaSigil"] = { name = "Penance Brand", color = 3, - baseEffectiveness = 4.723, - incrementalEffectiveness = 0.04675, - description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, adding energy to the branded enemy. Each activation, energy spreads from each energised enemy to an enemy in range which is not energised by the brand. If the branded enemy has 20 energy, each activation will instead deal a pulse of area damage. Energy explodes when the energised enemy dies or the brand is removed, dealing damage in an area.", + baseEffectiveness = 4.731999874115, + incrementalEffectiveness = 0.046720001846552, + description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, adding energy to the branded enemy. When the branded enemy reaches 20 energy, a large explosion occurs and the brand is removed.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Brand] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "brand_skill_stat_descriptions", castTime = 0.75, @@ -7648,19 +7416,12 @@ skills["MagmaSigil"] = { Default = { { "sigil_attached_target_hit_damage_+%_final", 0.5 }, }, - Alternate1 = { - { "skill_physical_damage_%_to_convert_to_fire", 1 }, - }, - Alternate2 = { - { "base_chance_to_shock_%", 1 }, - }, }, constantStats = { { "base_number_of_sigils_allowed_per_target", 1 }, { "base_sigil_repeat_frequency_ms", 100 }, { "base_secondary_skill_effect_duration", 6000 }, { "skill_physical_damage_%_to_convert_to_lightning", 50 }, - { "base_skill_effect_duration", 2500 }, { "active_skill_ailment_damage_+%_final", -30 }, }, stats = { @@ -7668,8 +7429,9 @@ skills["MagmaSigil"] = { "spell_maximum_base_physical_damage", "is_area_damage", "additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency", - "skill_can_add_multiple_charges_per_action", "console_skill_dont_chase", + "quality_display_sigil_attached_target_damage_is_gem", + "brand_atttached_duration_is_infinite", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 5.7, PvPDamageMultiplier = -70, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, @@ -7717,13 +7479,21 @@ skills["MagmaSigil"] = { skills["PowerSiphon"] = { name = "Power Siphon", color = 3, - description = "Fires your wand to unleash projectiles that fire toward enemies in front of you or to your sides, dealing increased damage and granting you a power charge if an enemy is killed by, or soon after, the hit.", + description = "Fires your wand to fire a single projectile each at a number of nearby enemies, granting you a power charge if an enemy is killed by, or soon after, the hit.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, weaponTypes = { ["Wand"] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + statMap = { + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), + }, + ["power_siphon_base_fire_at_x_targets"] = { + flag("OneShotProj") + }, + }, baseFlags = { attack = true, projectile = true, @@ -7732,22 +7502,19 @@ skills["PowerSiphon"] = { Default = { { "critical_strike_multiplier_+_per_power_charge", 0.5 }, }, - Alternate1 = { - { "number_of_additional_projectiles", 0.05 }, - }, - Alternate2 = { - { "critical_ailment_dot_multiplier_+", 1 }, - }, }, constantStats = { { "chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%", 20 }, { "critical_strike_multiplier_+_per_power_charge", 20 }, - { "critical_strike_chance_+%_final_per_power_charge", 10 }, + { "critical_strike_chance_+%_final_per_power_charge_from_power_siphon", 10 }, + { "number_of_projectiles_override", 1 }, }, stats = { - "soulfeast_number_of_secondary_projectiles", + "power_siphon_base_fire_at_x_targets", "kill_enemy_on_hit_if_under_10%_life", "skill_can_fire_wand_projectiles", + "projectiles_are_not_fired", + "skill_can_add_multiple_charges_per_action", }, levels = { [1] = { 4, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 7, }, }, @@ -7802,6 +7569,14 @@ skills["VaalPowerSiphon"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + statMap = { + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), + }, + ["power_siphon_fire_at_all_targets"] = { + -- Display Only + }, + }, baseFlags = { attack = true, projectile = true, @@ -7817,7 +7592,7 @@ skills["VaalPowerSiphon"] = { constantStats = { { "chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%", 100 }, { "critical_strike_multiplier_+_per_power_charge", 25 }, - { "critical_strike_chance_+%_final_per_power_charge", 20 }, + { "critical_strike_chance_+%_final_per_power_charge_from_power_siphon", 20 }, }, stats = { "power_siphon_fire_at_all_targets", @@ -7891,6 +7666,9 @@ skills["Sanctify"] = { ["sanctify_wave_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, + ["quality_display_sanctify_is_gem"] = { + -- Display Only + }, }, baseFlags = { spell = true, @@ -7899,20 +7677,14 @@ skills["Sanctify"] = { }, baseMods = { skill("radius", 18), + skill("radiusLabel", "Initial Hit:"), skill("radiusSecondary", 50), + skill("radiusSecondaryLabel", "Shockwave:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "purifying_flame_%_chance_to_create_consecrated_ground_around_you", 0.5 }, - }, - Alternate2 = { - { "consecrated_ground_enemy_damage_taken_+%", 0.25 }, - }, - Alternate3 = { - { "consecrated_ground_effect_+%", 1 }, + { "active_skill_base_radius_+", 0.1 }, + { "active_skill_ground_consecration_radius_+", 0.15 }, }, }, constantStats = { @@ -7928,6 +7700,7 @@ skills["Sanctify"] = { "active_skill_ground_consecration_radius_+", "is_area_damage", "visual_hit_effect_elemental_is_holy", + "quality_display_sanctify_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 0, 0, damageEffectiveness = 3, critChance = 5.5, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, @@ -7980,21 +7753,9 @@ skills["Purity"] = { statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { - ["base_maximum_fire_damage_resistance_%"] = { - mod("FireResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_maximum_cold_damage_resistance_%"] = { - mod("ColdResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_maximum_lightning_damage_resistance_%"] = { - mod("LightningResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, ["base_resist_all_elements_%"] = { mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["reduce_enemy_elemental_resistance_%"] = { - mod("ElementalPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, ["immune_to_status_ailments"] = { flag("ElementalAilmentImmune", { type = "GlobalEffect", effectType = "Aura"}), }, @@ -8009,13 +7770,7 @@ skills["Purity"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate1 = { - { "aura_effect_+%", 0.5 }, - }, - Alternate2 = { - { "reduce_enemy_elemental_resistance_%", 0.05 }, + { "base_resist_all_elements_%", 0.25 }, }, }, stats = { @@ -8081,12 +7836,6 @@ skills["LightningResistAura"] = { ["base_maximum_lightning_damage_resistance_%"] = { mod("LightningResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_shock_%"] = { - mod("AvoidShock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_reduce_enemy_lightning_resistance_%"] = { - mod("LightningPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -8098,13 +7847,7 @@ skills["LightningResistAura"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate1 = { - { "base_avoid_shock_%", 0.25 }, - }, - Alternate2 = { - { "base_reduce_enemy_lightning_resistance_%", 0.05 }, + { "base_lightning_damage_resistance_%", 0.5 }, }, }, stats = { @@ -8262,9 +8005,6 @@ skills["MortarBarrageMine"] = { ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), }, - ["damage_+%_if_firing_atleast_7_projectiles"] = { - mod("Damage", "INC", nil, 0, 0, { type = "StatThreshold", stat = "ProjectileCount", threshold = 7 }), - }, }, baseFlags = { spell = true, @@ -8282,23 +8022,13 @@ skills["MortarBarrageMine"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate1 = { - { "burn_damage_+%", 5 }, - { "base_chance_to_ignite_%", 1 }, - }, - Alternate2 = { - { "aura_effect_+%", 1 }, - }, - Alternate3 = { - { "damage_+%_if_firing_atleast_7_projectiles", 2 }, + { "base_number_of_projectiles", 0.05 }, }, }, constantStats = { { "base_mine_duration", 5000 }, { "base_mine_detonation_time_ms", 350 }, - { "number_of_additional_projectiles", 2 }, + { "base_number_of_projectiles", 3 }, }, stats = { "spell_minimum_base_fire_damage", @@ -8314,6 +8044,7 @@ skills["MortarBarrageMine"] = { "base_is_projectile", "display_additional_projectile_per_4_mines_in_detonation_sequence", "projectile_behaviour_only_explode", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, critChance = 5.5, PvPDamageMultiplier = -30, damageEffectiveness = 0.8, manaReservationFlat = 4, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, @@ -8364,7 +8095,7 @@ skills["RaiseSpectre"] = { baseEffectiveness = 0, description = "Raises a spectral version of a defeated foe as a minion to fight for you in battle.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.SummonsTotem] = true, [SkillType.Trapped] = true, [SkillType.RemoteMined] = true, [SkillType.DamageOverTime] = true, [SkillType.Channel] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, minionList = { @@ -8386,28 +8117,18 @@ skills["RaiseSpectre"] = { }, qualityStats = { Default = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate1 = { - { "minion_melee_damage_+%", 1 }, - { "minion_maximum_life_+%", 1 }, - }, - Alternate2 = { - { "minion_stun_threshold_reduction_+%", 0.5 }, - }, - Alternate3 = { - { "minion_%_chance_to_be_summoned_with_maximum_frenzy_charges", 5 }, + { "minion_elemental_resistance_%", 1 }, }, }, constantStats = { { "active_skill_minion_movement_velocity_+%_final", 55 }, { "movement_velocity_cap", -53 }, + { "minion_elemental_resistance_%", 30 }, }, stats = { "base_number_of_spectres_allowed", "raised_spectre_level", "accuracy_rating", - "minion_elemental_resistance_30%", "infinite_minion_duration", }, levels = { @@ -8457,9 +8178,9 @@ skills["RaiseZombie"] = { name = "Raise Zombie", color = 3, baseEffectiveness = 0, - description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee attack and an area of effect slam which cannot be evaded.", + description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee strike.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Area] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, minionList = { @@ -8472,6 +8193,9 @@ skills["RaiseZombie"] = { ["zombie_slam_area_of_effect_+%"] = { mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillId", skillId = "ZombieSlam" }) }), }, + ["quality_display_raise_zombie_is_gem+%"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -8480,17 +8204,7 @@ skills["RaiseZombie"] = { }, qualityStats = { Default = { - { "minion_maximum_life_+%", 1 }, - }, - Alternate1 = { - { "zombie_slam_cooldown_speed_+%", 2 }, - }, - Alternate2 = { - { "minion_life_regeneration_rate_per_minute_%", 6 }, - }, - Alternate3 = { - { "minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second", 1 }, - { "minions_deal_%_of_physical_damage_as_additional_chaos_damage", 0.5 }, + { "base_number_of_zombies_allowed", 0.05 }, }, }, constantStats = { @@ -8499,51 +8213,51 @@ skills["RaiseZombie"] = { stats = { "base_number_of_zombies_allowed", "base_display_minion_actor_level", - "zombie_slam_cooldown_speed_+%", - "zombie_slam_area_of_effect_+%", + "active_skill_minion_life_+%_final", "infinite_minion_duration", - }, - levels = { - [1] = { 3, 1, 0, 0, levelRequirement = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 9, }, }, - [2] = { 3, 2, 4, 4, levelRequirement = 2, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 10, }, }, - [3] = { 3, 4, 8, 8, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 11, }, }, - [4] = { 3, 7, 12, 12, levelRequirement = 7, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [5] = { 4, 11, 16, 16, levelRequirement = 11, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [6] = { 4, 16, 20, 20, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [7] = { 4, 20, 24, 24, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [8] = { 4, 24, 28, 28, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [9] = { 4, 28, 32, 32, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [10] = { 4, 32, 36, 36, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [11] = { 4, 36, 40, 40, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [12] = { 5, 40, 44, 44, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [13] = { 5, 44, 48, 48, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [14] = { 5, 48, 52, 52, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [15] = { 5, 52, 56, 56, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [16] = { 5, 56, 60, 60, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [17] = { 5, 60, 64, 64, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [18] = { 6, 64, 68, 68, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [19] = { 6, 67, 72, 72, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [20] = { 6, 70, 76, 76, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 28, }, }, - [21] = { 6, 72, 80, 80, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [22] = { 6, 74, 84, 84, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [23] = { 6, 76, 88, 88, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 31, }, }, - [24] = { 6, 78, 92, 92, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [25] = { 7, 80, 96, 96, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 33, }, }, - [26] = { 7, 82, 100, 100, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [27] = { 7, 84, 104, 104, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, - [28] = { 7, 86, 108, 108, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [29] = { 7, 88, 112, 112, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, - [30] = { 7, 90, 116, 116, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [31] = { 7, 91, 118, 118, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [32] = { 7, 92, 120, 120, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, - [33] = { 7, 93, 122, 122, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, - [34] = { 8, 94, 124, 124, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [35] = { 8, 95, 126, 126, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [36] = { 8, 96, 128, 128, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, - [37] = { 8, 97, 130, 130, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, - [38] = { 8, 98, 132, 132, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [39] = { 8, 99, 134, 134, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [40] = { 8, 100, 136, 136, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + "quality_display_raise_zombie_is_gem", + }, + levels = { + [1] = { 3, 1, 0, levelRequirement = 1, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, + [2] = { 3, 2, 2, levelRequirement = 2, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, + [3] = { 3, 4, 4, levelRequirement = 4, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [4] = { 3, 7, 6, levelRequirement = 7, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [5] = { 4, 11, 8, levelRequirement = 11, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [6] = { 4, 16, 10, levelRequirement = 16, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [7] = { 4, 20, 12, levelRequirement = 20, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [8] = { 4, 24, 14, levelRequirement = 24, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [9] = { 4, 28, 16, levelRequirement = 28, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [10] = { 4, 32, 18, levelRequirement = 32, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [11] = { 4, 36, 20, levelRequirement = 36, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [12] = { 5, 40, 22, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [13] = { 5, 44, 24, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [14] = { 5, 48, 26, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [15] = { 5, 52, 28, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [16] = { 5, 56, 30, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [17] = { 5, 60, 32, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [18] = { 6, 64, 34, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [19] = { 6, 67, 36, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, + [20] = { 6, 70, 38, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, cost = { Mana = 28, }, }, + [21] = { 6, 72, 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, cost = { Mana = 29, }, }, + [22] = { 6, 74, 42, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, + [23] = { 6, 76, 44, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, cost = { Mana = 31, }, }, + [24] = { 6, 78, 46, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, + [25] = { 7, 80, 48, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, cost = { Mana = 33, }, }, + [26] = { 7, 82, 50, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, + [27] = { 7, 84, 52, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, cost = { Mana = 35, }, }, + [28] = { 7, 86, 54, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, + [29] = { 7, 88, 56, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, cost = { Mana = 37, }, }, + [30] = { 7, 90, 58, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [31] = { 7, 91, 59, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [32] = { 7, 92, 60, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, cost = { Mana = 39, }, }, + [33] = { 7, 93, 61, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, cost = { Mana = 39, }, }, + [34] = { 8, 94, 62, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [35] = { 8, 95, 63, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [36] = { 8, 96, 64, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, cost = { Mana = 41, }, }, + [37] = { 8, 97, 65, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, cost = { Mana = 41, }, }, + [38] = { 8, 98, 66, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [39] = { 8, 99, 67, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [40] = { 8, 100, 68, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 43, }, }, }, } skills["RighteousFire"] = { @@ -8592,17 +8306,10 @@ skills["RighteousFire"] = { }, baseMods = { skill("dotIsArea", true), - skill("radius", 18), }, qualityStats = { Default = { - { "active_skill_base_radius_+", 0.15 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "spell_damage_+%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, }, constantStats = { @@ -8610,10 +8317,11 @@ skills["RighteousFire"] = { { "base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute", 5400 }, { "base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute", 4200 }, { "base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute", 4200 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "righteous_fire_spell_damage_+%_final", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", }, levels = { [1] = { 20, 0, storedUses = 1, levelRequirement = 16, cooldown = 0.3, statInterpolation = { 1, 1, }, }, @@ -8691,16 +8399,16 @@ skills["VaalRighteousFire"] = { }, baseMods = { skill("dotIsArea", true), - skill("radius", 30), }, qualityStats = { Default = { - { "active_skill_base_radius_+", 0.15 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, }, constantStats = { { "vaal_righteous_fire_life_and_es_%_to_lose_on_use", 60 }, { "base_skill_effect_duration", 4000 }, + { "active_skill_base_area_of_effect_radius", 30 }, }, stats = { "vaal_righteous_fire_life_and_es_%_as_damage_per_second", @@ -8756,7 +8464,7 @@ skills["FireBeam"] = { color = 3, baseEffectiveness = 3.6275000572205, incrementalEffectiveness = 0.048900000751019, - description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam can turn.", + description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam raises the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam turns.", skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Fire] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channel] = true, [SkillType.DegenOnlySpellDamage] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.25, @@ -8780,6 +8488,9 @@ skills["FireBeam"] = { ["display_max_fire_beam_stacks"] = { mod("Multiplier:ScorchingRayMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, + ["quality_display_firebeam_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -8791,14 +8502,7 @@ skills["FireBeam"] = { }, qualityStats = { Default = { - { "fire_beam_length_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "base_cast_speed_+%", 2 }, - { "active_skill_quality_duration_+%_final", -2 }, + { "fire_beam_additional_stack_damage_+%_final", 0.5 }, }, }, constantStats = { @@ -8810,6 +8514,7 @@ skills["FireBeam"] = { stats = { "base_fire_damage_to_deal_per_minute", "spell_damage_modifiers_apply_to_skill_dot", + "quality_display_firebeam_is_gem", }, levels = { [1] = { 16.666667039196, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 2, }, }, @@ -8875,9 +8580,6 @@ skills["ShockNova"] = { ["shock_nova_ring_chance_to_shock_+%"] = { mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"] = { - mod("ShockAsThoughDealing", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, }, baseFlags = { spell = true, @@ -8888,13 +8590,7 @@ skills["ShockNova"] = { }, qualityStats = { Default = { - { "shock_duration_+%", 2 }, - }, - Alternate1 = { - { "shock_nova_ring_shocks_as_if_dealing_damage_+%_final", 5 }, - }, - Alternate2 = { - { "lightning_damage_+%", 1 }, + { "shock_maximum_magnitude_+", 0.5 }, }, }, constantStats = { @@ -8959,9 +8655,6 @@ skills["CircleOfPower"] = { statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0.5, statMap = { - ["circle_of_power_skill_cost_mana_cost_+%"] = { - mod("ManaCost", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "SigilOfPowerStage", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, ["circle_of_power_min_added_lightning_per_stage"] = { mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "SigilOfPowerStage", limitVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "SigilOfPowerStage", limitVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), @@ -8973,17 +8666,14 @@ skills["CircleOfPower"] = { ["circle_of_power_enemy_damage_+%_final_at_max_stages"] = { mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", actor = "enemy", var = "SigilOfPowerStage", thresholdVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Debuff", effectName = "Sigil of Power" }), }, - ["spell_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, - ["base_chance_to_shock_%_from_skill"] = { - mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "MultiplierThreshold", var = "SigilOfPowerStage", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, ["circle_of_power_max_stages"] = { mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, ["quality_display_circle_of_power_is_gem"] = { -- Display Only + }, + ["quality_display_circle_of_power_damage_is_gem"] = { + -- Display Only }, }, baseFlags = { @@ -8997,17 +8687,7 @@ skills["CircleOfPower"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "circle_of_power_max_stages", -0.05 }, - }, - Alternate2 = { - { "base_chance_to_shock_%_from_skill", 1 }, - }, - Alternate3 = { - { "circle_of_power_skill_cost_mana_cost_+%", -0.5 }, - { "spell_damage_+%", 1 }, + { "circle_of_power_enemy_damage_+%_final_at_max_stages", -0.2 }, }, }, constantStats = { @@ -9021,6 +8701,7 @@ skills["CircleOfPower"] = { "circle_of_power_enemy_damage_+%_final_at_max_stages", "quality_display_circle_of_power_is_gem", "display_sigil_of_power_stage_gain_delay", + "quality_display_circle_of_power_damage_is_gem", }, levels = { [1] = { 0.10000000149012, 1.8999999761581, 72, -10, storedUses = 1, levelRequirement = 34, cooldown = 10, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, @@ -9091,10 +8772,6 @@ skills["IceSiphonTrap"] = { mod("ManaRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "SiphoningTrapSiphoning" }, { type = "MultiplierThreshold", threshold = 1, var = "EnemyAffectedBySiphoningTrap" }), div = 60, }, - ["skill_energy_shield_regeneration_%_per_minute_per_affected_enemy"] = { - mod("EnergyShieldRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "SiphoningTrapSiphoning" }, { type = "MultiplierThreshold", threshold = 1, var = "EnemyAffectedBySiphoningTrap" }), - div = 60, - }, }, baseFlags = { spell = true, @@ -9103,16 +8780,7 @@ skills["IceSiphonTrap"] = { }, qualityStats = { Default = { - { "cold_ailment_effect_+%", 1 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "ice_siphon_trap_max_beam_targets", 0.1 }, - }, - Alternate3 = { - { "skill_energy_shield_regeneration_%_per_minute_per_affected_enemy", 1.2 }, + { "ice_siphon_trap_max_beam_targets", 0.2 }, }, }, constantStats = { @@ -9129,6 +8797,8 @@ skills["IceSiphonTrap"] = { "base_skill_is_trapped", "is_trap", "spell_damage_modifiers_apply_to_skill_dot", + "quality_display_ice_siphon_trap_is_gem", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 16.666667039196, 76, 17, 762, 176, storedUses = 1, levelRequirement = 10, cooldown = 4, statInterpolation = { 3, 1, 1, 1, 1, }, cost = { Mana = 7, }, }, @@ -9193,16 +8863,7 @@ skills["Soulrend"] = { }, qualityStats = { Default = { - { "chaos_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate3 = { - { "hit_damage_+%", 5 }, + { "base_skill_effect_duration", 10 }, }, }, constantStats = { @@ -9277,16 +8938,7 @@ skills["Spark"] = { }, qualityStats = { Default = { - { "number_of_additional_projectiles", 0.1 }, - }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "number_of_additional_projectiles", 0.1 }, - }, - Alternate3 = { - { "skill_lightning_damage_%_to_convert_to_chaos", 2 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { @@ -9295,50 +8947,51 @@ skills["Spark"] = { stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "number_of_additional_projectiles", + "base_number_of_projectiles", "base_is_projectile", - }, - levels = { - [1] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 3, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + "quality_display_base_number_of_projectiles_is_gem", + }, + levels = { + [1] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 4, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 5, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 7, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 8, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 9, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 10, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 11, damageEffectiveness = 1.9, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, }, } skills["VaalSparkSpiralNova"] = { @@ -9357,7 +9010,7 @@ skills["VaalSparkSpiralNova"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { @@ -9368,52 +9021,51 @@ skills["VaalSparkSpiralNova"] = { stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "base_projectile_speed_+%", "base_is_projectile", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "cannot_cancel_skill_before_contact_point", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 0, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 1, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 2, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 3, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 4, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 5, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 6, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 7, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 8, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 9, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 10, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 11, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 12, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 13, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 14, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 15, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 16, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 17, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 18, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 19, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 20, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 21, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 22, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 23, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 24, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 25, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 26, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 27, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 28, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 29, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 29, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 30, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 30, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 31, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 31, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 32, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 32, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 33, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 33, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 34, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [2] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 2, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [3] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [4] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 7, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [5] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 11, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [6] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [7] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [8] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [9] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [10] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [11] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [12] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [13] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [14] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [15] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [16] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [17] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [18] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [19] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [20] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [21] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [22] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [23] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [24] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [25] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [26] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [27] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [28] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [29] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [30] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [31] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [32] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [33] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [34] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [35] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [36] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [37] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [38] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [39] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [40] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, vaalStoredUses = 1, soulPreventionDuration = 5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, }, } skills["Spellslinger"] = { @@ -9425,6 +9077,7 @@ skills["Spellslinger"] = { castTime = 0, statMap = { ["spellslinger_mana_reservation"] = { + -- Display only }, }, baseFlags = { @@ -9434,12 +9087,6 @@ skills["Spellslinger"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { "spellslinger_mana_reservation", @@ -9509,6 +9156,9 @@ skills["SupportSpellslinger"] = { ["spellslinger_trigger_on_wand_attack_%"] = { skill("triggeredBySpellSlinger", nil, { type = "SkillType", skillType = SkillType.Triggerable }, { type = "SkillType", skillType = SkillType.Spell }), }, + ["quality_display_wand_damage_as_added_spell_damage_is_gem"] = { + -- Display only + }, }, baseMods = { flag("Condition:SupportedBySpellslinger"), @@ -9518,13 +9168,6 @@ skills["SupportSpellslinger"] = { Default = { { "gain_%_of_base_wand_damage_as_added_spell_damage", 1 }, }, - Alternate1 = { - { "chance_to_freeze_shock_ignite_%", 1 }, - }, - Alternate2 = { - { "gain_%_of_base_wand_damage_as_added_spell_damage", 2 }, - { "base_cooldown_speed_+%", -2 }, - }, }, constantStats = { { "spellslinger_trigger_on_wand_attack_%", 100 }, @@ -9533,6 +9176,7 @@ skills["SupportSpellslinger"] = { "gain_%_of_base_wand_damage_as_added_spell_damage", "base_cooldown_speed_+%", "support_spellslinger_damage_+%_final", + "quality_display_wand_damage_as_added_spell_damage_is_gem", }, levels = { [1] = { 60, 0, -37, PvPDamageMultiplier = -50, cooldown = 0.6, manaReservationPercent = 30, storedUses = 1, levelRequirement = 24, statInterpolation = { 1, 1, 1, }, }, @@ -9577,183 +9221,83 @@ skills["SupportSpellslinger"] = { [40] = { 264, 68, -24, PvPDamageMultiplier = -50, cooldown = 0.6, manaReservationPercent = 20, storedUses = 1, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, } -skills["BrandSupport"] = { - name = "Arcanist Brand", +skills["SoulLink"] = { + name = "Soul Link", color = 3, - description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, triggering linked spells. The brand will detach if the enemy dies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Multicastable] = true, [SkillType.Brand] = true, }, - statDescriptionScope = "brand_skill_stat_descriptions", - castTime = 0.8, - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "Speed", "BrandActivationFrequency") / 100) / activeSkill.skillModList:More(activeSkill.skillCfg, "BrandActivationFrequency") - end, + description = "Targets an allied player to apply a buff which links you to them for a duration. While linked, your Energy Shield will intercept some of the damage they would take. If the target dies while linked, you will also die. This skill cannot be triggered, or used by Totems, Traps, or Mines.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Link] = true, }, + statDescriptionScope = "buff_skill_stat_descriptions", + castTime = 0.5, + statMap = { + ["soul_link_grants_damage_taken_+%_final"] = { + mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["soul_link_grants_mana_regeneration_+%"] = { + mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"] = { + mod("TakenFromParentESBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + }, baseFlags = { spell = true, duration = true, - brand = true, }, qualityStats = { Default = { - { "sigil_repeat_frequency_+%", 0.5 }, - }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate3 = { - { "dummy_stat_display_nothing", 0 }, + { "base_skill_effect_duration", 75 }, }, }, constantStats = { - { "base_number_of_sigils_allowed_per_target", 1 }, - { "base_sigil_repeat_frequency_ms", 1000 }, - { "base_secondary_skill_effect_duration", 5000 }, - { "base_skill_effect_duration", 3000 }, + { "soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you", 30 }, }, stats = { - "additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency", - "base_deal_no_damage", + "soul_link_grants_damage_taken_+%_final", + "base_skill_effect_duration", + "skill_cost_over_time_is_not_removed_with_skill", + "display_link_stuff", }, levels = { - [1] = { levelRequirement = 38, cost = { Mana = 18, }, }, - [2] = { levelRequirement = 40, cost = { Mana = 18, }, }, - [3] = { levelRequirement = 42, cost = { Mana = 19, }, }, - [4] = { levelRequirement = 44, cost = { Mana = 20, }, }, - [5] = { levelRequirement = 46, cost = { Mana = 22, }, }, - [6] = { levelRequirement = 48, cost = { Mana = 23, }, }, - [7] = { levelRequirement = 50, cost = { Mana = 23, }, }, - [8] = { levelRequirement = 52, cost = { Mana = 24, }, }, - [9] = { levelRequirement = 54, cost = { Mana = 25, }, }, - [10] = { levelRequirement = 56, cost = { Mana = 25, }, }, - [11] = { levelRequirement = 58, cost = { Mana = 26, }, }, - [12] = { levelRequirement = 60, cost = { Mana = 26, }, }, - [13] = { levelRequirement = 62, cost = { Mana = 28, }, }, - [14] = { levelRequirement = 64, cost = { Mana = 29, }, }, - [15] = { levelRequirement = 65, cost = { Mana = 29, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 30, }, }, - [17] = { levelRequirement = 67, cost = { Mana = 30, }, }, - [18] = { levelRequirement = 68, cost = { Mana = 31, }, }, - [19] = { levelRequirement = 69, cost = { Mana = 32, }, }, - [20] = { levelRequirement = 70, cost = { Mana = 32, }, }, - [21] = { levelRequirement = 72, cost = { Mana = 34, }, }, - [22] = { levelRequirement = 74, cost = { Mana = 34, }, }, - [23] = { levelRequirement = 76, cost = { Mana = 35, }, }, - [24] = { levelRequirement = 78, cost = { Mana = 36, }, }, - [25] = { levelRequirement = 80, cost = { Mana = 36, }, }, - [26] = { levelRequirement = 82, cost = { Mana = 37, }, }, - [27] = { levelRequirement = 84, cost = { Mana = 37, }, }, - [28] = { levelRequirement = 86, cost = { Mana = 38, }, }, - [29] = { levelRequirement = 88, cost = { Mana = 38, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 40, }, }, - [31] = { levelRequirement = 91, cost = { Mana = 40, }, }, - [32] = { levelRequirement = 92, cost = { Mana = 41, }, }, - [33] = { levelRequirement = 93, cost = { Mana = 41, }, }, - [34] = { levelRequirement = 94, cost = { Mana = 41, }, }, - [35] = { levelRequirement = 95, cost = { Mana = 42, }, }, - [36] = { levelRequirement = 96, cost = { Mana = 42, }, }, - [37] = { levelRequirement = 97, cost = { Mana = 42, }, }, - [38] = { levelRequirement = 98, cost = { Mana = 42, }, }, - [39] = { levelRequirement = 99, cost = { Mana = 43, }, }, - [40] = { levelRequirement = 100, cost = { Mana = 43, }, }, - }, -} -skills["SupportBrandSupport"] = { - name = "Arcanist Brand", - description = "Supports spell skills that have no reservation. Cannot support skills used by totems, traps or mines. Cannot modify the skills of minions.", - color = 3, - support = true, - requireSkillTypes = { SkillType.Triggerable, SkillType.Spell, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.InbuiltTrigger, }, - isTrigger = true, - ignoreMinionTypes = true, - statDescriptionScope = "gem_stat_descriptions", - addFlags = { - brand = true, - }, - statMap = { - ["support_brand_damage_+%_final"] = { - mod("TriggeredDamage", "MORE", nil), - }, - ["support_brand_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), - }, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"] = { - mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "Condition", var = "TargetingBrandedEnemy"}), - }, - }, - addSkillTypes = { SkillType.Brand, }, - baseMods = { - skill("triggeredByBrand", true), - }, - qualityStats = { - Default = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate3 = { - { "chaining_range_+%", 1 }, - }, - }, - constantStats = { - { "support_brand_area_of_effect_+%_final", -40 }, - { "chaining_range_+%", -40 }, - { "projectile_maximum_range_override", 48 }, - }, - stats = { - "support_brand_damage_+%_final", - "trigger_brand_support_hit_damage_+%_final_vs_branded_enemy", - "triggered_by_brand_support", - "projectiles_not_offset", - }, - levels = { - [1] = { -69, 40, PvPDamageMultiplier = -70, levelRequirement = 38, statInterpolation = { 1, 1, }, }, - [2] = { -69, 41, PvPDamageMultiplier = -70, levelRequirement = 40, statInterpolation = { 1, 1, }, }, - [3] = { -69, 42, PvPDamageMultiplier = -70, levelRequirement = 42, statInterpolation = { 1, 1, }, }, - [4] = { -68, 43, PvPDamageMultiplier = -70, levelRequirement = 44, statInterpolation = { 1, 1, }, }, - [5] = { -68, 44, PvPDamageMultiplier = -70, levelRequirement = 46, statInterpolation = { 1, 1, }, }, - [6] = { -68, 45, PvPDamageMultiplier = -70, levelRequirement = 48, statInterpolation = { 1, 1, }, }, - [7] = { -67, 46, PvPDamageMultiplier = -70, levelRequirement = 50, statInterpolation = { 1, 1, }, }, - [8] = { -67, 47, PvPDamageMultiplier = -70, levelRequirement = 52, statInterpolation = { 1, 1, }, }, - [9] = { -67, 48, PvPDamageMultiplier = -70, levelRequirement = 54, statInterpolation = { 1, 1, }, }, - [10] = { -66, 49, PvPDamageMultiplier = -70, levelRequirement = 56, statInterpolation = { 1, 1, }, }, - [11] = { -66, 50, PvPDamageMultiplier = -70, levelRequirement = 58, statInterpolation = { 1, 1, }, }, - [12] = { -66, 51, PvPDamageMultiplier = -70, levelRequirement = 60, statInterpolation = { 1, 1, }, }, - [13] = { -65, 52, PvPDamageMultiplier = -70, levelRequirement = 62, statInterpolation = { 1, 1, }, }, - [14] = { -65, 53, PvPDamageMultiplier = -70, levelRequirement = 64, statInterpolation = { 1, 1, }, }, - [15] = { -65, 54, PvPDamageMultiplier = -70, levelRequirement = 65, statInterpolation = { 1, 1, }, }, - [16] = { -64, 55, PvPDamageMultiplier = -70, levelRequirement = 66, statInterpolation = { 1, 1, }, }, - [17] = { -64, 56, PvPDamageMultiplier = -70, levelRequirement = 67, statInterpolation = { 1, 1, }, }, - [18] = { -64, 57, PvPDamageMultiplier = -70, levelRequirement = 68, statInterpolation = { 1, 1, }, }, - [19] = { -63, 58, PvPDamageMultiplier = -70, levelRequirement = 69, statInterpolation = { 1, 1, }, }, - [20] = { -63, 59, PvPDamageMultiplier = -70, levelRequirement = 70, statInterpolation = { 1, 1, }, }, - [21] = { -63, 60, PvPDamageMultiplier = -70, levelRequirement = 72, statInterpolation = { 1, 1, }, }, - [22] = { -62, 61, PvPDamageMultiplier = -70, levelRequirement = 74, statInterpolation = { 1, 1, }, }, - [23] = { -62, 62, PvPDamageMultiplier = -70, levelRequirement = 76, statInterpolation = { 1, 1, }, }, - [24] = { -62, 63, PvPDamageMultiplier = -70, levelRequirement = 78, statInterpolation = { 1, 1, }, }, - [25] = { -61, 64, PvPDamageMultiplier = -70, levelRequirement = 80, statInterpolation = { 1, 1, }, }, - [26] = { -61, 65, PvPDamageMultiplier = -70, levelRequirement = 82, statInterpolation = { 1, 1, }, }, - [27] = { -61, 66, PvPDamageMultiplier = -70, levelRequirement = 84, statInterpolation = { 1, 1, }, }, - [28] = { -60, 67, PvPDamageMultiplier = -70, levelRequirement = 86, statInterpolation = { 1, 1, }, }, - [29] = { -60, 68, PvPDamageMultiplier = -70, levelRequirement = 88, statInterpolation = { 1, 1, }, }, - [30] = { -60, 69, PvPDamageMultiplier = -70, levelRequirement = 90, statInterpolation = { 1, 1, }, }, - [31] = { -59, 69, PvPDamageMultiplier = -70, levelRequirement = 91, statInterpolation = { 1, 1, }, }, - [32] = { -59, 70, PvPDamageMultiplier = -70, levelRequirement = 92, statInterpolation = { 1, 1, }, }, - [33] = { -59, 70, PvPDamageMultiplier = -70, levelRequirement = 93, statInterpolation = { 1, 1, }, }, - [34] = { -58, 71, PvPDamageMultiplier = -70, levelRequirement = 94, statInterpolation = { 1, 1, }, }, - [35] = { -58, 71, PvPDamageMultiplier = -70, levelRequirement = 95, statInterpolation = { 1, 1, }, }, - [36] = { -58, 72, PvPDamageMultiplier = -70, levelRequirement = 96, statInterpolation = { 1, 1, }, }, - [37] = { -57, 72, PvPDamageMultiplier = -70, levelRequirement = 97, statInterpolation = { 1, 1, }, }, - [38] = { -57, 73, PvPDamageMultiplier = -70, levelRequirement = 98, statInterpolation = { 1, 1, }, }, - [39] = { -57, 73, PvPDamageMultiplier = -70, levelRequirement = 99, statInterpolation = { 1, 1, }, }, - [40] = { -56, 74, PvPDamageMultiplier = -70, levelRequirement = 100, statInterpolation = { 1, 1, }, }, + [1] = { -5, 8000, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 900, }, }, + [2] = { -5, 8100, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 960, }, }, + [3] = { -6, 8200, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1030, }, }, + [4] = { -6, 8300, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1080, }, }, + [5] = { -7, 8400, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1140, }, }, + [6] = { -7, 8500, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1200, }, }, + [7] = { -8, 8600, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1250, }, }, + [8] = { -8, 8700, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1310, }, }, + [9] = { -9, 8800, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1380, }, }, + [10] = { -9, 8900, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1440, }, }, + [11] = { -10, 9000, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1490, }, }, + [12] = { -10, 9100, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1550, }, }, + [13] = { -11, 9200, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1610, }, }, + [14] = { -11, 9300, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1680, }, }, + [15] = { -12, 9400, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1730, }, }, + [16] = { -12, 9500, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1790, }, }, + [17] = { -13, 9600, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1850, }, }, + [18] = { -13, 9700, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1900, }, }, + [19] = { -14, 9800, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1940, }, }, + [20] = { -14, 9900, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1960, }, }, + [21] = { -15, 10000, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2030, }, }, + [22] = { -15, 10100, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2090, }, }, + [23] = { -16, 10200, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2140, }, }, + [24] = { -16, 10300, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2200, }, }, + [25] = { -17, 10400, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2260, }, }, + [26] = { -17, 10500, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2330, }, }, + [27] = { -18, 10600, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2380, }, }, + [28] = { -18, 10700, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2440, }, }, + [29] = { -19, 10800, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2500, }, }, + [30] = { -19, 10900, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2550, }, }, + [31] = { -19, 11000, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2590, }, }, + [32] = { -20, 11050, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2610, }, }, + [33] = { -20, 11100, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2650, }, }, + [34] = { -20, 11150, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2680, }, }, + [35] = { -20, 11200, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2700, }, }, + [36] = { -21, 11250, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2740, }, }, + [37] = { -21, 11300, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2760, }, }, + [38] = { -21, 11350, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2790, }, }, + [39] = { -21, 11400, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2830, }, }, + [40] = { -22, 11450, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2850, }, }, }, } skills["SpiritOffering"] = { @@ -9781,13 +9325,7 @@ skills["SpiritOffering"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 2 }, - }, - Alternate2 = { - { "spirit_offering_critical_strike_chance_+%", 1 }, + { "offering_spells_effect_+%", 0.5 }, }, }, constantStats = { @@ -9870,16 +9408,7 @@ skills["ConduitSigil"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "additional_chain_chance_%", 1 }, - }, - Alternate3 = { - { "shock_effect_+%", 1 }, + { "conduit_sigil_number_of_beam_targets", 0.05 }, }, }, constantStats = { @@ -9898,6 +9427,8 @@ skills["ConduitSigil"] = { "base_skill_show_average_damage_instead_of_dps", "skill_can_add_multiple_charges_per_action", "console_skill_dont_chase", + "quality_display_storm_brand_is_gem", + "quality_display_sigil_attached_target_damage_is_gem", }, levels = { [1] = { 0.5, 1.5, 80, damageEffectiveness = 0.3, PvPDamageMultiplier = -80, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, @@ -9945,7 +9476,7 @@ skills["ConduitSigil"] = { skills["LightningExplosionMine"] = { name = "Stormblast Mine", color = 3, - baseEffectiveness = 1.1905000209808, + baseEffectiveness = 1.3094999790192, incrementalEffectiveness = 0.043999999761581, description = "Throws a mine that deals damage in an area when detonated.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.RemoteMined] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.AuraAffectsEnemies] = true, [SkillType.Nova] = true, [SkillType.AuraNotOnCaster] = true, }, @@ -9955,6 +9486,9 @@ skills["LightningExplosionMine"] = { ["lightning_explosion_mine_aura_damage_taken_+%"] = { mod("DamageTaken", "INC", nil, 0, 0, { type = "Limit", limit = 150 }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), }, + ["quality_display_stormblast_mine_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -9966,76 +9500,65 @@ skills["LightningExplosionMine"] = { }, qualityStats = { Default = { - { "base_chance_to_shock_%", 0.5 }, - { "lightning_ailment_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "aura_effect_+%", 1 }, - }, - Alternate3 = { - { "lightning_damage_+%", 1 }, + { "lightning_explosion_mine_aura_damage_taken_+%", 0.05 }, }, }, constantStats = { { "base_mine_duration", 5000 }, { "base_mine_detonation_time_ms", 250 }, { "lightning_explosion_mine_aura_damage_taken_+%", 3 }, - { "base_chance_to_shock_%", 20 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "lightning_ailment_effect_+%", "active_skill_base_radius_+", "base_skill_is_mined", "base_skill_show_average_damage_instead_of_dps", "is_remote_mine", "is_area_damage", - }, - levels = { - [1] = { 0.5, 1.5, 20, 0, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 2, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [2] = { 0.5, 1.5, 21, 0, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 2, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [3] = { 0.5, 1.5, 22, 1, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 2, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [4] = { 0.5, 1.5, 23, 1, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.5, 1.5, 24, 1, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.5, 1.5, 25, 1, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.5, 1.5, 26, 2, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.5, 1.5, 27, 2, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 3, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.5, 1.5, 28, 2, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 4, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [10] = { 0.5, 1.5, 29, 3, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 4, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.5, 1.5, 30, 3, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 4, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.5, 1.5, 31, 3, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 4, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.5, 1.5, 32, 3, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.5, 1.5, 33, 4, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [15] = { 0.5, 1.5, 34, 4, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [16] = { 0.5, 1.5, 35, 4, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [17] = { 0.5, 1.5, 36, 4, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [18] = { 0.5, 1.5, 37, 5, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [19] = { 0.5, 1.5, 38, 5, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.5, 1.5, 39, 5, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.5, 1.5, 40, 6, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.5, 1.5, 41, 6, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.5, 1.5, 42, 6, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.5, 1.5, 43, 6, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [25] = { 0.5, 1.5, 44, 7, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [26] = { 0.5, 1.5, 45, 7, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [27] = { 0.5, 1.5, 46, 7, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [28] = { 0.5, 1.5, 47, 8, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [29] = { 0.5, 1.5, 48, 8, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [30] = { 0.5, 1.5, 49, 8, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [31] = { 0.5, 1.5, 49, 8, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [32] = { 0.5, 1.5, 50, 8, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [33] = { 0.5, 1.5, 50, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [34] = { 0.5, 1.5, 51, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [35] = { 0.5, 1.5, 51, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [36] = { 0.5, 1.5, 52, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 8, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [37] = { 0.5, 1.5, 52, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 9, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [38] = { 0.5, 1.5, 53, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 9, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [39] = { 0.5, 1.5, 53, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 9, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [40] = { 0.5, 1.5, 54, 9, damageEffectiveness = 1.1, critChance = 6, manaReservationFlat = 9, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + "quality_display_stormblast_mine_is_gem", + }, + levels = { + [1] = { 0.5, 1.5, 0, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 2, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.5, 1.5, 0, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 2, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.5, 1.5, 1, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 2, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.5, 1.5, 1, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 3, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.5, 1.5, 1, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 3, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [6] = { 0.5, 1.5, 1, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 3, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [7] = { 0.5, 1.5, 2, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 3, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.5, 1.5, 2, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 3, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.5, 1.5, 2, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [10] = { 0.5, 1.5, 3, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [11] = { 0.5, 1.5, 3, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.5, 1.5, 3, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.5, 1.5, 3, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.5, 1.5, 4, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [15] = { 0.5, 1.5, 4, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.5, 1.5, 4, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.5, 1.5, 4, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.5, 1.5, 5, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.5, 1.5, 5, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.5, 1.5, 5, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.5, 1.5, 6, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.5, 1.5, 6, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.5, 1.5, 6, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.5, 1.5, 6, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [25] = { 0.5, 1.5, 7, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [26] = { 0.5, 1.5, 7, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [27] = { 0.5, 1.5, 7, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [28] = { 0.5, 1.5, 8, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [29] = { 0.5, 1.5, 8, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [30] = { 0.5, 1.5, 8, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [31] = { 0.5, 1.5, 8, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [32] = { 0.5, 1.5, 8, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [33] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [34] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [35] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [36] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [37] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [38] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [39] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [40] = { 0.5, 1.5, 9, damageEffectiveness = 1.3, critChance = 6, manaReservationFlat = 9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, }, } skills["Stormbind"] = { @@ -10071,15 +9594,15 @@ skills["Stormbind"] = { ["rune_paint_area_of_effect_+%_per_rune_level"] = { mod("AreaOfEffect", "INC", nil, 0, 0, { type = "Multiplier", var = "RuneLevel" }), }, - ["active_skill_quality_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, ["quality_display_rune_paint_is_gem"] = { -- Display Only }, ["rune_paint_max_rune_level"] = { -- Display Only }, + ["quality_display_rune_paint_area_is_gem"] = { + -- Display Only + }, }, baseFlags = { spell = true, @@ -10094,17 +9617,7 @@ skills["Stormbind"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "shock_effect_+%", 1 }, - }, - Alternate2 = { - { "rune_paint_area_of_effect_+%_per_rune_level", 0.5 }, - }, - Alternate3 = { - { "active_skill_quality_damage_+%_final", 1 }, - { "rune_paint_damage_+%_final_per_rune_level", -3 }, + { "rune_paint_area_of_effect_+%_final_per_rune_level", 0.5 }, }, }, constantStats = { @@ -10123,6 +9636,7 @@ skills["Stormbind"] = { "skill_can_add_multiple_charges_per_action", "damage_cannot_be_reflected_or_leech_if_used_by_other_object", "quality_display_rune_paint_is_gem", + "quality_display_rune_paint_area_is_gem", }, levels = { [1] = { 0.5, 1.5, 5, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, @@ -10167,99 +9681,6 @@ skills["Stormbind"] = { [40] = { 0.5, 1.5, 39, damageEffectiveness = 1.6, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } -skills["SummonReaper"] = { - name = "Summon Reaper", - color = 3, - description = "Summons a powerful Reaper which uses a variety of slashing area attacks. The Reaper's presence weakens your other minions, and it will consume them to temporarily empower and heal itself. Using this skill while the Reaper is already summoned causes it to dash to the targeted location and perform a powerful attack.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, }, - statDescriptionScope = "single_minion_spell_skill_stat_descriptions", - castTime = 0.6, - minionList = { - "SummonedReaper", - }, - statMap = { - ["bleed_on_hit_with_attacks_%"] = { - mod("MinionModifier", "LIST", { mod = mod("BleedChance", "BASE", nil, ModFlag.Attack) }) - }, - ["non_reaper_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["non_reaper_minion_maximum_life_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - }, - baseFlags = { - spell = true, - minion = true, - }, - qualityStats = { - Default = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate1 = { - { "minion_maim_on_hit_%", 0.5 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 1 }, - }, - }, - constantStats = { - { "base_number_of_reapers_allowed", 1 }, - { "display_minion_monster_type", 18 }, - { "bleed_on_hit_with_attacks_%", 50 }, - }, - stats = { - "non_reaper_minion_damage_+%_final", - "non_reaper_minion_maximum_life_+%_final", - "base_display_minion_actor_level", - "minion_maximum_life_+%", - "active_skill_minion_bleeding_damage_+%_final", - "infinite_minion_duration", - }, - levels = { - [1] = { -20, -20, 28, 20, 30, storedUses = 1, levelRequirement = 28, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [2] = { -20, -20, 31, 21, 33, storedUses = 1, levelRequirement = 31, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [3] = { -21, -21, 34, 22, 36, storedUses = 1, levelRequirement = 34, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [4] = { -21, -21, 37, 23, 39, storedUses = 1, levelRequirement = 37, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [5] = { -22, -22, 40, 24, 42, storedUses = 1, levelRequirement = 40, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [6] = { -22, -22, 42, 25, 45, storedUses = 1, levelRequirement = 42, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [7] = { -23, -23, 44, 26, 48, storedUses = 1, levelRequirement = 44, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [8] = { -23, -23, 46, 27, 51, storedUses = 1, levelRequirement = 46, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [9] = { -24, -24, 48, 28, 54, storedUses = 1, levelRequirement = 48, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [10] = { -24, -24, 50, 29, 57, storedUses = 1, levelRequirement = 50, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [11] = { -25, -25, 52, 30, 60, storedUses = 1, levelRequirement = 52, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [12] = { -25, -25, 54, 31, 63, storedUses = 1, levelRequirement = 54, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [13] = { -26, -26, 56, 32, 66, storedUses = 1, levelRequirement = 56, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [14] = { -26, -26, 58, 33, 69, storedUses = 1, levelRequirement = 58, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [15] = { -27, -27, 60, 34, 72, storedUses = 1, levelRequirement = 60, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [16] = { -27, -27, 62, 35, 75, storedUses = 1, levelRequirement = 62, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [17] = { -28, -28, 64, 36, 78, storedUses = 1, levelRequirement = 64, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [18] = { -28, -28, 66, 37, 81, storedUses = 1, levelRequirement = 66, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [19] = { -29, -29, 68, 38, 84, storedUses = 1, levelRequirement = 68, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [20] = { -29, -29, 70, 39, 87, storedUses = 1, levelRequirement = 70, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, - [21] = { -30, -30, 72, 40, 90, storedUses = 1, levelRequirement = 72, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [22] = { -30, -30, 74, 41, 93, storedUses = 1, levelRequirement = 74, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [23] = { -31, -31, 76, 42, 96, storedUses = 1, levelRequirement = 76, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [24] = { -31, -31, 78, 43, 99, storedUses = 1, levelRequirement = 78, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [25] = { -32, -32, 80, 44, 102, storedUses = 1, levelRequirement = 80, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 31, }, }, - [26] = { -32, -32, 82, 45, 105, storedUses = 1, levelRequirement = 82, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [27] = { -33, -33, 84, 46, 108, storedUses = 1, levelRequirement = 84, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [28] = { -33, -33, 86, 47, 111, storedUses = 1, levelRequirement = 86, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 33, }, }, - [29] = { -34, -34, 88, 48, 114, storedUses = 1, levelRequirement = 88, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 33, }, }, - [30] = { -34, -34, 90, 49, 117, storedUses = 1, levelRequirement = 90, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [31] = { -34, -34, 91, 49, 118, storedUses = 1, levelRequirement = 91, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [32] = { -35, -35, 92, 50, 120, storedUses = 1, levelRequirement = 92, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 35, }, }, - [33] = { -35, -35, 93, 50, 121, storedUses = 1, levelRequirement = 93, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 35, }, }, - [34] = { -35, -35, 94, 51, 123, storedUses = 1, levelRequirement = 94, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 35, }, }, - [35] = { -35, -35, 95, 51, 124, storedUses = 1, levelRequirement = 95, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [36] = { -36, -36, 96, 52, 126, storedUses = 1, levelRequirement = 96, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [37] = { -36, -36, 97, 52, 127, storedUses = 1, levelRequirement = 97, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [38] = { -36, -36, 98, 53, 129, storedUses = 1, levelRequirement = 98, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 37, }, }, - [39] = { -36, -36, 99, 53, 130, storedUses = 1, levelRequirement = 99, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 37, }, }, - [40] = { -37, -37, 100, 54, 132, storedUses = 1, levelRequirement = 100, cooldown = 4, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Mana = 37, }, }, - }, -} skills["RuneBlast"] = { name = "Rune Blast", color = 3, @@ -10274,15 +9695,6 @@ skills["RuneBlast"] = { Default = { { "base_cast_speed_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate3 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { }, @@ -10356,9 +9768,6 @@ skills["StormBurstNew"] = { end end, statMap = { - ["storm_burst_zap_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, ["display_storm_burst_jump_time_ms"] = { skill("repeatFrequency", nil), div = 1000, @@ -10377,14 +9786,7 @@ skills["StormBurstNew"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "storm_burst_zap_area_of_effect_+%", 2 }, - { "storm_burst_explosion_area_of_effect_+%", -2 }, + { "base_skill_effect_duration", 20 }, }, }, constantStats = { @@ -10450,7 +9852,7 @@ skills["StormCall"] = { color = 3, baseEffectiveness = 2.4012999534607, incrementalEffectiveness = 0.044100001454353, - description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it. When this happens, it will also set off the lightning at any other markers you've cast.", + description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it and causing lightning strikes at any other markers you've cast.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, @@ -10468,17 +9870,7 @@ skills["StormCall"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 2 }, - { "base_cast_speed_+%", -2 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", -0.5 }, - }, - Alternate3 = { - { "storm_call_chance_to_strike_on_cast_%", 0.25 }, + { "storm_call_chance_to_strike_on_cast_%", 0.75 }, }, }, constantStats = { @@ -10488,52 +9880,51 @@ skills["StormCall"] = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", "active_skill_base_radius_+", - "lightning_ailment_effect_+%", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "console_skill_dont_chase", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 0, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 0, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 1, 12, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 1, 13, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 1, 14, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 2, 15, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 2, 16, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 2, 17, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 3, 18, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 3, 19, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 3, 20, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 4, 21, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 4, 22, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 4, 23, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 5, 24, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 5, 25, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 5, 26, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 6, 27, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 6, 28, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 6, 29, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 7, 30, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 7, 31, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 7, 32, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 8, 33, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 8, 34, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 8, 35, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 9, 36, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 9, 37, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 9, 38, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 10, 39, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 10, 39, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 10, 40, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 10, 40, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 10, 41, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 10, 41, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 11, 42, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 11, 42, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 11, 43, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 11, 43, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 11, 44, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.69999998807907, 1.2999999523163, 0, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.69999998807907, 1.2999999523163, 0, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 1, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.69999998807907, 1.2999999523163, 1, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.69999998807907, 1.2999999523163, 1, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 2, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 2, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 2, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.69999998807907, 1.2999999523163, 3, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.69999998807907, 1.2999999523163, 3, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 3, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 4, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.69999998807907, 1.2999999523163, 4, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [14] = { 0.69999998807907, 1.2999999523163, 4, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [15] = { 0.69999998807907, 1.2999999523163, 5, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 5, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 5, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [18] = { 0.69999998807907, 1.2999999523163, 6, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [19] = { 0.69999998807907, 1.2999999523163, 6, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [20] = { 0.69999998807907, 1.2999999523163, 6, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [21] = { 0.69999998807907, 1.2999999523163, 7, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [22] = { 0.69999998807907, 1.2999999523163, 7, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 7, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [24] = { 0.69999998807907, 1.2999999523163, 8, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [25] = { 0.69999998807907, 1.2999999523163, 8, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [26] = { 0.69999998807907, 1.2999999523163, 8, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [27] = { 0.69999998807907, 1.2999999523163, 9, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 9, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 9, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 10, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 11, damageEffectiveness = 2.5, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, }, } skills["VaalStormCall"] = { @@ -10568,7 +9959,6 @@ skills["VaalStormCall"] = { stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", - "lightning_ailment_effect_+%", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", "monster_stormcall_individually_trigger", @@ -10576,46 +9966,46 @@ skills["VaalStormCall"] = { "cannot_cancel_skill_before_contact_point", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 12, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 13, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 14, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 15, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 16, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 17, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 18, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 19, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 20, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 21, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 22, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 23, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 24, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 25, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 26, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 27, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 28, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 29, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 30, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 31, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 32, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 33, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 34, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 35, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 36, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 37, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 38, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 39, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 39, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 40, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 40, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 41, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 41, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 42, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 42, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 43, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 43, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 44, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [2] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 15, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [3] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 19, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [4] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 23, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [5] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 27, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [6] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [7] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 35, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [8] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 38, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [9] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 41, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [10] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [11] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 47, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [12] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [13] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 53, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [14] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [15] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 59, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [16] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [17] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [18] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [19] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [20] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [21] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [22] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [23] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [24] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [25] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [26] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [27] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [28] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [29] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [30] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [31] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [32] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [33] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [34] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [35] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [36] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [37] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [38] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [39] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [40] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, vaalStoredUses = 1, soulPreventionDuration = 7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, }, } skills["SummonBoneGolem"] = { @@ -10656,12 +10046,6 @@ skills["SummonBoneGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -10673,57 +10057,56 @@ skills["SummonBoneGolem"] = { "bone_golem_grants_minion_minimum_added_physical_damage", "bone_golem_grants_minion_maximum_added_physical_damage", "base_actor_scale_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 1, 2, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, 4, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 2, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, 8, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 3, 10, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, 12, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 4, 14, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 4, 16, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, 18, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, 20, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 6, 22, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, 24, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 7, 26, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, 28, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 8, 30, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, 32, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 9, 34, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 9, 36, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 10, 38, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 10, 40, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 11, 42, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 11, 44, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 12, 46, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 12, 48, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 13, 50, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 13, 52, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 14, 54, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 14, 56, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 15, 58, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 15, 59, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 15, 60, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 15, 61, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 16, 62, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 16, 63, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 16, 64, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 16, 65, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 17, 66, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 17, 67, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 17, 68, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 1, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 1, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 3, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 3, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 4, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 4, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 5, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 6, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 7, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 7, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 8, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 8, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 9, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 9, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 10, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 10, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 11, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 11, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 12, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 12, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 13, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 13, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 14, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 14, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 15, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 15, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 15, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 15, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 16, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 16, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 16, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 16, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 17, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 17, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 17, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["SummonChaosGolem"] = { name = "Summon Chaos Golem", color = 3, - description = "Summons a Chaos Golem that grants you Physical Damage Reduction. The Chaos Golem can use a damage over time Chaos aura and a cascade of Chaos spikes in addition to its melee attack.", + description = "Summons a Chaos Golem that grants you Physical Damage Reduction. The Chaos Golem can cast a damage over time Chaos aura and a cascade of Chaos spikes in addition to its melee attack.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -10750,12 +10133,6 @@ skills["SummonChaosGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -10764,51 +10141,50 @@ skills["SummonChaosGolem"] = { stats = { "base_actor_scale_+%", "chaos_golem_grants_additional_physical_damage_reduction_%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0, 3, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 1, 3, 2, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 1, 3, 4, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 2, 3, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 2, 3, 8, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 3, 3, 10, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 3, 3, 12, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 4, 3, 14, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 4, 3, 16, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 5, 3, 18, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 5, 3, 20, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 6, 4, 22, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 6, 4, 24, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 7, 4, 26, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 7, 4, 28, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 8, 4, 30, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 8, 4, 32, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 9, 4, 34, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 9, 4, 36, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 10, 4, 38, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 10, 4, 40, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 11, 5, 42, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 11, 5, 44, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 12, 5, 46, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 12, 5, 48, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 13, 5, 50, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 13, 5, 52, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 14, 5, 54, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 14, 5, 56, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 15, 5, 58, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 15, 5, 59, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 15, 6, 60, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 15, 6, 61, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 16, 6, 62, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 16, 6, 63, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 16, 6, 64, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 16, 6, 65, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 17, 6, 66, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 17, 6, 67, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 17, 6, 68, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0, 3, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 1, 3, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 1, 3, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 2, 3, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 2, 3, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 3, 3, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 3, 3, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 4, 3, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 4, 3, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 5, 4, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 5, 4, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 6, 4, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 6, 4, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 7, 4, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 7, 4, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 8, 4, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 8, 4, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 9, 4, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 9, 4, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 10, 5, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 10, 5, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 11, 5, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 11, 5, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 12, 5, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 12, 5, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 13, 5, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 13, 5, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 14, 5, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 14, 5, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 15, 6, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 15, 6, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 15, 6, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 15, 6, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 16, 6, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 16, 6, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 16, 6, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 16, 6, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 17, 6, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 17, 6, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 17, 7, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["SummonRelic"] = { @@ -10826,9 +10202,6 @@ skills["SummonRelic"] = { ["base_number_of_relics_allowed"] = { mod("ActiveHolyRelicLimit", "BASE", nil) }, - ["holy_relic_cooldown_recovery_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil) }), - }, ["holy_relic_nova_life_regeneration_rate_per_minute"] = { mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Holy Relic's Boon", effectCond = "HolyRelicBoonActive" }), div = 60, @@ -10846,12 +10219,6 @@ skills["SummonRelic"] = { Default = { { "skill_buff_effect_+%", 2 }, }, - Alternate1 = { - { "minion_maximum_life_+%", 3 }, - }, - Alternate2 = { - { "holy_relic_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_relics_allowed", 1 }, @@ -10938,12 +10305,6 @@ skills["SummonLightningGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -10952,51 +10313,50 @@ skills["SummonLightningGolem"] = { stats = { "base_actor_scale_+%", "lightning_golem_grants_attack_and_cast_speed_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0, 6, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 1, 6, 2, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 2, 6, 4, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 3, 6, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 4, 6, 8, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 5, 7, 10, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 6, 7, 12, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 7, 7, 14, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 8, 7, 16, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 9, 7, 18, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 10, 8, 20, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 11, 8, 22, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 12, 8, 24, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 13, 8, 26, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 14, 8, 28, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 15, 9, 30, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 16, 9, 32, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 17, 9, 34, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 18, 9, 36, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 19, 9, 38, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 20, 10, 40, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 21, 10, 42, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 22, 10, 44, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 23, 10, 46, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 24, 10, 48, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 25, 11, 50, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 26, 11, 52, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 27, 11, 54, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 28, 11, 56, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 29, 11, 58, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 29, 11, 59, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 30, 12, 60, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 30, 12, 61, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 31, 12, 62, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 31, 12, 63, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 32, 12, 64, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 32, 12, 65, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 33, 12, 66, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 33, 12, 67, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 34, 12, 68, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0, 6, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 1, 6, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 2, 6, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 3, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 4, 6, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 5, 7, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 6, 7, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 7, 7, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 8, 7, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 9, 7, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 10, 8, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 11, 8, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 12, 8, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 13, 8, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 14, 8, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 15, 9, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 16, 9, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 17, 9, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 18, 9, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 19, 9, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 20, 10, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 21, 10, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 22, 10, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 23, 10, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 24, 10, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 25, 11, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 26, 11, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 27, 11, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 28, 11, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 29, 11, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 29, 11, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 30, 12, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 30, 12, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 31, 12, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 31, 12, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 32, 12, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 32, 12, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 33, 12, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 33, 12, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 34, 12, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["SummonRagingSpirit"] = { @@ -11017,16 +10377,7 @@ skills["SummonRagingSpirit"] = { }, qualityStats = { Default = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "base_number_of_raging_spirits_allowed", 0.1 }, - }, - Alternate3 = { - { "minions_cannot_be_damaged_after_summoned_ms", 100 }, + { "summoned_raging_spirit_chance_to_spawn_additional_minion_%", 1.5 }, }, }, constantStats = { @@ -11035,51 +10386,136 @@ skills["SummonRagingSpirit"] = { { "display_minion_monster_type", 20 }, }, stats = { - "active_skill_minion_damage_+%_final", "base_display_minion_actor_level", "minions_cannot_taunt_enemies", }, levels = { - [1] = { 0, 4, levelRequirement = 4, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [2] = { 2, 6, levelRequirement = 6, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [3] = { 4, 9, levelRequirement = 9, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [4] = { 6, 12, levelRequirement = 12, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [5] = { 8, 16, levelRequirement = 16, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, - [6] = { 10, 20, levelRequirement = 20, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, - [7] = { 12, 24, levelRequirement = 24, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [8] = { 14, 28, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [9] = { 16, 32, levelRequirement = 32, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [10] = { 18, 36, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [11] = { 20, 40, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [12] = { 22, 44, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [13] = { 24, 48, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [14] = { 26, 52, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [15] = { 28, 55, levelRequirement = 55, statInterpolation = { 1, 1, }, cost = { Mana = 13, }, }, - [16] = { 30, 58, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 13, }, }, - [17] = { 32, 61, levelRequirement = 61, statInterpolation = { 1, 1, }, cost = { Mana = 14, }, }, - [18] = { 34, 64, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [19] = { 36, 67, levelRequirement = 67, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [20] = { 38, 70, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, - [21] = { 40, 72, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [22] = { 42, 74, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [23] = { 44, 76, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, - [24] = { 46, 78, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [25] = { 48, 80, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [26] = { 50, 82, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [27] = { 52, 84, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [28] = { 54, 86, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, - [29] = { 56, 88, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [30] = { 58, 90, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [31] = { 59, 91, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [32] = { 60, 92, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [33] = { 61, 93, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [34] = { 62, 94, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 24, }, }, - [35] = { 63, 95, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 24, }, }, - [36] = { 64, 96, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 24, }, }, - [37] = { 65, 97, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, - [38] = { 66, 98, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, - [39] = { 67, 99, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, - [40] = { 68, 100, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, + [1] = { 4, levelRequirement = 4, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [2] = { 6, levelRequirement = 6, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [3] = { 9, levelRequirement = 9, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [4] = { 12, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [5] = { 16, levelRequirement = 16, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [6] = { 20, levelRequirement = 20, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [7] = { 24, levelRequirement = 24, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 28, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 32, levelRequirement = 32, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [10] = { 36, levelRequirement = 36, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [11] = { 40, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [12] = { 44, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [13] = { 48, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [14] = { 52, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [15] = { 55, levelRequirement = 55, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [16] = { 58, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [17] = { 61, levelRequirement = 61, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [18] = { 64, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 15, }, }, + [19] = { 67, levelRequirement = 67, statInterpolation = { 1, }, cost = { Mana = 15, }, }, + [20] = { 70, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 16, }, }, + [21] = { 72, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 17, }, }, + [22] = { 74, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 17, }, }, + [23] = { 76, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 18, }, }, + [24] = { 78, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 19, }, }, + [25] = { 80, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 19, }, }, + [26] = { 82, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 20, }, }, + [27] = { 84, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 20, }, }, + [28] = { 86, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 21, }, }, + [29] = { 88, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 22, }, }, + [30] = { 90, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 22, }, }, + [31] = { 91, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 23, }, }, + [32] = { 92, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 23, }, }, + [33] = { 93, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 23, }, }, + [34] = { 94, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [35] = { 95, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [36] = { 96, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [37] = { 97, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [38] = { 98, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [39] = { 99, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [40] = { 100, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + }, +} +skills["SummonReaper"] = { + name = "Summon Reaper", + color = 3, + description = "Summons a powerful Reaper which uses a variety of slashing area attacks. The Reaper's presence weakens your other minions, and it will consume them to temporarily empower and heal itself. Using this skill while the Reaper is already summoned causes it to dash to the targeted location and perform a powerful attack.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, }, + statDescriptionScope = "single_minion_spell_skill_stat_descriptions", + castTime = 0.6, + minionList = { + "SummonedReaper", + }, + statMap = { + ["bleed_on_hit_with_attacks_%"] = { + mod("MinionModifier", "LIST", { mod = mod("BleedChance", "BASE", nil, ModFlag.Attack) }) + }, + ["active_skill_non_reaper_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + ["active_skill_non_reaper_minion_maximum_life_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + }, + baseFlags = { + spell = true, + minion = true, + }, + qualityStats = { + Default = { + { "bleed_on_hit_with_attacks_%", 1 }, + }, + }, + constantStats = { + { "base_number_of_reapers_allowed", 1 }, + { "display_minion_monster_type", 18 }, + { "bleed_on_hit_with_attacks_%", 50 }, + }, + stats = { + "active_skill_non_reaper_minion_damage_+%_final", + "active_skill_non_reaper_minion_maximum_life_+%_final", + "base_display_minion_actor_level", + "active_skill_minion_bleeding_damage_+%_final", + "infinite_minion_duration", + }, + levels = { + [1] = { -20, -20, 28, 30, storedUses = 1, levelRequirement = 28, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [2] = { -20, -20, 31, 33, storedUses = 1, levelRequirement = 31, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [3] = { -21, -21, 34, 36, storedUses = 1, levelRequirement = 34, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [4] = { -21, -21, 37, 39, storedUses = 1, levelRequirement = 37, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [5] = { -22, -22, 40, 42, storedUses = 1, levelRequirement = 40, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [6] = { -22, -22, 42, 45, storedUses = 1, levelRequirement = 42, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [7] = { -23, -23, 44, 48, storedUses = 1, levelRequirement = 44, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [8] = { -23, -23, 46, 51, storedUses = 1, levelRequirement = 46, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [9] = { -24, -24, 48, 54, storedUses = 1, levelRequirement = 48, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [10] = { -24, -24, 50, 57, storedUses = 1, levelRequirement = 50, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [11] = { -25, -25, 52, 60, storedUses = 1, levelRequirement = 52, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [12] = { -25, -25, 54, 63, storedUses = 1, levelRequirement = 54, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [13] = { -26, -26, 56, 66, storedUses = 1, levelRequirement = 56, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [14] = { -26, -26, 58, 69, storedUses = 1, levelRequirement = 58, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [15] = { -27, -27, 60, 72, storedUses = 1, levelRequirement = 60, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [16] = { -27, -27, 62, 75, storedUses = 1, levelRequirement = 62, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [17] = { -28, -28, 64, 78, storedUses = 1, levelRequirement = 64, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [18] = { -28, -28, 66, 81, storedUses = 1, levelRequirement = 66, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [19] = { -29, -29, 68, 84, storedUses = 1, levelRequirement = 68, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [20] = { -29, -29, 70, 87, storedUses = 1, levelRequirement = 70, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [21] = { -30, -30, 72, 90, storedUses = 1, levelRequirement = 72, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [22] = { -30, -30, 74, 93, storedUses = 1, levelRequirement = 74, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [23] = { -31, -31, 76, 96, storedUses = 1, levelRequirement = 76, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [24] = { -31, -31, 78, 99, storedUses = 1, levelRequirement = 78, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [25] = { -32, -32, 80, 102, storedUses = 1, levelRequirement = 80, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 31, }, }, + [26] = { -32, -32, 82, 105, storedUses = 1, levelRequirement = 82, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, + [27] = { -33, -33, 84, 108, storedUses = 1, levelRequirement = 84, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, + [28] = { -33, -33, 86, 111, storedUses = 1, levelRequirement = 86, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 33, }, }, + [29] = { -34, -34, 88, 114, storedUses = 1, levelRequirement = 88, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 33, }, }, + [30] = { -34, -34, 90, 117, storedUses = 1, levelRequirement = 90, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [31] = { -34, -34, 91, 118, storedUses = 1, levelRequirement = 91, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [32] = { -35, -35, 92, 120, storedUses = 1, levelRequirement = 92, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, + [33] = { -35, -35, 93, 121, storedUses = 1, levelRequirement = 93, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, + [34] = { -35, -35, 94, 123, storedUses = 1, levelRequirement = 94, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, + [35] = { -35, -35, 95, 124, storedUses = 1, levelRequirement = 95, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [36] = { -36, -36, 96, 126, storedUses = 1, levelRequirement = 96, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [37] = { -36, -36, 97, 127, storedUses = 1, levelRequirement = 97, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [38] = { -36, -36, 98, 129, storedUses = 1, levelRequirement = 98, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, + [39] = { -36, -36, 99, 130, storedUses = 1, levelRequirement = 99, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, + [40] = { -37, -37, 100, 132, storedUses = 1, levelRequirement = 100, cooldown = 4, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, }, } skills["SummonSkeletons"] = { @@ -11088,7 +10524,7 @@ skills["SummonSkeletons"] = { baseEffectiveness = 0, description = "Summon Skeleton Warrior minions at the targeted location. They use a melee attack and die after a duration. If made aggressive, Skeleton Warriors will also dash towards nearby enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.ThresholdJewelProjectile] = true, [SkillType.Multistrikeable] = true, [SkillType.ThresholdJewelSpellDamage] = true, [SkillType.ProjectilesFromUser] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.ProjectilesFromUser] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.5, minionList = { @@ -11097,8 +10533,8 @@ skills["SummonSkeletons"] = { "RaisedSkeletonArcher", }, statMap = { - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) + ["quality_display_summon_skeleton_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -11108,17 +10544,7 @@ skills["SummonSkeletons"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "minions_cannot_be_damaged_after_summoned_ms", 100 }, - }, - Alternate2 = { - { "number_of_melee_skeletons_to_summon", 0.2 }, - { "base_cooldown_modifier_ms", 50 }, - }, - Alternate3 = { - { "chance_for_melee_skeletons_to_summon_as_archer_skeletons_%", 5 }, + { "base_number_of_skeletons_allowed", 0.05 }, }, }, constantStats = { @@ -11129,6 +10555,7 @@ skills["SummonSkeletons"] = { "number_of_melee_skeletons_to_summon", "base_number_of_skeletons_allowed", "base_display_minion_actor_level", + "quality_display_summon_skeleton_is_gem", }, levels = { [1] = { 2, 5, 10, levelRequirement = 10, statInterpolation = { 1, 1, 1, }, cost = { Mana = 5, }, }, @@ -11188,8 +10615,8 @@ skills["VaalSummonSkeletons"] = { "RaisedSkeletonArcher", }, statMap = { - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) + ["quality_display_summon_skeleton_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -11199,7 +10626,7 @@ skills["VaalSummonSkeletons"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, + { "base_number_of_skeletons_allowed", 0.05 }, }, }, constantStats = { @@ -11215,6 +10642,7 @@ skills["VaalSummonSkeletons"] = { "base_display_minion_actor_level", "cannot_cancel_skill_before_contact_point", "skeletons_are_vaal", + "quality_display_summon_skeleton_is_gem", }, levels = { [1] = { 14, 2, 1, 18, 10, vaalStoredUses = 1, soulPreventionDuration = 10, levelRequirement = 10, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Soul = 50, }, }, @@ -11259,107 +10687,6 @@ skills["VaalSummonSkeletons"] = { [40] = { 27, 13, 8, 49, 98, vaalStoredUses = 1, soulPreventionDuration = 10, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, cost = { Soul = 50, }, }, }, } -skills["BlackHole"] = { - name = "Void Sphere", - color = 3, - baseEffectiveness = 0.35989999771118, - incrementalEffectiveness = 0.055500000715256, - description = "Creates a Void Sphere which Hinders enemies in an area around it, with the debuff being stronger on enemies closer to the sphere. It also regularly releases pulses of area damage. The Void Sphere will consume the corpses of any enemies which die in its area. Can only have one Void Sphere at a time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Orb] = true, }, - statDescriptionScope = "skill_stat_descriptions", - castTime = 0.6, - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency - / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "VoidSphereFrequency") / 100) - end, - statMap = { - ["blackhole_pulse_frequency_+%"] = { - mod("VoidSphereFrequency", "INC", nil), - }, - ["base_blackhole_tick_rate_ms"] = { - skill("repeatFrequency", nil), - div = 1000, - }, - }, - baseFlags = { - spell = true, - area = true, - duration = true, - }, - baseMods = { - skill("radius", 38), - }, - qualityStats = { - Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", -2 }, - { "base_cooldown_speed_+%", 2 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 3 }, - }, - Alternate3 = { - { "blackhole_pulse_frequency_+%", 0.5 }, - }, - }, - constantStats = { - { "skill_physical_damage_%_to_convert_to_chaos", 40 }, - { "base_blackhole_tick_rate_ms", 400 }, - { "base_skill_effect_duration", 5000 }, - }, - stats = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - "blackhole_hinder_%", - "is_area_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - }, - levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [3] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [4] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [5] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [6] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [7] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [8] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [9] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [10] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [11] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [12] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [13] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [14] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [15] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [16] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [17] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [18] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [19] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, - [20] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, - [21] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, - [22] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, - [23] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, - [24] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, - [25] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [26] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [27] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [28] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [29] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [30] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [31] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [32] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [33] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [34] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [35] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [36] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [37] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [38] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [39] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [40] = { 0.80000001192093, 1.2000000476837, -47, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - }, -} skills["Skitterbots"] = { name = "Summon Skitterbots", color = 3, @@ -11388,12 +10715,6 @@ skills["Skitterbots"] = { Default = { { "minion_movement_speed_+%", 2 }, }, - Alternate1 = { - { "minion_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "non_damaging_ailment_effect_+%", 0.5 }, - }, }, constantStats = { { "skitterbots_trap_mine_damage_+%_final", 10 }, @@ -11465,7 +10786,7 @@ skills["TempestShield"] = { }, ["skill_display_buff_grants_shock_immunity"] = { flag("ShockImmune", { type = "GlobalEffect", effectType = "Buff"}), - } + }, }, baseFlags = { spell = true, @@ -11477,13 +10798,7 @@ skills["TempestShield"] = { }, qualityStats = { Default = { - { "base_chance_to_shock_%", 1 }, - }, - Alternate1 = { - { "number_of_chains", 0.1 }, - }, - Alternate2 = { - { "shield_spell_block_%", 0.1 }, + { "base_chance_to_shock_%", 2 }, }, }, constantStats = { @@ -11541,6 +10856,92 @@ skills["TempestShield"] = { [40] = { 0.5, 1.5, 31, critChance = 6, cooldown = 1, damageEffectiveness = 2.2, manaReservationPercent = 25, storedUses = 1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, }, }, } +skills["BlackHole"] = { + name = "Void Sphere", + color = 3, + baseEffectiveness = 0.35989999771118, + incrementalEffectiveness = 0.055500000715256, + description = "Creates a Void Sphere which Hinders enemies in an area around it, with the debuff being stronger on enemies closer to the sphere. It also regularly releases pulses of area damage. The Void Sphere will consume the corpses of any enemies which die in its area. Can only have one Void Sphere at a time.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Orb] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.8, + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency + / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "VoidSphereFrequency") / 100) + end, + statMap = { + ["base_blackhole_tick_rate_ms"] = { + skill("repeatFrequency", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + qualityStats = { + Default = { + { "base_cooldown_speed_+%", 1 }, + }, + }, + constantStats = { + { "skill_physical_damage_%_to_convert_to_chaos", 40 }, + { "base_blackhole_tick_rate_ms", 400 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 38 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "blackhole_hinder_%", + "is_area_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + }, + levels = { + [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [3] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [4] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [5] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [6] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [7] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [8] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [9] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [10] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [11] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [12] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [13] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [14] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [15] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [16] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [17] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [18] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [19] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, + [20] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, + [21] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, + [22] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, + [23] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, + [24] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, + [25] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [26] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [27] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [28] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [29] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [30] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [31] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [32] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [33] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [34] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [35] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [36] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [37] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [38] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [39] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [40] = { 0.80000001192093, 1.2000000476837, -47, critChance = 5, cooldown = 10, damageEffectiveness = 0.75, storedUses = 1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + }, +} skills["VoltaxicBurst"] = { name = "Voltaxic Burst", color = 3, @@ -11558,6 +10959,9 @@ skills["VoltaxicBurst"] = { ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "VoltaxicWaitingStages" }), }, + ["quality_display_voltaxic_burst_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -11570,14 +10974,7 @@ skills["VoltaxicBurst"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "damage_+%", 2 }, - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "lightning_damage_%_to_add_as_chaos", 0.25 }, + { "voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack", 0.05 }, }, }, constantStats = { @@ -11592,6 +10989,7 @@ skills["VoltaxicBurst"] = { "active_skill_base_radius_+", "is_area_damage", "console_skill_dont_chase", + "quality_display_voltaxic_burst_is_gem", }, levels = { [1] = { 0.69999998807907, 1.2999999523163, 0, damageEffectiveness = 2.3, critChance = 6.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -11639,10 +11037,10 @@ skills["VoltaxicBurst"] = { skills["FrostBoltNova"] = { name = "Vortex", color = 3, - baseEffectiveness = 1.6505, - incrementalEffectiveness = 0.05532, - description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it. If the caster targets near their Frostbolt projectiles, it will explode from a number of those projectiles instead, destroying them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Nova] = true, [SkillType.Cooldown] = true, }, + baseEffectiveness = 1.2086000442505, + incrementalEffectiveness = 0.049499999731779, + description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, preDamageFunc = function(activeSkill, output) @@ -11661,76 +11059,67 @@ skills["FrostBoltNova"] = { }, baseMods = { skill("dotIsArea", true), - skill("radius", 20), + skill("radiusLabel", "Initial Hit:"), + skill("radiusSecondaryLabel", "Ground Degen:"), }, qualityStats = { Default = { { "active_skill_base_radius_+", 0.1 }, }, - Alternate1 = { - { "cold_damage_+%", 1 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 1 }, - { "active_skill_quality_duration_+%_final", -1 }, - }, - Alternate3 = { - { "active_skill_damage_+%_when_cast_on_frostbolt", 2 }, - }, }, constantStats = { { "base_skill_effect_duration", 3000 }, - { "skill_override_pvp_scaling_time_ms", 900 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_secondary_area_of_effect_radius", 20 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "base_cold_damage_to_deal_per_minute", - "base_cooldown_speed_+%", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", }, levels = { - [1] = { 0.40000000596046, 0.60000002384186, 72.33333277454, 0, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 28, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [2] = { 0.40000000596046, 0.60000002384186, 72.33333277454, 4, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [3] = { 0.40000000596046, 0.60000002384186, 72.33333277454, 8, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 34, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [4] = { 0.40000000596046, 0.60000002384186, 72.33333277454, 12, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 37, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [5] = { 0.40000000596046, 0.60000002384186, 72.33333277454, 16, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 40, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [6] = { 0.40000000596046, 0.60000002384186, 72.000002235174, 20, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 42, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, - [7] = { 0.40000000596046, 0.60000002384186, 72.000002235174, 24, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [8] = { 0.40000000596046, 0.60000002384186, 72.000002235174, 28, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 46, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [9] = { 0.40000000596046, 0.60000002384186, 72.000002235174, 32, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 48, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [10] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 36, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [11] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 40, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 52, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [12] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 44, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 54, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [13] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 48, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [14] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 52, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 58, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [15] = { 0.40000000596046, 0.60000002384186, 71.666669212282, 56, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 60, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [16] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 60, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [17] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 64, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [18] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 68, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [19] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 72, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [20] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 76, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 80, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [22] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 84, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 88, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, - [24] = { 0.40000000596046, 0.60000002384186, 71.330000869234, 92, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 96, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, - [26] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 100, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 104, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [28] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 108, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [29] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 112, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [30] = { 0.40000000596046, 0.60000002384186, 71.000002235174, 116, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [31] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 120, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 124, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 128, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 132, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 136, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.40000000596046, 0.60000002384186, 70.666669212282, 140, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.40000000596046, 0.60000002384186, 70.330000869234, 144, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.40000000596046, 0.60000002384186, 70.330000869234, 148, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.40000000596046, 0.60000002384186, 70.330000869234, 152, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.40000000596046, 0.60000002384186, 70.330000869234, 156, critChance = 6, damageEffectiveness = 2.7, storedUses = 1, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 114.83333367482, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 116.83333975946, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 118.50000487392, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 120.50000301128, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 122.33333861083, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 123.33333767951, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 124.83333230888, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 126.16667234773, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 127.5000044393, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 128.83333653087, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 130.16666862244, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 131.50000071401, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 132.66667026778, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 133.83333187426, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 135.50000493601, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 136.66666654249, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 138.16666911915, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 139.66667169581, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 141.33332886298, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 142.66667684913, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 144.16666353121, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 145.66666610787, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 146.99999819944, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 148.33333029101, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 150.16667383785, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 151.50000592942, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 153.33333358169, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 155.16667712852, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 156.16666824992, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 157.99999590218, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 158.83333243305, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 159.66666896393, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 160.5000054948, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 161.33334202568, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 162.16666266198, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 162.99999919285, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 163.83333572373, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 164.6666722546, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 165.50000878548, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 166.16667483126, damageEffectiveness = 2.7, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, }, } skills["Purge"] = { @@ -11760,16 +11149,7 @@ skills["Purge"] = { }, qualityStats = { Default = { - { "elemental_damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate3 = { - { "skill_physical_damage_%_to_convert_to_cold", 1 }, + { "base_penetrate_elemental_resistances_%", 0.75 }, }, }, constantStats = { @@ -11779,56 +11159,55 @@ skills["Purge"] = { { "shock_art_variation", 2 }, { "ignite_art_variation", 7 }, { "purge_expose_resist_%_matching_highest_element_damage", -15 }, - { "base_skill_effect_duration", 500 }, }, stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "skill_effect_duration_+%", + "base_skill_effect_duration", "is_area_damage", "visual_hit_effect_elemental_is_holy", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 6, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 10, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 14, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 18, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 20, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 22, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 24, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 26, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 28, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 30, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 32, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 34, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 36, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 38, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 40, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 42, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 44, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 46, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 48, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 50, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 52, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 54, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 56, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 58, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 59, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 60, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 61, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 62, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 63, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 64, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 65, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 66, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 67, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 68, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 500, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 510, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 520, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 530, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 540, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 550, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 560, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 570, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 580, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 590, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 600, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 610, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 620, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 630, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 640, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 650, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 660, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 670, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 680, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 690, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 700, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 710, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 720, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 730, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 740, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 750, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 760, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 770, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 780, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 790, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 795, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 800, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 805, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 810, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 815, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 820, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 825, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 830, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 835, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 840, damageEffectiveness = 3.3, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["FrostFury"] = { @@ -11875,6 +11254,10 @@ skills["FrostFury"] = { mod("HitRate", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"] = { + -- Display only + }, + ["quality_display_winter_orb_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -11888,16 +11271,7 @@ skills["FrostFury"] = { }, qualityStats = { Default = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate3 = { - { "base_projectile_speed_+%", 2 }, + { "frost_fury_max_number_of_stages", 0.1 }, }, }, constantStats = { @@ -11920,6 +11294,7 @@ skills["FrostFury"] = { "base_skill_show_average_damage_instead_of_dps", "display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed", "projectile_behaviour_only_explode", + "quality_display_winter_orb_is_gem", }, levels = { [1] = { 0.80000001192093, 1, damageEffectiveness = 0.6, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 2, }, }, @@ -11985,8 +11360,8 @@ skills["ImmolationSigil"] = { ["winter_brand_max_number_of_stages"] = { mod("Multiplier:WintertideBrandMaxStages", "BASE", nil), }, - ["active_skill_brands_allowed_on_enemy_+"] = { - mod("BrandsAttachedLimit", "BASE", nil), + ["quality_display_wintertide_brand_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -11997,17 +11372,11 @@ skills["ImmolationSigil"] = { }, baseMods = { skill("radius", 20), + skill("debuffTertiary", true), }, qualityStats = { Default = { - { "cold_dot_multiplier_+", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 2 }, - { "base_cast_speed_+%", -2 }, + { "immolation_brand_burn_damage_+%_final_per_stage", 0.25 }, }, }, constantStats = { @@ -12027,6 +11396,7 @@ skills["ImmolationSigil"] = { "skill_can_add_multiple_charges_per_action", "console_skill_dont_chase", "spell_damage_modifiers_apply_to_skill_dot", + "quality_display_wintertide_brand_is_gem", }, levels = { [1] = { 16.666667039196, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 6, }, }, @@ -12105,12 +11475,6 @@ skills["Wither"] = { Default = { { "skill_effect_duration_+%", 1 }, }, - Alternate1 = { - { "hinder_enemy_chaos_damage_+%", -0.2 }, - }, - Alternate2 = { - { "wither_chance_to_apply_another_stack_if_hand_cast_%", 5 }, - }, }, constantStats = { { "chaos_damage_taken_+%", 6 }, @@ -12196,12 +11560,6 @@ skills["Wrath"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "aura_effect_+%", 0.25 }, - }, - Alternate2 = { - { "base_reservation_efficiency_+%", 0.2 }, - }, }, stats = { "attack_minimum_added_lightning_damage", @@ -12269,13 +11627,6 @@ skills["SpellDamageAura"] = { ["spell_critical_strike_chance_+%"] = { mod("CritChance", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["skill_buff_grant_critical_strike_multiplier_+"] = { - mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 60, - }, }, baseFlags = { spell = true, @@ -12289,12 +11640,6 @@ skills["SpellDamageAura"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "skill_buff_grant_critical_strike_multiplier_+", 0.1 }, - }, - Alternate2 = { - { "life_regeneration_rate_per_minute_%", 0.3 }, - }, }, constantStats = { { "create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy", 10 }, @@ -12347,172 +11692,4 @@ skills["SpellDamageAura"] = { [39] = { 19, 53, 33, storedUses = 1, manaReservationPercent = 50, cooldown = 1.2, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, [40] = { 20, 54, 34, storedUses = 1, manaReservationPercent = 50, cooldown = 1.2, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, -} -skills["SoulLink"] = { - name = "Soul Link", - color = 3, - description = "Targets an allied player to apply a buff which links you to them for a duration. While linked, your Energy Shield will intercept some of the damage they would take. If the target dies while linked, you will also die. This skill cannot be triggered, or used by Totems, Traps, or Mines.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Link] = true, }, - statDescriptionScope = "buff_skill_stat_descriptions", - castTime = 0.5, - statMap = { - ["soul_link_grants_damage_taken_+%_final"] = { - mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["soul_link_grants_mana_regeneration_+%"] = { - mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"] = { - mod("TakenFromParentESBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - }, - baseFlags = { - spell = true, - duration = true, - }, - qualityStats = { - Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "base_mana_cost_-%", 0.25 }, - }, - Alternate2 = { - { "soul_link_grants_mana_regeneration_+%", 0.5 }, - }, - }, - constantStats = { - { "soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you", 30 }, - }, - stats = { - "soul_link_grants_damage_taken_+%_final", - "base_skill_effect_duration", - "skill_cost_over_time_is_not_removed_with_skill", - "display_link_stuff", - }, - levels = { - [1] = { -5, 8000, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 900, }, }, - [2] = { -5, 8100, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 960, }, }, - [3] = { -6, 8200, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1030, }, }, - [4] = { -6, 8300, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1080, }, }, - [5] = { -7, 8400, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1140, }, }, - [6] = { -7, 8500, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1200, }, }, - [7] = { -8, 8600, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1250, }, }, - [8] = { -8, 8700, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1310, }, }, - [9] = { -9, 8800, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1380, }, }, - [10] = { -9, 8900, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1440, }, }, - [11] = { -10, 9000, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1490, }, }, - [12] = { -10, 9100, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1550, }, }, - [13] = { -11, 9200, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1610, }, }, - [14] = { -11, 9300, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1680, }, }, - [15] = { -12, 9400, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1730, }, }, - [16] = { -12, 9500, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1790, }, }, - [17] = { -13, 9600, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1850, }, }, - [18] = { -13, 9700, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1900, }, }, - [19] = { -14, 9800, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1940, }, }, - [20] = { -14, 9900, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1960, }, }, - [21] = { -15, 10000, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2030, }, }, - [22] = { -15, 10100, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2090, }, }, - [23] = { -16, 10200, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2140, }, }, - [24] = { -16, 10300, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2200, }, }, - [25] = { -17, 10400, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2260, }, }, - [26] = { -17, 10500, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2330, }, }, - [27] = { -18, 10600, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2380, }, }, - [28] = { -18, 10700, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2440, }, }, - [29] = { -19, 10800, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2500, }, }, - [30] = { -19, 10900, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2550, }, }, - [31] = { -19, 11000, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2590, }, }, - [32] = { -20, 11050, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2610, }, }, - [33] = { -20, 11100, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2650, }, }, - [34] = { -20, 11150, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2680, }, }, - [35] = { -20, 11200, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2700, }, }, - [36] = { -21, 11250, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2740, }, }, - [37] = { -21, 11300, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2760, }, }, - [38] = { -21, 11350, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2790, }, }, - [39] = { -21, 11400, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2830, }, }, - [40] = { -22, 11450, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2850, }, }, - }, -} -skills["DestructiveLink"] = { - name = "Destructive Link", - color = 3, - description = "Targets an allied player to apply a buff which links you to them for a duration. While linked, they use your main hand critical strike chance. If the target dies while linked, you will also die. This skill cannot be triggered, or used by Totems, Traps, or Mines.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Link] = true, }, - statDescriptionScope = "buff_skill_stat_descriptions", - castTime = 0.5, - statMap = { - ["critical_link_grants_base_critical_strike_multiplier_+"] = { - mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["critical_link_grants_accuracy_rating_+%"] = { - mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["display_critical_link_overrides_main_hand_critical_strike_chance"] = { - flag("MainHandCritIsEqualToParent", { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "MainHandAttack" }), - }, - }, - baseFlags = { - spell = true, - duration = true, - }, - qualityStats = { - Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "skill_buff_effect_+%", 0.5 }, - }, - Alternate2 = { - { "critical_link_grants_accuracy_rating_+%", 0.5 }, - }, - }, - stats = { - "critical_link_grants_base_critical_strike_multiplier_+", - "base_skill_effect_duration", - "skill_cost_over_time_is_not_removed_with_skill", - "display_link_stuff", - "display_critical_link_overrides_main_hand_critical_strike_chance", - }, - levels = { - [1] = { 30, 8000, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 900, }, }, - [2] = { 31, 8100, levelRequirement = 36, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 960, }, }, - [3] = { 32, 8200, levelRequirement = 38, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1030, }, }, - [4] = { 33, 8300, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1080, }, }, - [5] = { 34, 8400, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1140, }, }, - [6] = { 35, 8500, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1200, }, }, - [7] = { 36, 8600, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1250, }, }, - [8] = { 37, 8700, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1310, }, }, - [9] = { 38, 8800, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1380, }, }, - [10] = { 39, 8900, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1440, }, }, - [11] = { 40, 9000, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1490, }, }, - [12] = { 41, 9100, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1550, }, }, - [13] = { 42, 9200, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1610, }, }, - [14] = { 43, 9300, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1680, }, }, - [15] = { 44, 9400, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1730, }, }, - [16] = { 45, 9500, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1790, }, }, - [17] = { 46, 9600, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1850, }, }, - [18] = { 47, 9700, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1900, }, }, - [19] = { 48, 9800, levelRequirement = 69, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1940, }, }, - [20] = { 49, 9900, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 1960, }, }, - [21] = { 50, 10000, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2030, }, }, - [22] = { 51, 10100, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2090, }, }, - [23] = { 52, 10200, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2140, }, }, - [24] = { 53, 10300, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2200, }, }, - [25] = { 54, 10400, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2260, }, }, - [26] = { 55, 10500, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2330, }, }, - [27] = { 56, 10600, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2380, }, }, - [28] = { 57, 10700, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2440, }, }, - [29] = { 58, 10800, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2500, }, }, - [30] = { 59, 10900, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2550, }, }, - [31] = { 59, 11000, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2590, }, }, - [32] = { 60, 11050, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2610, }, }, - [33] = { 60, 11100, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2650, }, }, - [34] = { 61, 11150, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2680, }, }, - [35] = { 61, 11200, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2700, }, }, - [36] = { 62, 11250, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2740, }, }, - [37] = { 62, 11300, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2760, }, }, - [38] = { 63, 11350, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2790, }, }, - [39] = { 63, 11400, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2830, }, }, - [40] = { 64, 11450, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { ManaPerMinute = 2850, }, }, - }, } \ No newline at end of file diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index 8f8a14aab6..9c39956e65 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -11,7 +11,7 @@ skills["Absolution"] = { color = 1, baseEffectiveness = 2.0517001152039, incrementalEffectiveness = 0.043200001120567, - description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed to summon a Sentinel of Absolution for a longer secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", + description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", castTime = 0.75, @@ -20,16 +20,10 @@ skills["Absolution"] = { "AbsolutionTemplarJudgeVaal", }, statMap = { - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - }, ["skill_physical_damage_%_to_convert_to_lightning"] = { mod("SkillPhysicalDamageConvertToLightning", "BASE", nil), mod("MinionModifier", "LIST", { mod = mod("SkillPhysicalDamageConvertToLightning", "BASE", nil, 0, 0) }) }, - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) - }, }, baseFlags = { spell = true, @@ -42,13 +36,7 @@ skills["Absolution"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate2 = { - { "sentinel_minion_cooldown_speed_+%", 1 }, + { "minion_cooldown_recovery_+%", 2 }, }, }, constantStats = { @@ -133,7 +121,7 @@ skills["VaalAbsolution"] = { }, qualityStats = { Default = { - { "dummy_stat_display_nothing", 0 }, + { "minion_cooldown_recovery_+%", 2 }, }, }, constantStats = { @@ -189,112 +177,6 @@ skills["VaalAbsolution"] = { [40] = { vaalStoredUses = 1, soulPreventionDuration = 30, levelRequirement = 100, cost = { Soul = 40, }, }, }, } -skills["AbyssalCry"] = { - name = "Infernal Cry", - color = 1, - description = "Performs a warcry, taunting nearby enemies to attack the user and exerting subsequent attacks. Covers enemies in ash, causing them to move slower and take increased fire damage. Affected enemies explode when they die, dealing fire damage in an area.", - skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, }, - statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.8, - statMap = { - ["skill_empowers_next_x_melee_attacks"] = { - mod("InfernalExertedAttacks", "BASE", nil), - }, - ["infernal_cry_covered_in_ash_fire_damage_taken_"] = { - mod("InfernalAshEffectPer5MP", "BASE", nil), - }, - ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"] = { - mod("InfernalFireTakenPer5MP", "BASE", nil), - }, - ["infernal_cry_empowered_attacks_trigger_combust_display"] = { - -- Display only - }, - }, - baseFlags = { - warcry = true, - area = true, - duration = true, - }, - baseMods = { - skill("radius", 60), - skill("radiusLabel", "Warcry area:"), - skill("radiusSecondary", 22), - skill("radiusSecondaryLabel", "Explosion area:"), - }, - qualityStats = { - Default = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "warcry_grant_damage_+%_to_exerted_attacks", 0.5 }, - }, - Alternate3 = { - { "dummy_stat_display_nothing", 0 }, - }, - }, - constantStats = { - { "infernal_cry_%_max_life_as_fire_on_death", 8 }, - { "infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power", 3 }, - { "skill_empowers_next_x_melee_attacks", 6 }, - }, - stats = { - "warcry_speed_+%", - "base_skill_effect_duration", - "base_deal_no_attack_damage", - "base_deal_no_spell_damage", - "damage_cannot_be_reflected", - "base_skill_show_average_damage_instead_of_dps", - "display_skill_deals_secondary_damage", - "cannot_cancel_skill_before_contact_point", - "warcry_count_power_from_enemies", - "infernal_cry_empowered_attacks_trigger_combust_display", - }, - levels = { - [1] = { 0, 5000, storedUses = 1, levelRequirement = 24, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [2] = { 2, 5000, storedUses = 1, levelRequirement = 27, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [3] = { 4, 5100, storedUses = 1, levelRequirement = 30, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [4] = { 6, 5100, storedUses = 1, levelRequirement = 33, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, - [5] = { 8, 5200, storedUses = 1, levelRequirement = 36, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, - [6] = { 10, 5200, storedUses = 1, levelRequirement = 39, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, - [7] = { 12, 5300, storedUses = 1, levelRequirement = 42, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, - [8] = { 14, 5300, storedUses = 1, levelRequirement = 45, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, - [9] = { 16, 5400, storedUses = 1, levelRequirement = 48, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [10] = { 18, 5400, storedUses = 1, levelRequirement = 50, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [11] = { 20, 5500, storedUses = 1, levelRequirement = 52, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [12] = { 22, 5500, storedUses = 1, levelRequirement = 54, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, - [13] = { 24, 5600, storedUses = 1, levelRequirement = 56, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, - [14] = { 26, 5600, storedUses = 1, levelRequirement = 58, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, - [15] = { 28, 5700, storedUses = 1, levelRequirement = 60, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 30, 5700, storedUses = 1, levelRequirement = 62, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 32, 5800, storedUses = 1, levelRequirement = 64, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [18] = { 34, 5800, storedUses = 1, levelRequirement = 66, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 36, 5900, storedUses = 1, levelRequirement = 68, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 38, 5900, storedUses = 1, levelRequirement = 70, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, - [21] = { 40, 6000, storedUses = 1, levelRequirement = 72, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [22] = { 41, 6000, storedUses = 1, levelRequirement = 74, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [23] = { 42, 6100, storedUses = 1, levelRequirement = 76, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [24] = { 43, 6100, storedUses = 1, levelRequirement = 78, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, - [25] = { 44, 6200, storedUses = 1, levelRequirement = 80, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, - [26] = { 45, 6200, storedUses = 1, levelRequirement = 82, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, - [27] = { 46, 6300, storedUses = 1, levelRequirement = 84, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, - [28] = { 47, 6300, storedUses = 1, levelRequirement = 86, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, - [29] = { 48, 6400, storedUses = 1, levelRequirement = 88, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [30] = { 49, 6400, storedUses = 1, levelRequirement = 90, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [31] = { 49, 6400, storedUses = 1, levelRequirement = 91, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [32] = { 50, 6400, storedUses = 1, levelRequirement = 92, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [33] = { 50, 6500, storedUses = 1, levelRequirement = 93, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [34] = { 51, 6500, storedUses = 1, levelRequirement = 94, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, - [35] = { 51, 6500, storedUses = 1, levelRequirement = 95, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [36] = { 52, 6500, storedUses = 1, levelRequirement = 96, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [37] = { 52, 6600, storedUses = 1, levelRequirement = 97, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [38] = { 53, 6600, storedUses = 1, levelRequirement = 98, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [39] = { 53, 6600, storedUses = 1, levelRequirement = 99, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - [40] = { 54, 6600, storedUses = 1, levelRequirement = 100, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, - }, -} skills["InfernalCryOnHitExplosion"] = { name = "Combust", color = 1, @@ -331,15 +213,6 @@ skills["InfernalCryOnHitExplosion"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate3 = { - { "cover_in_ash_on_hit_%", 1 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 60 }, @@ -417,9 +290,6 @@ skills["TotemMelee"] = { ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["ancestor_totem_buff_effect_+%"] = { - mod("BuffEffect", "INC", nil) - }, }, baseFlags = { attack = true, @@ -433,16 +303,7 @@ skills["TotemMelee"] = { }, qualityStats = { Default = { - { "totem_damage_+%", 1 }, - }, - Alternate1 = { - { "summon_totem_cast_speed_+%", 2 }, - }, - Alternate2 = { - { "ancestor_totem_parent_activation_range_+%", 2 }, - }, - Alternate3 = { - { "ancestor_totem_buff_effect_+%", 1 }, + { "melee_range_+", 0.2 }, }, }, constantStats = { @@ -520,9 +381,6 @@ skills["AncestralCry"] = { ["ancestral_cry_max_physical_damage_reduction_rating"] = { mod("AncestralArmourMax", "BASE", nil), }, - ["physical_damage_reduction_rating_+%"] = { - mod("AncestralArmourMax", "INC", nil), - }, }, baseFlags = { warcry = true, @@ -534,13 +392,7 @@ skills["AncestralCry"] = { }, qualityStats = { Default = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "physical_damage_reduction_rating_+%", 1 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -643,16 +495,7 @@ skills["AncestorTotemSlam"] = { }, qualityStats = { Default = { - { "totem_damage_+%", 1 }, - }, - Alternate1 = { - { "summon_totem_cast_speed_+%", 2 }, - }, - Alternate2 = { - { "ancestor_totem_parent_activation_range_+%", 2 }, - }, - Alternate3 = { - { "base_ailment_damage_+%", 2 }, + { "ancestor_totem_parent_activation_range_+%", 1.5 }, }, }, constantStats = { @@ -835,12 +678,6 @@ skills["Anger"] = { ["spell_maximum_added_fire_damage"] = { mod("FireMax", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Aura" }), }, - ["burn_damage_+%"] = { - mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_movement_velocity_+%"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -854,12 +691,6 @@ skills["Anger"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "burn_damage_+%", 0.25 }, - }, - Alternate2 = { - { "base_movement_velocity_+%", 0.05 }, - }, }, stats = { "attack_minimum_added_fire_damage", @@ -916,9 +747,9 @@ skills["AnimateArmour"] = { name = "Animate Guardian", color = 1, description = "Animates a melee weapon or armour, attaching it to an invisible Guardian that fights by your side. Animating multiple items attaches them to the same Guardian. You cannot animate unidentified items. Cannot be used by Traps or Mines.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, }, - statDescriptionScope = "minion_spell_skill_stat_descriptions", + statDescriptionScope = "single_minion_spell_skill_stat_descriptions", castTime = 0.6, minionHasItemSet = true, minionUses = { @@ -932,23 +763,6 @@ skills["AnimateArmour"] = { minionList = { "AnimatedArmour", }, - statMap = { - ["maximum_life_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "INC", nil) }), - }, - ["base_movement_velocity_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", nil) }), - }, - ["melee_physical_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalDamage", "INC", nil, ModFlag.Melee) }), - }, - ["attack_minimum_added_physical_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalMin", "BASE", nil, 0, KeywordFlag.Attack) }), - }, - ["attack_maximum_added_physical_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalMax", "BASE", nil, 0, KeywordFlag.Attack) }), - }, - }, baseFlags = { spell = true, minion = true, @@ -956,13 +770,7 @@ skills["AnimateArmour"] = { }, qualityStats = { Default = { - { "base_movement_velocity_+%", 2 }, - }, - Alternate1 = { - { "minion_skill_area_of_effect_+%", 3 }, - }, - Alternate2 = { - { "minion_maximum_life_+%", 2 }, + { "minion_movement_speed_+%", 2 }, }, }, constantStats = { @@ -971,54 +779,52 @@ skills["AnimateArmour"] = { }, stats = { "animate_item_maximum_level_requirement", - "minion_maximum_life_+%", - "melee_physical_damage_+%", + "active_skill_minion_life_+%_final", + "active_skill_minion_damage_+%_final", "base_display_minion_actor_level", - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", "infinite_minion_duration", }, levels = { - [1] = { 33, 0, 0, 28, 32, 47, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 11, }, }, - [2] = { 36, 4, 4, 31, 37, 54, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 11, }, }, - [3] = { 39, 8, 8, 34, 42, 61, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [4] = { 43, 12, 12, 37, 47, 69, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [5] = { 46, 16, 16, 40, 52, 76, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [6] = { 48, 20, 20, 42, 57, 83, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [7] = { 51, 24, 24, 44, 62, 90, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [8] = { 53, 28, 28, 46, 67, 97, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [9] = { 56, 32, 32, 48, 72, 105, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [10] = { 58, 36, 36, 50, 77, 112, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [11] = { 61, 40, 40, 52, 81, 119, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [12] = { 63, 44, 44, 54, 86, 126, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [13] = { 66, 48, 48, 56, 91, 134, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [14] = { 68, 52, 52, 58, 96, 141, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [15] = { 71, 56, 56, 60, 101, 148, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 73, 60, 60, 62, 106, 155, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 76, 64, 64, 64, 111, 162, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [18] = { 79, 68, 68, 66, 116, 170, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 82, 72, 72, 68, 121, 177, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 100, 76, 76, 70, 126, 184, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 100, 80, 80, 72, 131, 191, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [22] = { 100, 84, 84, 74, 136, 198, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 100, 88, 88, 76, 141, 206, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [24] = { 100, 92, 92, 78, 146, 213, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [25] = { 100, 96, 96, 80, 151, 220, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 100, 100, 100, 82, 156, 227, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [27] = { 100, 104, 104, 84, 161, 234, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 100, 108, 108, 86, 166, 242, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 100, 112, 112, 88, 171, 249, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [30] = { 100, 116, 116, 90, 175, 256, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 100, 118, 118, 91, 178, 260, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 100, 120, 120, 92, 180, 263, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [33] = { 100, 122, 122, 93, 183, 267, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 100, 124, 124, 94, 185, 271, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 100, 126, 126, 95, 188, 274, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 100, 128, 128, 96, 190, 278, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [37] = { 100, 130, 130, 97, 193, 281, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 100, 132, 132, 98, 195, 285, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [39] = { 100, 134, 134, 99, 198, 289, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [40] = { 100, 136, 136, 100, 200, 292, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [1] = { 33, 0, 0, 28, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 11, }, }, + [2] = { 36, 2, 2, 31, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 11, }, }, + [3] = { 39, 4, 4, 34, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 12, }, }, + [4] = { 43, 6, 6, 37, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [5] = { 46, 8, 8, 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [6] = { 48, 10, 10, 42, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [7] = { 51, 12, 12, 44, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [8] = { 53, 14, 14, 46, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [9] = { 56, 16, 16, 48, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [10] = { 58, 18, 18, 50, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [11] = { 61, 20, 20, 52, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [12] = { 63, 22, 22, 54, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [13] = { 66, 24, 24, 56, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [14] = { 68, 26, 26, 58, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [15] = { 71, 28, 28, 60, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 73, 30, 30, 62, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 76, 32, 32, 64, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [18] = { 79, 34, 34, 66, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 82, 36, 36, 68, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 100, 38, 38, 70, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 100, 40, 40, 72, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [22] = { 100, 42, 42, 74, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 100, 44, 44, 76, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [24] = { 100, 46, 46, 78, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [25] = { 100, 48, 48, 80, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 100, 50, 50, 82, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [27] = { 100, 52, 52, 84, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 100, 54, 54, 86, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 100, 56, 56, 88, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [30] = { 100, 58, 58, 90, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 100, 59, 59, 91, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 100, 60, 60, 92, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 100, 61, 61, 93, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 100, 62, 62, 94, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 100, 63, 63, 95, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 100, 64, 64, 96, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [37] = { 100, 65, 65, 97, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 100, 66, 66, 98, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [39] = { 100, 67, 67, 99, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [40] = { 100, 68, 68, 100, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, }, } skills["BattlemagesCry"] = { @@ -1052,13 +858,7 @@ skills["BattlemagesCry"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "warcry_grant_damage_+%_to_exerted_attacks", 0.5 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -1142,12 +942,6 @@ skills["BattlemagesCrySupport"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { "support_divine_cry_damage_+%_final", @@ -1217,26 +1011,14 @@ skills["Berserk"] = { ["berserk_base_damage_taken_+%_final"] = { mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["attack_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, - ["berserk_spell_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, baseFlags = { spell = true, }, qualityStats = { Default = { - { "attack_damage_+%", 1 }, - }, - Alternate1 = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate2 = { - { "berserk_spell_damage_+%_final", 0.25 }, - }, }, constantStats = { { "berserk_minimum_rage", 5 }, @@ -1321,9 +1103,6 @@ skills["Bladestorm"] = { ["bladestorm_storm_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, - ["bladestorm_blood_stance_ailment_damage_+%"] = { - mod("Damage", "INC", nil, 0, KeywordFlag.Ailment, { type = "SkillPart", skillPart = 2 }, { type = "Condition", var = "BloodStance" }), - }, ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "Condition", var = "BladestormInBloodstorm" }), }, @@ -1346,16 +1125,7 @@ skills["Bladestorm"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "bladestorm_sandstorm_movement_speed_+%", 1 }, - }, - Alternate2 = { - { "bladestorm_blood_stance_ailment_damage_+%", 2 }, - }, - Alternate3 = { - { "bladestorm_create_alternate_stance_storm_%_chance", 2 }, + { "bladestorm_maximum_number_of_storms_allowed", 0.05 }, }, }, constantStats = { @@ -1371,6 +1141,7 @@ skills["Bladestorm"] = { "is_area_damage", "console_skill_dont_chase", "skill_can_add_multiple_charges_per_action", + "quality_display_bladestorm_is_gem", }, levels = { [1] = { 10, 30, 70, damageEffectiveness = 1.05, attackSpeedMultiplier = -30, baseMultiplier = 1.05, levelRequirement = 28, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, @@ -1435,18 +1206,6 @@ skills["BloodSandStance"] = { ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"] = { mod("Damage", "MORE", nil, ModFlag.Area, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}, { type = "SkillType", skillType = SkillType.Melee }) }, - ["projectile_attack_damage_+%_in_blood_stance"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Projectile), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Blood", effectCond = "BloodStance"}) - }, - ["projectile_speed_+%_in_sand_stance"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}) - }, - ["spell_area_damage_+%_in_blood_stance"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Area, ModFlag.Spell), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Blood", effectCond = "BloodStance"}) - }, - ["spell_area_of_effect_+%_in_sand_stance"] = { - mod("AreaOfEffect", "INC", nil, bit.bor(ModFlag.Area, ModFlag.Spell), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}) - }, }, baseFlags = { spell = true, @@ -1455,14 +1214,6 @@ skills["BloodSandStance"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "projectile_attack_damage_+%_in_blood_stance", 1 }, - { "projectile_speed_+%_in_sand_stance", 1 }, - }, - Alternate2 = { - { "spell_area_damage_+%_in_blood_stance", 1 }, - { "spell_area_of_effect_+%_in_sand_stance", 0.5 }, - }, }, constantStats = { { "blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance", -5 }, @@ -1535,17 +1286,16 @@ skills["Boneshatter"] = { ["trauma_strike_damage_+%_final_per_trauma"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "TraumaStacks" }), }, - ["attack_speed_+%_per_trauma"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "TraumaStacks" }), - mod("SpeedPerTrauma", "INC", nil, ModFlag.Attack, 0), - }, - ["trauma_strike_self_damage_per_trauma"] = { - mod("TraumaSelfDamageTakenLife", "BASE", nil), - }, ["boneshatter_trauma_base_duration_ms"] = { mod("TraumaDuration", "BASE", nil), div = 1000, }, + ["trauma_strike_self_damage_per_trauma"] = { + -- Display only + }, + ["quality_display_boneshatter_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -1561,13 +1311,6 @@ skills["Boneshatter"] = { Default = { { "trauma_strike_damage_+%_final_per_trauma", 0.05 }, }, - Alternate1 = { - { "base_stun_threshold_reduction_+%", 1 }, - }, - Alternate2 = { - { "attack_speed_+%_per_trauma", 0.05 }, - { "trauma_strike_self_damage_per_trauma", 1 }, - }, }, constantStats = { { "trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%", 15 }, @@ -1579,6 +1322,7 @@ skills["Boneshatter"] = { "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", "trauma_strike_damage_+%_final_per_trauma", + "quality_display_boneshatter_is_gem", }, levels = { [1] = { 0.60000002384186, 1.1200000047684, 1.6799999475479, 2, damageEffectiveness = 2, attackSpeedMultiplier = -15, baseMultiplier = 2, levelRequirement = 28, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 5, }, }, @@ -1645,6 +1389,9 @@ skills["ChainStrike"] = { mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "Rage", div = 5 }), div = 5, }, + ["quality_display_chain_hook_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -1656,13 +1403,7 @@ skills["ChainStrike"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "active_skill_base_radius_+", 0.2 }, - }, - Alternate2 = { - { "chain_hook_range_+%", 1 }, + { "chain_strike_gain_x_rage_if_attack_hits", 0.05 }, }, }, constantStats = { @@ -1671,6 +1412,7 @@ skills["ChainStrike"] = { }, stats = { "is_area_damage", + "quality_display_chain_hook_is_gem", }, levels = { [1] = { damageEffectiveness = 1.15, attackSpeedMultiplier = 20, baseMultiplier = 1.15, levelRequirement = 12, cost = { Mana = 8, }, }, @@ -1731,6 +1473,11 @@ skills["Cleave"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + statMap = { + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"] = { + skill("radiusExtra", nil, { type = "Multiplier", var = "NearbyEnemies", limit = 10, limitTotal = true }) + }, + }, baseFlags = { attack = true, melee = true, @@ -1741,16 +1488,7 @@ skills["Cleave"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_life_gain_per_target", 1 }, - }, - Alternate2 = { - { "area_of_effect_+%_while_not_dual_wielding", 2 }, - }, - Alternate3 = { - { "destroy_corpses_on_kill_%_chance", 5 }, + { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 1 }, }, }, constantStats = { @@ -1823,6 +1561,11 @@ skills["VaalCleave"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + statMap = { + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"] = { + skill("radiusExtra", nil, { type = "Multiplier", var = "NearbyEnemies", limit = 10, limitTotal = true }) + }, + }, baseFlags = { attack = true, area = true, @@ -1831,7 +1574,7 @@ skills["VaalCleave"] = { }, qualityStats = { Default = { - { "attack_speed_+%", 0.5 }, + { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 1 }, }, }, constantStats = { @@ -1921,6 +1664,9 @@ skills["ConsecratedPath"] = { ["groundslam_damage_to_close_targets_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, + ["quality_display_groundslam_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -1933,16 +1679,7 @@ skills["ConsecratedPath"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate2 = { - { "holy_path_teleport_range_+%", 0.5 }, - }, - Alternate3 = { - { "consecrated_ground_area_+%", 2 }, + { "groundslam_damage_to_close_targets_+%_final", 0.5 }, }, }, constantStats = { @@ -1954,6 +1691,7 @@ skills["ConsecratedPath"] = { stats = { "is_area_damage", "visual_hit_effect_elemental_is_holy", + "quality_display_groundslam_is_gem", }, levels = { [1] = { attackSpeedMultiplier = -20, PvPDamageMultiplier = -30, damageEffectiveness = 1.5, baseMultiplier = 1.5, levelRequirement = 28, cost = { Mana = 8, }, }, @@ -2021,12 +1759,6 @@ skills["CorruptingFever"] = { Default = { { "skill_effect_duration_+%", 1 }, }, - Alternate1 = { - { "base_life_cost_+%", -0.5 }, - }, - Alternate2 = { - { "corrupting_fever_apply_additional_corrupted_blood_%", 1 }, - }, }, constantStats = { { "base_secondary_skill_effect_duration", 1000 }, @@ -2098,16 +1830,7 @@ skills["DecoyTotem"] = { }, qualityStats = { Default = { - { "totem_life_+%", 1 }, - }, - Alternate1 = { - { "summon_totem_cast_speed_+%", 2 }, - }, - Alternate2 = { - { "totems_regenerate_%_life_per_minute", 60 }, - }, - Alternate3 = { - { "totems_explode_on_death_for_%_life_as_physical", 2 }, + { "totem_life_+%_final", 1 }, }, }, constantStats = { @@ -2196,13 +1919,6 @@ skills["DefianceBanner"] = { Default = { { "aura_effect_+%", 0.5 }, }, - Alternate1 = { - { "evasion_and_physical_damage_reduction_rating_+%", 0.25 }, - { "active_skill_quality_duration_+%_final", -3 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, }, constantStats = { { "banner_area_of_effect_+%_per_stage", 8 }, @@ -2274,12 +1990,6 @@ skills["Determination"] = { ["base_physical_damage_reduction_rating"] = { mod("Armour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_stun_%"] = { - mod("AvoidStun", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["evasion_rating_%_to_add_as_armour"] = { - mod("EvasionGainAsArmour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -2293,12 +2003,6 @@ skills["Determination"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "base_avoid_stun_%", 0.25 }, - }, - Alternate2 = { - { "evasion_rating_%_to_add_as_armour", 0.1 }, - }, }, stats = { "determination_aura_armour_+%_final", @@ -2374,13 +2078,7 @@ skills["DevouringTotem"] = { }, qualityStats = { Default = { - { "totem_life_+%", 1 }, - }, - Alternate1 = { - { "totem_duration_+%", 5 }, - }, - Alternate2 = { - { "summon_totem_cast_speed_+%", 2 }, + { "totem_life_+%_final", 1 }, }, }, constantStats = { @@ -2465,14 +2163,6 @@ skills["DominatingBlow"] = { "AxisEliteSoldierDominatingBlow", "AxisEliteSoldierDominatingBlowVaal", }, - statMap = { - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - }, - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) } ) - } - }, baseFlags = { attack = true, melee = true, @@ -2481,16 +2171,7 @@ skills["DominatingBlow"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "base_minion_duration_+%", 1.5 }, - }, - Alternate2 = { - { "sentinel_minion_cooldown_speed_+%", 1 }, - }, - Alternate3 = { - { "max_number_of_dominated_normal_monsters", 0.1 }, + { "minion_cooldown_recovery_+%", 2 }, }, }, constantStats = { @@ -2571,7 +2252,7 @@ skills["VaalDomination"] = { }, qualityStats = { Default = { - { "dummy_stat_display_nothing", 0 }, + { "minion_cooldown_recovery_+%", 2 }, }, }, constantStats = { @@ -2644,9 +2325,6 @@ skills["PuresteelBanner"] = { ["impale_debuff_effect_+%"] = { mod("ImpaleEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["puresteel_banner_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, }, baseFlags = { spell = true, @@ -2660,13 +2338,6 @@ skills["PuresteelBanner"] = { Default = { { "aura_effect_+%", 0.5 }, }, - Alternate1 = { - { "puresteel_banner_damage_+%_final", -0.1 }, - { "active_skill_quality_duration_+%_final", -3 }, - }, - Alternate2 = { - { "attacks_impale_on_hit_%_chance", 0.25 }, - }, }, constantStats = { { "attacks_impale_on_hit_%_chance", 20 }, @@ -2729,7 +2400,7 @@ skills["Earthquake"] = { color = 1, baseEffectiveness = 1.5, incrementalEffectiveness = 0.023299999535084, - description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, [SkillType.Slam] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["None"] = true, @@ -2758,18 +2429,8 @@ skills["Earthquake"] = { ["quake_slam_fully_charged_explosion_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }), }, - ["earthquake_aftershock_minimum_added_physical_damage"] = { - mod("PhysicalMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - ["earthquake_aftershock_maximum_added_physical_damage"] = { - mod("PhysicalMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - ["earthquake_initial_slam_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 1 }) - }, - ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"] = { - flag("SpellDamageAppliesToAttacks"), - mod("ImprovedSpellDamageAppliesToAttacks", "MAX", nil), + ["quality_display_earthquake_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -2785,17 +2446,7 @@ skills["Earthquake"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "damage_+%", 3 }, - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "earthquake_initial_slam_area_of_effect_+%", 2 }, - }, - Alternate3 = { - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 2.5 }, + { "quake_slam_fully_charged_explosion_damage_+%_final", 1.5 }, }, }, constantStats = { @@ -2806,6 +2457,7 @@ skills["Earthquake"] = { "is_area_damage", "console_skill_dont_chase", "is_player_earthquake", + "quality_display_earthquake_is_gem", }, levels = { [1] = { damageEffectiveness = 0.85, attackSpeedMultiplier = -25, baseMultiplier = 0.85, levelRequirement = 28, cost = { Mana = 10, }, }, @@ -2880,6 +2532,9 @@ skills["VaalEarthquake"] = { ["quake_slam_fully_charged_explosion_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }), }, + ["quality_display_earthquake_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -2894,7 +2549,7 @@ skills["VaalEarthquake"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, + { "quake_slam_fully_charged_explosion_damage_+%_final", 1.5 }, }, }, constantStats = { @@ -2909,6 +2564,7 @@ skills["VaalEarthquake"] = { "cannot_cancel_skill_before_contact_point", "force_lite_skill_effects", "is_player_earthquake", + "quality_display_earthquake_is_gem", }, levels = { [1] = { 350, attackSpeedMultiplier = -25, soulPreventionDuration = 9, damageEffectiveness = 0.7, vaalStoredUses = 1, baseMultiplier = 0.7, levelRequirement = 28, statInterpolation = { 1, }, cost = { Soul = 30, }, }, @@ -2984,12 +2640,6 @@ skills["SpikeSlam"] = { ["active_skill_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil), }, - ["spike_slam_fissure_length_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 1 }) - }, - ["spike_slam_fissure_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, ["spike_slam_spike_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), } @@ -3005,17 +2655,8 @@ skills["SpikeSlam"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "spike_slam_additional_spike_%_chance", 0.5 }, - }, - Alternate2 = { - { "spike_slam_fissure_length_+%", 1 }, - }, - Alternate3 = { - { "spike_slam_fissure_damage_+%_final", 3 }, - { "spike_slam_spike_damage_+%_final", -3 }, + { "spike_slam_num_spikes", 0.05 }, + { "spike_slam_max_spikes", 0.15 }, }, }, constantStats = { @@ -3027,6 +2668,8 @@ skills["SpikeSlam"] = { stats = { "active_skill_area_of_effect_+%_final", "is_area_damage", + "quality_display_spike_slam_is_gem", + "quality_display_max_spikes_is_gem", }, levels = { [1] = { 0, damageEffectiveness = 1.25, attackSpeedMultiplier = -20, baseMultiplier = 1.25, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 8, }, }, @@ -3100,14 +2743,7 @@ skills["EnduringCry"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "skill_buff_effect_+%", 1 }, - { "base_cooldown_speed_+%", -2 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -3197,13 +2833,7 @@ skills["Exsanguinate"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "blood_tendrils_beam_count", 0.1 }, + { "base_skill_effect_duration", 75 }, }, }, constantStats = { @@ -3276,9 +2906,6 @@ skills["FlameLink"] = { ["flame_link_maximum_fire_damage"] = { mod("FireMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["flame_link_grants_chance_to_ignite_%"] = { - mod("EnemyIgniteChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, ["flame_link_added_fire_damage_from_life_%"] = { mod("FireMin", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "PercentStat", stat = "Life", percent = 1, actor = "parent" }), mod("FireMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "PercentStat", stat = "Life", percent = 1, actor = "parent" }), @@ -3290,13 +2917,7 @@ skills["FlameLink"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "base_mana_cost_-%", 0.25 }, - }, - Alternate2 = { - { "flame_link_grants_chance_to_ignite_%", 0.5 }, + { "base_skill_effect_duration", 75 }, }, }, constantStats = { @@ -3363,12 +2984,6 @@ skills["BloodSandArmour"] = { ["support_maimed_enemies_physical_damage_taken_+%"] = { mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Maim", effectCond = "BloodStance" }, { type = "Condition", var = "Maimed" }), }, - ["evasion_and_physical_damage_reduction_rating_+%"] = { - mod("ArmourAndEvasion", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, - ["damage_+%_if_changed_stances_recently"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff"}, { type = "Condition", var = "ChangedStanceRecently" }) - }, }, baseFlags = { spell = true, @@ -3384,12 +2999,6 @@ skills["BloodSandArmour"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "evasion_and_physical_damage_reduction_rating_+%", 0.5 }, - }, - Alternate2 = { - { "damage_+%_if_changed_stances_recently", 1 }, - }, }, constantStats = { { "blind_art_variation", 1 }, @@ -3458,23 +3067,12 @@ skills["FrozenLegion"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, - statMap = { - ["frozen_legion_%_chance_to_summon_additional_statue"] = { - mod("FrozenLegionExtraStatueChance", "BASE", nil) - } - }, baseFlags = { spell = true, }, qualityStats = { Default = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate1 = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate2 = { - { "frozen_legion_%_chance_to_summon_additional_statue", 1 }, + { "base_cooldown_speed_+%", 1 }, }, }, constantStats = { @@ -3576,30 +3174,15 @@ skills["FrozenSweep"] = { output.Cooldown = m_ceil(cooldown * data.misc.ServerTickRate) / data.misc.ServerTickRate activeSkill.skillData.hitTimeOverride = output.Cooldown - local extraStatueChance = parentSkill.skillModList:Sum("BASE", parentSkill.skillCfg, "FrozenLegionExtraStatueChance") or 0 local maxStatues = parentSkill.skillData.storedUses + parentSkill.skillModList:Sum("BASE", parentSkill.skillCfg, "AdditionalCooldownUses") - local statuesWaitedFor - local dpsMultiplier = extraStatueChance if activeSkill.skillPart == 1 then statuesWaitedFor = 1 elseif activeSkill.skillPart == 2 then statuesWaitedFor = maxStatues end - activeSkill.skillData.averageBurstHits = statuesWaitedFor + extraStatueChance / 100 - dpsMultiplier = 1 + extraStatueChance / statuesWaitedFor / 100 - if breakdown then - breakdown.SkillDPSMultiplier = {} - t_insert(breakdown.SkillDPSMultiplier, "DPS multiplier") - t_insert(breakdown.SkillDPSMultiplier, "^8= extra statue chance / statues waited for") - t_insert(breakdown.SkillDPSMultiplier, s_format("^8= ^7%d%%^8 / ^7%.2f", extraStatueChance, statuesWaitedFor)) - t_insert(breakdown.SkillDPSMultiplier, s_format("^8= ^7%.3f", dpsMultiplier)) - end - if dpsMultiplier ~= 1 then - activeSkill.skillData.dpsMultiplier = (activeSkill.skillData.dpsMultiplier or 1) * dpsMultiplier - output.SkillDPSMultiplier = (output.SkillDPSMultiplier or 1) * dpsMultiplier - end + activeSkill.skillData.averageBurstHits = statuesWaitedFor end, baseFlags = { attack = true, @@ -3611,12 +3194,6 @@ skills["FrozenSweep"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { { "dummy_stat_display_nothing", 0 }, }, }, @@ -3684,6 +3261,9 @@ skills["GeneralsCry"] = { ["maximum_number_of_spiritual_cry_warriors"] = { mod("GeneralsCryDoubleMaxCount", "BASE", nil), }, + ["quality_display_generals_cry_is_gem"] = { + -- Display only + }, }, baseFlags = { warcry = true, @@ -3697,12 +3277,6 @@ skills["GeneralsCry"] = { Default = { { "maximum_number_of_spiritual_cry_warriors", 0.05 }, }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "spiritual_cry_double_movement_velocity_+%", 2 }, - }, }, constantStats = { { "spiritual_cry_doubles_summoned_per_5_MP", 2 }, @@ -3717,6 +3291,7 @@ skills["GeneralsCry"] = { "cannot_cancel_skill_before_contact_point", "warcry_gain_mp_from_corpses", "warcry_count_power_from_enemies", + "quality_display_generals_cry_is_gem", }, levels = { [1] = { 0, 4000, storedUses = 1, levelRequirement = 24, cooldown = 4, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, @@ -3836,7 +3411,7 @@ skills["GlacialHammer"] = { color = 1, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Hits enemies, converting some of your physical damage to cold damage. If an enemy is frozen and is on less than one third life, they will shatter when hit by Glacial Hammer. If striking three times in a row, the third strike will freeze enemies more easily. Requires a Mace, Sceptre or Staff.", + description = "Hits enemies, converting some of your physical damage to cold damage. If a non-unique enemy is frozen and is on less than one third life, they will shatter when hit by Glacial Hammer. If striking three times in a row, the third strike will freeze enemies more easily. Requires a Mace, Sceptre or Staff.", skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Cold] = true, [SkillType.ThresholdJewelArea] = true, }, weaponTypes = { ["Two Handed Mace"] = true, @@ -3857,13 +3432,7 @@ skills["GlacialHammer"] = { }, qualityStats = { Default = { - { "cold_ailment_duration_+%", 2 }, - }, - Alternate1 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 1 }, + { "glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%", 5 }, }, }, constantStats = { @@ -3879,6 +3448,7 @@ skills["GlacialHammer"] = { "cold_ailment_effect_+%", "glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%", "glacial_hammer_shatter_frozen_enemies_at_33%_life", + "quality_display_glacial_hammer_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 10, 200, damageEffectiveness = 1.65, baseMultiplier = 1.65, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, @@ -4033,6 +3603,9 @@ skills["GroundSlam"] = { ["groundslam_damage_to_close_targets_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, + ["quality_display_groundslam_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -4044,14 +3617,7 @@ skills["GroundSlam"] = { }, qualityStats = { Default = { - { "base_stun_duration_+%", 1 }, - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate2 = { - { "ground_slam_angle_+%", 2 }, + { "groundslam_damage_to_close_targets_+%_final", 1 }, }, }, constantStats = { @@ -4062,6 +3628,7 @@ skills["GroundSlam"] = { "groundslam_damage_to_close_targets_+%_final", "is_area_damage", "console_skill_dont_chase", + "quality_display_groundslam_is_gem", }, levels = { [1] = { 0, 40, damageEffectiveness = 1.15, attackSpeedMultiplier = -10, baseMultiplier = 1.15, levelRequirement = 1, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, @@ -4129,6 +3696,10 @@ skills["VaalGroundSlam"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, ["vaal_skill_exertable"] = { + -- Display only + }, + ["quality_display_groundslam_is_gem"] = { + -- Display only }, }, baseFlags = { @@ -4141,8 +3712,7 @@ skills["VaalGroundSlam"] = { }, qualityStats = { Default = { - { "base_stun_duration_+%", 1 }, - { "base_skill_area_of_effect_+%", 0.5 }, + { "groundslam_damage_to_close_targets_+%_final", 1 }, }, }, constantStats = { @@ -4156,6 +3726,7 @@ skills["VaalGroundSlam"] = { "global_always_hit", "cannot_cancel_skill_before_contact_point", "vaal_skill_exertable", + "quality_display_groundslam_is_gem", }, levels = { [1] = { 0, 40, attackSpeedMultiplier = -10, soulPreventionDuration = 1, damageEffectiveness = 1.9, vaalStoredUses = 4, baseMultiplier = 1.9, levelRequirement = 1, statInterpolation = { 1, 1, }, cost = { Soul = 15, }, }, @@ -4230,14 +3801,7 @@ skills["HeavyStrike"] = { }, qualityStats = { Default = { - { "base_stun_duration_+%", 1 }, - { "damage_+%", 1 }, - }, - Alternate1 = { - { "knockback_distance_+%", 1 }, - }, - Alternate2 = { - { "knockback_distance_+%", -5 }, + { "chance_to_deal_double_damage_%", 1 }, }, }, constantStats = { @@ -4304,9 +3868,6 @@ skills["HeraldOfAsh"] = { activeSkill.skillData.FireDot = (activeSkill.skillData.hoaOverkill or 0) * (1 + activeSkill.skillData.hoaMoreBurn / 100) * activeSkill.skillData.hoaOverkillPercent end, statMap = { - ["herald_of_ash_fire_damage_+%"] = { - mod("FireDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["herald_of_ash_spell_fire_damage_+%_final"] = { mod("FireDamage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -4320,6 +3881,9 @@ skills["HeraldOfAsh"] = { skill("hoaOverkillPercent", nil), div = 6000, }, + ["quality_display_herald_of_ash_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -4330,14 +3894,7 @@ skills["HeraldOfAsh"] = { }, qualityStats = { Default = { - { "herald_of_ash_fire_damage_+%", 0.75 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", -1 }, - { "burn_damage_+%", 3 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 1 }, + { "herald_of_ash_burning_%_overkill_damage_per_minute", 15 }, }, }, constantStats = { @@ -4349,6 +3906,7 @@ skills["HeraldOfAsh"] = { "herald_of_ash_burning_damage_+%_final", "herald_of_ash_spell_fire_damage_+%_final", "is_area_damage", + "quality_display_herald_of_ash_is_gem", }, levels = { [1] = { 0, 9, storedUses = 1, manaReservationPercent = 25, cooldown = 1, levelRequirement = 16, statInterpolation = { 1, 1, }, }, @@ -4413,9 +3971,6 @@ skills["HeraldOfPurity"] = { ["herald_of_purity_physical_damage_+%_final"] = { mod("PhysicalDamage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - } }, baseFlags = { spell = true, @@ -4424,13 +3979,7 @@ skills["HeraldOfPurity"] = { }, qualityStats = { Default = { - { "minion_movement_speed_+%", 1 }, - }, - Alternate1 = { - { "minion_chance_to_taunt_on_hit_%", 0.5 }, - }, - Alternate2 = { - { "sentinel_minion_cooldown_speed_+%", 1 }, + { "minion_cooldown_recovery_+%", 2 }, }, }, constantStats = { @@ -4510,25 +4059,16 @@ skills["FlameTotem"] = { }, qualityStats = { Default = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.05 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_fire", 1 }, - }, - Alternate3 = { - { "summon_totem_cast_speed_+%", 1 }, - { "totem_duration_+%", 1 }, + { "base_projectile_speed_+%", 2 }, }, }, constantStats = { { "base_totem_duration", 8000 }, { "base_totem_range", 100 }, - { "number_of_additional_projectiles", 2 }, + { "base_number_of_projectiles", 3 }, { "skill_physical_damage_%_to_convert_to_fire", 50 }, { "ignite_art_variation", 7 }, + { "active_skill_projectile_speed_+%_variation_final", 30 }, }, stats = { "spell_minimum_base_physical_damage", @@ -4539,6 +4079,7 @@ skills["FlameTotem"] = { "always_pierce", "consecrated_ground_immune_to_curses", "visual_hit_effect_elemental_is_holy", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.60000002384186, 1.2000000476837, damageEffectiveness = 0.35, critChance = 5, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, @@ -4588,7 +4129,7 @@ skills["IceCrash"] = { color = 1, baseEffectiveness = 1.5, incrementalEffectiveness = 0.023299999535084, - description = "Slam the ground, damaging enemies in an area around the impact in three stages. Enemies take slightly less damage on the second and third stage. Works with Swords, Maces, Sceptres, Axes, Staves and Unarmed.", + description = "Slam the ground, damaging enemies in an area around the impact in three stages of increasing size. Enemies take slightly less damage on the second and third stage, and can only be hit by one stage. Works with Swords, Maces, Sceptres, Axes, Staves and Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Cold] = true, [SkillType.Multistrikeable] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["None"] = true, @@ -4616,9 +4157,6 @@ skills["IceCrash"] = { }, }, statMap = { - ["ice_crash_first_stage_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, ["ice_crash_second_hit_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, @@ -4635,27 +4173,22 @@ skills["IceCrash"] = { area = true, }, baseMods = { - skill("radius", 26), + skill("radiusLabel", "First hit:"), + skill("radiusSecondaryLabel", "Second hit:"), + skill("radiusTertiaryLabel", "Third hit:"), }, qualityStats = { Default = { { "physical_damage_%_to_add_as_cold", 0.75 }, }, - Alternate1 = { - { "base_chance_to_freeze_%", 0.5 }, - }, - Alternate2 = { - { "base_ailment_damage_+%", 3 }, - }, - Alternate3 = { - { "ice_crash_first_stage_damage_+%_final", -2 }, - { "ice_crash_third_hit_damage_+%_final", 1.5 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_cold", 100 }, { "ice_crash_second_hit_damage_+%_final", -15 }, { "ice_crash_third_hit_damage_+%_final", -30 }, + { "active_skill_base_area_of_effect_radius", 11 }, + { "active_skill_base_secondary_area_of_effect_radius", 21 }, + { "active_skill_base_tertiary_area_of_effect_radius", 31 }, }, stats = { "is_area_damage", @@ -4724,10 +4257,6 @@ skills["ImmortalCall"] = { mod("PhysicalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }, { type = "Multiplier", var = "RemovableEnduranceCharge", limit = 5 }), div = 100, }, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"] = { - mod("ElementalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }, { type = "Multiplier", var = "RemovableEnduranceCharge", limit = 5 }), - div = 100, - }, ["quality_display_immortal_call_is_gem"] = { -- Display Only }, @@ -4738,15 +4267,8 @@ skills["ImmortalCall"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { { "base_cooldown_speed_+%", 1 }, }, - Alternate2 = { - { "mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad", 10 }, - { "immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad", -10 }, - }, }, constantStats = { { "mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad", -1500 }, @@ -4876,12 +4398,106 @@ skills["VaalImmortalCall"] = { [40] = { 202, storedUses = 1, soulPreventionDuration = 8, vaalStoredUses = 1, cooldown = 60, levelRequirement = 100, statInterpolation = { 1, }, cost = { Soul = 100, }, }, }, } +skills["AbyssalCry"] = { + name = "Infernal Cry", + color = 1, + description = "Performs a warcry, taunting nearby enemies to attack the user and exerting subsequent attacks. Covers enemies in ash, causing them to move slower and take increased fire damage. Affected enemies explode when they die, dealing fire damage in an area.", + skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, }, + statDescriptionScope = "debuff_skill_stat_descriptions", + castTime = 0.8, + statMap = { + ["skill_empowers_next_x_melee_attacks"] = { + mod("InfernalExertedAttacks", "BASE", nil), + }, + ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"] = { + mod("InfernalFireTakenPer5MP", "BASE", nil), + }, + ["infernal_cry_empowered_attacks_trigger_combust_display"] = { + -- Display only + }, + }, + baseFlags = { + warcry = true, + area = true, + duration = true, + }, + baseMods = { + skill("radius", 60), + skill("radiusLabel", "Warcry area:"), + skill("radiusSecondary", 22), + skill("radiusSecondaryLabel", "Explosion area:"), + }, + qualityStats = { + Default = { + { "base_cooldown_speed_+%", 2 }, + }, + }, + constantStats = { + { "infernal_cry_%_max_life_as_fire_on_death", 8 }, + { "infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power", 3 }, + { "skill_empowers_next_x_melee_attacks", 6 }, + }, + stats = { + "warcry_speed_+%", + "base_skill_effect_duration", + "base_deal_no_attack_damage", + "base_deal_no_spell_damage", + "damage_cannot_be_reflected", + "base_skill_show_average_damage_instead_of_dps", + "display_skill_deals_secondary_damage", + "cannot_cancel_skill_before_contact_point", + "warcry_count_power_from_enemies", + "infernal_cry_empowered_attacks_trigger_combust_display", + }, + levels = { + [1] = { 0, 5000, storedUses = 1, levelRequirement = 24, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, + [2] = { 2, 5000, storedUses = 1, levelRequirement = 27, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, + [3] = { 4, 5100, storedUses = 1, levelRequirement = 30, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, + [4] = { 6, 5100, storedUses = 1, levelRequirement = 33, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, + [5] = { 8, 5200, storedUses = 1, levelRequirement = 36, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, + [6] = { 10, 5200, storedUses = 1, levelRequirement = 39, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, + [7] = { 12, 5300, storedUses = 1, levelRequirement = 42, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, + [8] = { 14, 5300, storedUses = 1, levelRequirement = 45, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, + [9] = { 16, 5400, storedUses = 1, levelRequirement = 48, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, + [10] = { 18, 5400, storedUses = 1, levelRequirement = 50, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, + [11] = { 20, 5500, storedUses = 1, levelRequirement = 52, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 22, 5500, storedUses = 1, levelRequirement = 54, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, + [13] = { 24, 5600, storedUses = 1, levelRequirement = 56, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, + [14] = { 26, 5600, storedUses = 1, levelRequirement = 58, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, + [15] = { 28, 5700, storedUses = 1, levelRequirement = 60, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 30, 5700, storedUses = 1, levelRequirement = 62, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 32, 5800, storedUses = 1, levelRequirement = 64, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [18] = { 34, 5800, storedUses = 1, levelRequirement = 66, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 36, 5900, storedUses = 1, levelRequirement = 68, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 38, 5900, storedUses = 1, levelRequirement = 70, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [21] = { 40, 6000, storedUses = 1, levelRequirement = 72, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, + [22] = { 41, 6000, storedUses = 1, levelRequirement = 74, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, + [23] = { 42, 6100, storedUses = 1, levelRequirement = 76, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, + [24] = { 43, 6100, storedUses = 1, levelRequirement = 78, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, + [25] = { 44, 6200, storedUses = 1, levelRequirement = 80, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [26] = { 45, 6200, storedUses = 1, levelRequirement = 82, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [27] = { 46, 6300, storedUses = 1, levelRequirement = 84, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [28] = { 47, 6300, storedUses = 1, levelRequirement = 86, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [29] = { 48, 6400, storedUses = 1, levelRequirement = 88, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [30] = { 49, 6400, storedUses = 1, levelRequirement = 90, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [31] = { 49, 6400, storedUses = 1, levelRequirement = 91, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [32] = { 50, 6400, storedUses = 1, levelRequirement = 92, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [33] = { 50, 6500, storedUses = 1, levelRequirement = 93, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [34] = { 51, 6500, storedUses = 1, levelRequirement = 94, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [35] = { 51, 6500, storedUses = 1, levelRequirement = 95, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [36] = { 52, 6500, storedUses = 1, levelRequirement = 96, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [37] = { 52, 6600, storedUses = 1, levelRequirement = 97, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [38] = { 53, 6600, storedUses = 1, levelRequirement = 98, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [39] = { 53, 6600, storedUses = 1, levelRequirement = 99, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [40] = { 54, 6600, storedUses = 1, levelRequirement = 100, cooldown = 8, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + }, +} skills["InfernalBlow"] = { name = "Infernal Blow", color = 1, baseEffectiveness = 0.6700000166893, incrementalEffectiveness = 0.023299999535084, - description = "Attacks with your weapon, applying a charged debuff to enemies hit by your strike, and an uncharged debuff to any other enemies hit. Upon reaching 6 charges, expiring, or the enemy's death, the charged debuff is removed, and it deals damage to that and other nearby enemies. Enemies with either debuff explode when they die, damaging other nearby enemies. Damage from this explosion cannot be reflected. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Attacks with your weapon, applying a charged debuff to enemies hit by your strike, and an uncharged debuff to any other enemies hit. Upon reaching 6 charges, expiring, or the enemy's death, the charged debuff is removed to damage that and other surrounding enemies. Enemies with either debuff explode when they die, damaging other surrounding enemies. Damage from this explosion cannot be reflected. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, }, weaponTypes = { ["None"] = true, @@ -4900,7 +4516,16 @@ skills["InfernalBlow"] = { statMap = { ["infernal_blow_explosion_damage_%_of_total_per_stack"] = { mod("DebuffEffect", "BASE", nil) - } + }, + ["quality_display_infernal_blow_is_gem"] = { + -- Display Only + }, + ["active_skill_base_area_of_effect_radius"] = { + skill("radius", nil, { type = "SkillPart", skillPart = 1 }), + }, + ["active_skill_base_secondary_area_of_effect_radius"] = { + skill("radius", nil, { type = "SkillPart", skillPartList = { 2, 3 } }), + }, }, parts = { { @@ -4931,23 +4556,14 @@ skills["InfernalBlow"] = { duration = true, }, baseMods = { - skill("radius", 15), skill("showAverage", true, { type = "SkillPart", skillPart = 2 }), mod("Multiplier:DebuffStack", "BASE", 5, 0, 0, { type = "SkillPart", skillPart = 3 }), + skill("radiusLabel", "Hit area:", { type = "SkillPart", skillPart = 1 }), + skill("radiusLabel", "Explosion area:", { type = "SkillPart", skillPartList = { 2, 3 } }), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance", 1 }, - }, - Alternate2 = { - { "burn_damage_+%", 3 }, - { "base_chance_to_ignite_%", 1 }, - }, - Alternate3 = { - { "skill_effect_duration_+%", 4 }, + { "infernal_blow_explosion_damage_%_of_total_per_stack", 0.5 }, }, }, constantStats = { @@ -4955,10 +4571,14 @@ skills["InfernalBlow"] = { { "base_skill_effect_duration", 800 }, { "corpse_explosion_monster_life_%", 6 }, { "infernal_blow_explosion_damage_%_of_total_per_stack", 66 }, + { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_secondary_area_of_effect_radius", 18 }, + { "active_skill_secondary_area_of_effect_description_mode", 1 }, }, stats = { "attack_minimum_added_fire_damage", "attack_maximum_added_fire_damage", + "quality_display_infernal_blow_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.04, baseMultiplier = 1.04, levelRequirement = 12, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, @@ -5017,10 +4637,6 @@ skills["IntimidatingCry"] = { ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"] = { mod("IntimidatingPDRPer5MP", "BASE", nil), }, - ["warcry_grant_overwhelm_%_to_exerted_attacks"] = { - -- This is okay not indicating exert because it must be enabled by Intimidating Cry which would exert the attack - mod("EnemyPhysicalDamageReduction", "BASE", nil, ModFlag.Attack, 0) - }, ["intimidating_cry_empowerd_attacks_deal_double_damage_display"] = { }, }, @@ -5034,16 +4650,7 @@ skills["IntimidatingCry"] = { }, qualityStats = { Default = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "warcry_grant_overwhelm_%_to_exerted_attacks", 0.5 }, - }, - Alternate3 = { - { "warcry_grant_damage_+%_to_exerted_attacks", 0.5 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -5109,7 +4716,7 @@ skills["LeapSlam"] = { name = "Leap Slam", color = 1, baseEffectiveness = 0, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -5124,30 +4731,24 @@ skills["LeapSlam"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, + statMap = { + ["stun_duration_+%_vs_enemies_that_are_on_full_life"] = { + mod("EnemyStunDuration", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "FullLife" }), + }, + }, baseFlags = { attack = true, melee = true, area = true, }, - baseMods = { - skill("radius", 15), - }, qualityStats = { Default = { - { "base_stun_duration_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "damage_+%", 1 }, - }, - Alternate3 = { - { "attack_speed_+%", 0.5 }, + { "stun_duration_+%_vs_enemies_that_are_on_full_life", 2 }, }, }, constantStats = { { "additional_weapon_base_attack_time_ms", 550 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "stun_duration_+%_vs_enemies_that_are_on_full_life", @@ -5229,9 +4830,6 @@ skills["MoltenShell"] = { ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"] = { skill("moltenShellReflect", nil), }, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"] = { - mod("FirePenetration", "BASE", nil) - } }, baseFlags = { hit = true, @@ -5245,12 +4843,6 @@ skills["MoltenShell"] = { Default = { { "skill_effect_duration_+%", 1 }, }, - Alternate1 = { - { "molten_shell_damage_absorb_limit_%_of_armour", 0.25 }, - }, - Alternate2 = { - { "molten_shell_explosion_damage_penetrates_%_fire_resistance", 1 }, - }, }, constantStats = { { "skill_override_pvp_scaling_time_ms", 200 }, @@ -5470,21 +5062,12 @@ skills["MoltenStrike"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "melee_range_+", 0.1 }, - }, - Alternate3 = { - { "damage_over_time_+%", 2 }, + { "active_skill_hit_ailment_damage_with_projectile_+%_final", 0.5 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 60 }, - { "number_of_additional_projectiles", 3 }, + { "base_number_of_projectiles", 4 }, { "active_skill_hit_ailment_damage_with_projectile_+%_final", -50 }, }, stats = { @@ -5492,6 +5075,7 @@ skills["MoltenStrike"] = { "attack_maximum_added_fire_damage", "melee_range_+", "show_number_of_projectiles", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 2, damageEffectiveness = 1.1, baseMultiplier = 1.1, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, @@ -5574,6 +5158,11 @@ skills["VaalMoltenStrike"] = { chaining = true, }, }, + statMap = { + ["active_skill_hit_ailment_damage_with_projectile_+%_final"] = { + mod("Damage", "MORE", nil, bit.band(ModFlag.Hit, ModFlag.Ailment), 0, { type = "SkillPart", skillPart = 2 }) + }, + }, baseFlags = { attack = true, melee = true, @@ -5593,12 +5182,12 @@ skills["VaalMoltenStrike"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, + { "active_skill_hit_ailment_damage_with_projectile_+%_final", 0.5 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 60 }, - { "number_of_additional_projectiles", 8 }, + { "base_number_of_projectiles", 9 }, { "number_of_chains", 8 }, { "active_skill_projectile_speed_+%_variation_final", 20 }, { "active_skill_base_radius_+", 4 }, @@ -5610,6 +5199,7 @@ skills["VaalMoltenStrike"] = { "molten_strike_projectiles_chain_when_impacting_ground", "global_always_hit", "cannot_cancel_skill_before_contact_point", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, attackSpeedMultiplier = -30, soulPreventionDuration = 3, damageEffectiveness = 0.7, vaalStoredUses = 3, baseMultiplier = 0.7, levelRequirement = 1, statInterpolation = { 3, 3, }, cost = { Soul = 15, }, }, @@ -5685,7 +5275,10 @@ skills["BloodSpears"] = { }, ["skill_area_of_effect_+%_final_in_sand_stance"] = { mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Condition", var = "SandStance" }), - } + }, + ["quality_display_perforate_is_gem"] = { + -- Display Only + }, }, baseFlags = { attack = true, @@ -5699,23 +5292,12 @@ skills["BloodSpears"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "attacks_impale_on_hit_%_chance", 0.5 }, - }, - Alternate2 = { - { "bleed_on_hit_with_attacks_%", 1 }, - }, - Alternate3 = { - { "blood_spears_base_number_of_spears", -0.05 }, - { "blood_spears_additional_number_of_spears_if_changed_stance_recently", 0.1 }, + { "blood_spears_base_number_of_spears", 0.1 }, }, }, constantStats = { { "blood_spears_base_number_of_spears", 7 }, { "blood_spears_damage_+%_final_in_blood_stance", -75 }, - { "blood_spears_additional_number_of_spears_if_changed_stance_recently", 2 }, { "blood_spears_aoe_modifiers_apply_to_blood_spear_placement_range_at_%_value", 50 }, }, stats = { @@ -5724,48 +5306,49 @@ skills["BloodSpears"] = { "skill_area_of_effect_+%_final_in_sand_stance", "is_area_damage", "console_skill_dont_chase", + "quality_display_perforate_is_gem", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 1.25, attackSpeedMultiplier = -20, baseMultiplier = 1.25, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 1.3, attackSpeedMultiplier = -20, baseMultiplier = 1.296, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.34, attackSpeedMultiplier = -20, baseMultiplier = 1.343, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.39, attackSpeedMultiplier = -20, baseMultiplier = 1.389, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 1.44, attackSpeedMultiplier = -20, baseMultiplier = 1.435, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 20, damageEffectiveness = 1.48, attackSpeedMultiplier = -20, baseMultiplier = 1.482, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 24, damageEffectiveness = 1.53, attackSpeedMultiplier = -20, baseMultiplier = 1.528, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 28, damageEffectiveness = 1.57, attackSpeedMultiplier = -20, baseMultiplier = 1.574, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 32, damageEffectiveness = 1.62, attackSpeedMultiplier = -20, baseMultiplier = 1.621, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 36, damageEffectiveness = 1.67, attackSpeedMultiplier = -20, baseMultiplier = 1.667, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 40, damageEffectiveness = 1.71, attackSpeedMultiplier = -20, baseMultiplier = 1.713, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 44, damageEffectiveness = 1.76, attackSpeedMultiplier = -20, baseMultiplier = 1.759, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 48, damageEffectiveness = 1.81, attackSpeedMultiplier = -20, baseMultiplier = 1.806, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 52, damageEffectiveness = 1.85, attackSpeedMultiplier = -20, baseMultiplier = 1.852, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 56, damageEffectiveness = 1.9, attackSpeedMultiplier = -20, baseMultiplier = 1.898, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 60, damageEffectiveness = 1.94, attackSpeedMultiplier = -20, baseMultiplier = 1.945, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 64, damageEffectiveness = 1.99, attackSpeedMultiplier = -20, baseMultiplier = 1.991, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 68, damageEffectiveness = 2.04, attackSpeedMultiplier = -20, baseMultiplier = 2.037, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 72, damageEffectiveness = 2.08, attackSpeedMultiplier = -20, baseMultiplier = 2.084, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 76, damageEffectiveness = 2.13, attackSpeedMultiplier = -20, baseMultiplier = 2.13, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 80, damageEffectiveness = 2.18, attackSpeedMultiplier = -20, baseMultiplier = 2.176, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 84, damageEffectiveness = 2.22, attackSpeedMultiplier = -20, baseMultiplier = 2.223, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 88, damageEffectiveness = 2.27, attackSpeedMultiplier = -20, baseMultiplier = 2.269, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 92, damageEffectiveness = 2.32, attackSpeedMultiplier = -20, baseMultiplier = 2.315, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 96, damageEffectiveness = 2.36, attackSpeedMultiplier = -20, baseMultiplier = 2.362, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 100, damageEffectiveness = 2.41, attackSpeedMultiplier = -20, baseMultiplier = 2.408, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 104, damageEffectiveness = 2.45, attackSpeedMultiplier = -20, baseMultiplier = 2.454, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 108, damageEffectiveness = 2.5, attackSpeedMultiplier = -20, baseMultiplier = 2.501, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 112, damageEffectiveness = 2.55, attackSpeedMultiplier = -20, baseMultiplier = 2.547, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 116, damageEffectiveness = 2.59, attackSpeedMultiplier = -20, baseMultiplier = 2.593, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 118, damageEffectiveness = 2.62, attackSpeedMultiplier = -20, baseMultiplier = 2.616, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 120, damageEffectiveness = 2.64, attackSpeedMultiplier = -20, baseMultiplier = 2.639, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 122, damageEffectiveness = 2.66, attackSpeedMultiplier = -20, baseMultiplier = 2.663, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 124, damageEffectiveness = 2.69, attackSpeedMultiplier = -20, baseMultiplier = 2.686, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 126, damageEffectiveness = 2.71, attackSpeedMultiplier = -20, baseMultiplier = 2.709, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 128, damageEffectiveness = 2.73, attackSpeedMultiplier = -20, baseMultiplier = 2.732, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 130, damageEffectiveness = 2.76, attackSpeedMultiplier = -20, baseMultiplier = 2.755, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 132, damageEffectiveness = 2.78, attackSpeedMultiplier = -20, baseMultiplier = 2.778, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 134, damageEffectiveness = 2.8, attackSpeedMultiplier = -20, baseMultiplier = 2.802, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 136, damageEffectiveness = 2.82, attackSpeedMultiplier = -20, baseMultiplier = 2.825, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, damageEffectiveness = 1.55, attackSpeedMultiplier = -20, baseMultiplier = 1.55, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 4, damageEffectiveness = 1.608, attackSpeedMultiplier = -20, baseMultiplier = 1.608, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 8, damageEffectiveness = 1.666, attackSpeedMultiplier = -20, baseMultiplier = 1.666, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 12, damageEffectiveness = 1.724, attackSpeedMultiplier = -20, baseMultiplier = 1.724, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 16, damageEffectiveness = 1.782, attackSpeedMultiplier = -20, baseMultiplier = 1.782, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 20, damageEffectiveness = 1.839, attackSpeedMultiplier = -20, baseMultiplier = 1.839, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 24, damageEffectiveness = 1.897, attackSpeedMultiplier = -20, baseMultiplier = 1.897, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 28, damageEffectiveness = 1.955, attackSpeedMultiplier = -20, baseMultiplier = 1.955, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 32, damageEffectiveness = 2.013, attackSpeedMultiplier = -20, baseMultiplier = 2.013, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 36, damageEffectiveness = 2.071, attackSpeedMultiplier = -20, baseMultiplier = 2.071, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 40, damageEffectiveness = 2.129, attackSpeedMultiplier = -20, baseMultiplier = 2.129, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 44, damageEffectiveness = 2.187, attackSpeedMultiplier = -20, baseMultiplier = 2.187, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 48, damageEffectiveness = 2.245, attackSpeedMultiplier = -20, baseMultiplier = 2.245, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 52, damageEffectiveness = 2.303, attackSpeedMultiplier = -20, baseMultiplier = 2.303, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 56, damageEffectiveness = 2.361, attackSpeedMultiplier = -20, baseMultiplier = 2.361, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 60, damageEffectiveness = 2.418, attackSpeedMultiplier = -20, baseMultiplier = 2.418, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 64, damageEffectiveness = 2.476, attackSpeedMultiplier = -20, baseMultiplier = 2.476, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 68, damageEffectiveness = 2.534, attackSpeedMultiplier = -20, baseMultiplier = 2.534, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 72, damageEffectiveness = 2.592, attackSpeedMultiplier = -20, baseMultiplier = 2.592, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 76, damageEffectiveness = 2.65, attackSpeedMultiplier = -20, baseMultiplier = 2.65, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 80, damageEffectiveness = 2.708, attackSpeedMultiplier = -20, baseMultiplier = 2.708, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 84, damageEffectiveness = 2.766, attackSpeedMultiplier = -20, baseMultiplier = 2.766, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 88, damageEffectiveness = 2.824, attackSpeedMultiplier = -20, baseMultiplier = 2.824, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 92, damageEffectiveness = 2.882, attackSpeedMultiplier = -20, baseMultiplier = 2.882, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 96, damageEffectiveness = 2.939, attackSpeedMultiplier = -20, baseMultiplier = 2.939, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 100, damageEffectiveness = 2.997, attackSpeedMultiplier = -20, baseMultiplier = 2.997, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 104, damageEffectiveness = 3.055, attackSpeedMultiplier = -20, baseMultiplier = 3.055, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 108, damageEffectiveness = 3.113, attackSpeedMultiplier = -20, baseMultiplier = 3.113, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 112, damageEffectiveness = 3.171, attackSpeedMultiplier = -20, baseMultiplier = 3.171, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 116, damageEffectiveness = 3.229, attackSpeedMultiplier = -20, baseMultiplier = 3.229, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 118, damageEffectiveness = 3.258, attackSpeedMultiplier = -20, baseMultiplier = 3.258, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 120, damageEffectiveness = 3.287, attackSpeedMultiplier = -20, baseMultiplier = 3.287, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 122, damageEffectiveness = 3.316, attackSpeedMultiplier = -20, baseMultiplier = 3.316, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 124, damageEffectiveness = 3.345, attackSpeedMultiplier = -20, baseMultiplier = 3.345, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 126, damageEffectiveness = 3.374, attackSpeedMultiplier = -20, baseMultiplier = 3.374, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 128, damageEffectiveness = 3.403, attackSpeedMultiplier = -20, baseMultiplier = 3.403, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 130, damageEffectiveness = 3.432, attackSpeedMultiplier = -20, baseMultiplier = 3.432, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 132, damageEffectiveness = 3.461, attackSpeedMultiplier = -20, baseMultiplier = 3.461, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 134, damageEffectiveness = 3.489, attackSpeedMultiplier = -20, baseMultiplier = 3.489, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 136, damageEffectiveness = 3.518, attackSpeedMultiplier = -20, baseMultiplier = 3.518, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["PetrifiedBlood"] = { @@ -5795,13 +5378,6 @@ skills["PetrifiedBlood"] = { Default = { { "petrified_blood_%_prevented_life_loss_to_lose_over_time", -0.25 }, }, - Alternate1 = { - { "petrified_blood_%_prevented_life_loss_to_lose_over_time", 3 }, - { "petrified_blood_%_life_loss_below_half_from_hit_to_prevent", 0.25 }, - }, - Alternate2 = { - { "skill_grants_life_cost_%_mana_cost_while_not_on_low_life", -0.5 }, - }, }, constantStats = { { "petrified_blood_%_life_loss_below_half_from_hit_to_prevent", 40 }, @@ -5868,12 +5444,6 @@ skills["PhysicalDamageAura"] = { ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max"] = { mod("PhysicalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", modCond = "PrideMaxEffect" }), }, - ["receive_bleeding_chance_%_when_hit_by_attack"] = { - mod("SelfBleedChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, - ["base_additional_physical_damage_reduction_%"] = { - mod("PhysicalDamageReduction", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, }, baseFlags = { spell = true, @@ -5887,12 +5457,6 @@ skills["PhysicalDamageAura"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "receive_bleeding_chance_%_when_hit_by_attack", 0.5 }, - }, - Alternate2 = { - { "base_additional_physical_damage_reduction_%", -0.1 }, - }, }, stats = { "physical_damage_aura_nearby_enemies_physical_damage_taken_+%", @@ -5954,9 +5518,6 @@ skills["ProtectiveLink"] = { ["bulwark_link_grants_recover_X_life_on_block"] = { mod("LifeOnBlock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["bulwark_link_grants_stun_threshold_+%"] = { - mod("StunThreshold", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, ["display_bulwark_link_overrides_attack_block_and_maximum_attack_block"] = { mod("BlockAttackChanceIsEqualToParent", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Link" }), mod("MaximumBlockAttackChanceIsEqualToParent", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Link" }), @@ -5968,13 +5529,7 @@ skills["ProtectiveLink"] = { }, qualityStats = { Default = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate1 = { - { "skill_buff_effect_+%", 0.5 }, - }, - Alternate2 = { - { "bulwark_link_grants_stun_threshold_+%", 0.5 }, + { "base_skill_effect_duration", 75 }, }, }, stats = { @@ -6054,13 +5609,7 @@ skills["Punishment"] = { }, qualityStats = { Default = { - { "curse_effect_+%", 0.5 }, - }, - Alternate1 = { - { "base_curse_duration_+%", 1 }, - }, - Alternate2 = { - { "punishment_reflect_%_overkill_damage_to_nearby_allies_on_death", 0.5 }, + { "debilitate_self_for_x_milliseconds_on_hit", 50 }, }, }, constantStats = { @@ -6071,6 +5620,7 @@ skills["Punishment"] = { "active_skill_base_radius_+", "damage_taken_+%_on_low_life", "base_deal_no_damage", + "quality_display_debilitate_self_for_x_milliseconds_on_hit_is_gem", }, levels = { [1] = { 8000, 0, 30, levelRequirement = 24, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, @@ -6129,12 +5679,6 @@ skills["FireResistAura"] = { ["base_maximum_fire_damage_resistance_%"] = { mod("FireResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_ignite_%"] = { - mod("AvoidIgnite", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["base_reduce_enemy_fire_resistance_%"] = { - mod("FirePenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, baseFlags = { spell = true, @@ -6146,13 +5690,7 @@ skills["FireResistAura"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate1 = { - { "base_avoid_ignite_%", 0.25 }, - }, - Alternate2 = { - { "base_reduce_enemy_fire_resistance_%", 0.05 }, + { "base_fire_damage_resistance_%", 0.5 }, }, }, stats = { @@ -6312,15 +5850,27 @@ skills["RageVortex"] = { }, statMap = { ["rage_slash_radius_+_per_amount_of_rage_sacrificed"] = { - skill("radiusExtra", nil, { type = "Multiplier", var = "RageSacrificed", limitVar = "MaxRageVortexSacrifice" }), + skill("radiusExtra", nil, { type = "Multiplier", var = "RageSacrificed" }), div = 2 }, + ["rage_slash_rage_sacrifice_per_radius_bonus"] = { + -- Display only + }, + ["rage_slash_rage_sacrifice_per_damage_bonus"] = { + -- Display only + }, ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RageSacrificed", limitVar = "MaxRageVortexSacrifice" }), + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RageSacrificed" }), }, ["rage_slash_vortex_attack_speed_+%_final"] = { mod("Speed", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, + ["rage_slash_sacrifice_rage_%"] = { + mod("Multiplier:MaxRageVortexSacrificePercentage", "BASE", nil), + }, + ["quality_display_rage_vortex_is_gem"] = { + -- Display only + }, }, baseFlags = { attack = true, @@ -6328,18 +5878,9 @@ skills["RageVortex"] = { area = true, duration = true, }, - baseMods = { - skill("radius", 18), - }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "ragestorm_movement_speed_+%", 2 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 0.5 }, + { "rage_slash_sacrifice_rage_%", 0.25 }, }, }, constantStats = { @@ -6351,11 +5892,13 @@ skills["RageVortex"] = { { "rage_slash_maximum_vortices", 1 }, { "rage_slash_vortex_attack_speed_+%_final", 250 }, { "base_skill_effect_duration", 3000 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "is_area_damage", "skill_can_add_multiple_charges_per_action", "console_skill_dont_chase", + "quality_display_rage_vortex_is_gem", }, levels = { [1] = { damageEffectiveness = 0.4, attackSpeedMultiplier = -30, baseMultiplier = 0.4, levelRequirement = 28, cost = { Life = 25, }, }, @@ -6435,16 +5978,7 @@ skills["RallyingCry"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "rallying_cry_buff_effect_on_minions_+%_final", 2 }, - }, - Alternate3 = { - { "warcry_grant_damage_+%_to_exerted_attacks", 0.5 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -6525,11 +6059,6 @@ skills["Reckoning"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, - statMap = { - ["debilitate_enemies_for_1_second_on_hit_%_chance"] = { - mod("DebilitateChance", "BASE", nil) - }, - }, baseFlags = { attack = true, area = true, @@ -6540,16 +6069,7 @@ skills["Reckoning"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "debilitate_enemies_for_1_second_on_hit_%_chance", 2 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate3 = { - { "damage_+%", 1 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -6632,13 +6152,7 @@ skills["RejuvenationTotem"] = { }, qualityStats = { Default = { - { "base_aura_area_of_effect_+%", 3 }, - }, - Alternate1 = { - { "totem_duration_+%", 5 }, - }, - Alternate2 = { - { "aura_effect_+%", 1 }, + { "totem_life_+%_final", 1 }, }, }, constantStats = { @@ -6724,7 +6238,7 @@ skills["VaalRejuvenationTotem"] = { }, qualityStats = { Default = { - { "base_aura_area_of_effect_+%", 3 }, + { "totem_life_+%_final", 1 }, }, }, constantStats = { @@ -6804,15 +6318,6 @@ skills["SearingBond"] = { }, qualityStats = { Default = { - { "totem_life_+%", 1 }, - }, - Alternate1 = { - { "totem_duration_+%", 2 }, - }, - Alternate2 = { - { "damage_+%", 1 }, - }, - Alternate3 = { { "number_of_additional_totems_allowed", 0.1 }, }, }, @@ -6889,10 +6394,6 @@ skills["SeismicCry"] = { ["seismic_cry_+%_enemy_stun_threshold_per_5_MP"] = { mod("SeismicStunThresholdPer5MP", "BASE", nil), }, - ["warcry_grant_knockback_%_to_exerted_attacks"] = { - -- Not limited to exerted but should be okay because the cry will flag them as exerted - mod("EnemyKnockbackChance", "BASE", nil), - }, }, baseFlags = { warcry = true, @@ -6904,16 +6405,7 @@ skills["SeismicCry"] = { }, qualityStats = { Default = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate1 = { - { "warcry_speed_+%", 2 }, - }, - Alternate2 = { - { "warcry_grant_knockback_%_to_exerted_attacks", 2 }, - }, - Alternate3 = { - { "warcry_grant_damage_+%_to_exerted_attacks", 0.5 }, + { "base_cooldown_speed_+%", 2 }, }, }, constantStats = { @@ -7004,12 +6496,6 @@ skills["NewShieldCharge"] = { Default = { { "base_movement_velocity_+%", 1 }, }, - Alternate1 = { - { "damage_+%", 1 }, - }, - Alternate2 = { - { "shield_charge_damage_+%_maximum", 1 }, - }, }, constantStats = { { "shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range", 75 }, @@ -7085,28 +6571,16 @@ skills["ShockwaveTotem"] = { area = true, duration = true, }, - baseMods = { - skill("radius", 24), - }, qualityStats = { Default = { - { "totem_life_+%", 1 }, - }, - Alternate1 = { - { "summon_totem_cast_speed_+%", 1 }, - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 2 }, - }, - Alternate3 = { - { "base_global_chance_to_knockback_%", 1 }, + { "active_skill_base_radius_+", 0.1 }, }, }, constantStats = { { "base_totem_duration", 8000 }, { "base_totem_range", 80 }, { "base_global_chance_to_knockback_%", 25 }, + { "active_skill_base_area_of_effect_radius", 24 }, }, stats = { "spell_minimum_base_physical_damage", @@ -7163,7 +6637,7 @@ skills["Smite"] = { color = 1, baseEffectiveness = 0.60000002384186, incrementalEffectiveness = 0.028000000864267, - description = "Performs a melee attack, and causes lightning to strike a targeted location or nearby enemy, dealing damage in an area. Each target can only be hit once by this skill. Hitting an enemy grants an aura, giving you and your allies additional lightning damage for a duration. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Performs a melee attack, and causes lightning to strike a nearby enemy, dealing damage in an area. Each target can only be hit once by this skill. Hitting an enemy grants an aura for a duration. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Damage] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Aura] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, }, weaponTypes = { ["None"] = true, @@ -7200,8 +6674,8 @@ skills["Smite"] = { ["maximum_added_lightning_damage_from_skill"] = { mod("LightningMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", neg = true, var = "AffectedByVaalSmite" }), }, - ["skill_buff_grants_attack_and_cast_speed_+%"] = { - mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", neg = true, var = "AffectedByVaalSmite" }) + ["quality_display_active_skill_area_damage_quality_negated_from_gem"] = { + -- Display only }, }, baseFlags = { @@ -7211,77 +6685,76 @@ skills["Smite"] = { area = true, }, baseMods = { - skill("radius", 15), + skill("radiusLabel", "Lightning Strike area:"), + skill("radiusSecondaryLabel", "Aura area:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "lightning_damage_+%", 1 }, - }, - Alternate3 = { - { "skill_buff_grants_attack_and_cast_speed_+%", 0.25 }, + { "active_skill_area_damage_+%_final", 0.5 }, + { "quality_display_active_skill_area_damage_quality_negated_from_gem", 1 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, { "base_skill_effect_duration", 4000 }, { "base_smite_number_of_targets", 1 }, + { "smite_lightning_target_range", 50 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_secondary_area_of_effect_radius", 36 }, + { "active_skill_secondary_area_of_effect_description_mode", 4 }, }, stats = { "minimum_added_lightning_damage_from_skill", "maximum_added_lightning_damage_from_skill", "base_chance_to_shock_%_from_skill", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", + "active_skill_base_secondary_area_of_effect_radius", "active_skill_area_damage_+%_final", "visual_hit_effect_elemental_is_holy", "console_skill_dont_chase", + "quality_display_active_skill_area_damage_is_gem", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 10, 0, -30, damageEffectiveness = 1.96, attackSpeedMultiplier = -15, baseMultiplier = 1.96, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 10, 0, -29, damageEffectiveness = 2, attackSpeedMultiplier = -15, baseMultiplier = 2.001, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 11, 1, -29, damageEffectiveness = 2.04, attackSpeedMultiplier = -15, baseMultiplier = 2.041, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 11, 1, -28, damageEffectiveness = 2.08, attackSpeedMultiplier = -15, baseMultiplier = 2.082, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 12, 1, -28, damageEffectiveness = 2.12, attackSpeedMultiplier = -15, baseMultiplier = 2.122, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 12, 2, -27, damageEffectiveness = 2.16, attackSpeedMultiplier = -15, baseMultiplier = 2.163, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 13, 2, -27, damageEffectiveness = 2.2, attackSpeedMultiplier = -15, baseMultiplier = 2.203, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 13, 2, -26, damageEffectiveness = 2.24, attackSpeedMultiplier = -15, baseMultiplier = 2.244, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 14, 3, -26, damageEffectiveness = 2.28, attackSpeedMultiplier = -15, baseMultiplier = 2.284, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 14, 3, -25, damageEffectiveness = 2.32, attackSpeedMultiplier = -15, baseMultiplier = 2.325, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 15, 3, -25, damageEffectiveness = 2.37, attackSpeedMultiplier = -15, baseMultiplier = 2.365, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 15, 4, -24, damageEffectiveness = 2.41, attackSpeedMultiplier = -15, baseMultiplier = 2.406, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 16, 4, -24, damageEffectiveness = 2.45, attackSpeedMultiplier = -15, baseMultiplier = 2.446, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 16, 4, -23, damageEffectiveness = 2.49, attackSpeedMultiplier = -15, baseMultiplier = 2.487, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 17, 5, -23, damageEffectiveness = 2.53, attackSpeedMultiplier = -15, baseMultiplier = 2.527, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 17, 5, -22, damageEffectiveness = 2.57, attackSpeedMultiplier = -15, baseMultiplier = 2.568, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 18, 5, -22, damageEffectiveness = 2.61, attackSpeedMultiplier = -15, baseMultiplier = 2.608, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 18, 6, -21, damageEffectiveness = 2.65, attackSpeedMultiplier = -15, baseMultiplier = 2.649, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 19, 6, -21, damageEffectiveness = 2.69, attackSpeedMultiplier = -15, baseMultiplier = 2.689, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 19, 6, -20, damageEffectiveness = 2.73, attackSpeedMultiplier = -15, baseMultiplier = 2.73, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 20, 7, -20, damageEffectiveness = 2.77, attackSpeedMultiplier = -15, baseMultiplier = 2.771, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 20, 7, -19, damageEffectiveness = 2.81, attackSpeedMultiplier = -15, baseMultiplier = 2.811, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 21, 7, -19, damageEffectiveness = 2.85, attackSpeedMultiplier = -15, baseMultiplier = 2.852, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 21, 8, -18, damageEffectiveness = 2.89, attackSpeedMultiplier = -15, baseMultiplier = 2.892, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 22, 8, -18, damageEffectiveness = 2.93, attackSpeedMultiplier = -15, baseMultiplier = 2.933, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 22, 8, -17, damageEffectiveness = 2.97, attackSpeedMultiplier = -15, baseMultiplier = 2.973, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 23, 8, -17, damageEffectiveness = 3.01, attackSpeedMultiplier = -15, baseMultiplier = 3.014, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 23, 9, -16, damageEffectiveness = 3.05, attackSpeedMultiplier = -15, baseMultiplier = 3.054, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 24, 9, -16, damageEffectiveness = 3.09, attackSpeedMultiplier = -15, baseMultiplier = 3.095, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 24, 9, -15, damageEffectiveness = 3.14, attackSpeedMultiplier = -15, baseMultiplier = 3.135, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 24, 10, -15, damageEffectiveness = 3.16, attackSpeedMultiplier = -15, baseMultiplier = 3.156, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 25, 10, -15, damageEffectiveness = 3.18, attackSpeedMultiplier = -15, baseMultiplier = 3.176, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 25, 10, -15, damageEffectiveness = 3.2, attackSpeedMultiplier = -15, baseMultiplier = 3.196, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 25, 10, -14, damageEffectiveness = 3.22, attackSpeedMultiplier = -15, baseMultiplier = 3.216, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 25, 10, -14, damageEffectiveness = 3.24, attackSpeedMultiplier = -15, baseMultiplier = 3.237, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 26, 10, -14, damageEffectiveness = 3.26, attackSpeedMultiplier = -15, baseMultiplier = 3.257, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 26, 11, -14, damageEffectiveness = 3.28, attackSpeedMultiplier = -15, baseMultiplier = 3.277, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 26, 11, -13, damageEffectiveness = 3.3, attackSpeedMultiplier = -15, baseMultiplier = 3.297, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 26, 11, -13, damageEffectiveness = 3.32, attackSpeedMultiplier = -15, baseMultiplier = 3.318, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 27, 11, -13, damageEffectiveness = 3.34, attackSpeedMultiplier = -15, baseMultiplier = 3.338, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 10, 0, 0, -30, damageEffectiveness = 1.96, attackSpeedMultiplier = -15, baseMultiplier = 1.96, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 10, 0, 0, -29, damageEffectiveness = 2, attackSpeedMultiplier = -15, baseMultiplier = 2.001, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 11, 1, 1, -29, damageEffectiveness = 2.04, attackSpeedMultiplier = -15, baseMultiplier = 2.041, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 11, 1, 1, -28, damageEffectiveness = 2.08, attackSpeedMultiplier = -15, baseMultiplier = 2.082, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 12, 1, 1, -28, damageEffectiveness = 2.12, attackSpeedMultiplier = -15, baseMultiplier = 2.122, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 12, 2, 2, -27, damageEffectiveness = 2.16, attackSpeedMultiplier = -15, baseMultiplier = 2.163, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 13, 2, 2, -27, damageEffectiveness = 2.2, attackSpeedMultiplier = -15, baseMultiplier = 2.203, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 13, 2, 2, -26, damageEffectiveness = 2.24, attackSpeedMultiplier = -15, baseMultiplier = 2.244, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 14, 3, 3, -26, damageEffectiveness = 2.28, attackSpeedMultiplier = -15, baseMultiplier = 2.284, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 14, 3, 3, -25, damageEffectiveness = 2.32, attackSpeedMultiplier = -15, baseMultiplier = 2.325, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 15, 3, 3, -25, damageEffectiveness = 2.37, attackSpeedMultiplier = -15, baseMultiplier = 2.365, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 15, 4, 4, -24, damageEffectiveness = 2.41, attackSpeedMultiplier = -15, baseMultiplier = 2.406, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 16, 4, 4, -24, damageEffectiveness = 2.45, attackSpeedMultiplier = -15, baseMultiplier = 2.446, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 16, 4, 4, -23, damageEffectiveness = 2.49, attackSpeedMultiplier = -15, baseMultiplier = 2.487, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 17, 5, 5, -23, damageEffectiveness = 2.53, attackSpeedMultiplier = -15, baseMultiplier = 2.527, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 17, 5, 5, -22, damageEffectiveness = 2.57, attackSpeedMultiplier = -15, baseMultiplier = 2.568, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 18, 5, 5, -22, damageEffectiveness = 2.61, attackSpeedMultiplier = -15, baseMultiplier = 2.608, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 18, 6, 6, -21, damageEffectiveness = 2.65, attackSpeedMultiplier = -15, baseMultiplier = 2.649, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 19, 6, 6, -21, damageEffectiveness = 2.69, attackSpeedMultiplier = -15, baseMultiplier = 2.689, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 19, 6, 6, -20, damageEffectiveness = 2.73, attackSpeedMultiplier = -15, baseMultiplier = 2.73, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 20, 7, 7, -20, damageEffectiveness = 2.77, attackSpeedMultiplier = -15, baseMultiplier = 2.771, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 20, 7, 7, -19, damageEffectiveness = 2.81, attackSpeedMultiplier = -15, baseMultiplier = 2.811, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 21, 7, 7, -19, damageEffectiveness = 2.85, attackSpeedMultiplier = -15, baseMultiplier = 2.852, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 21, 8, 8, -18, damageEffectiveness = 2.89, attackSpeedMultiplier = -15, baseMultiplier = 2.892, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 22, 8, 8, -18, damageEffectiveness = 2.93, attackSpeedMultiplier = -15, baseMultiplier = 2.933, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 22, 8, 8, -17, damageEffectiveness = 2.97, attackSpeedMultiplier = -15, baseMultiplier = 2.973, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 23, 8, 8, -17, damageEffectiveness = 3.01, attackSpeedMultiplier = -15, baseMultiplier = 3.014, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 23, 9, 9, -16, damageEffectiveness = 3.05, attackSpeedMultiplier = -15, baseMultiplier = 3.054, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 24, 9, 9, -16, damageEffectiveness = 3.09, attackSpeedMultiplier = -15, baseMultiplier = 3.095, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 24, 9, 9, -15, damageEffectiveness = 3.14, attackSpeedMultiplier = -15, baseMultiplier = 3.135, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 24, 10, 10, -15, damageEffectiveness = 3.16, attackSpeedMultiplier = -15, baseMultiplier = 3.156, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, -15, damageEffectiveness = 3.18, attackSpeedMultiplier = -15, baseMultiplier = 3.176, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, -15, damageEffectiveness = 3.2, attackSpeedMultiplier = -15, baseMultiplier = 3.196, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, -14, damageEffectiveness = 3.22, attackSpeedMultiplier = -15, baseMultiplier = 3.216, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, -14, damageEffectiveness = 3.24, attackSpeedMultiplier = -15, baseMultiplier = 3.237, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 26, 10, 10, -14, damageEffectiveness = 3.26, attackSpeedMultiplier = -15, baseMultiplier = 3.257, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, -14, damageEffectiveness = 3.28, attackSpeedMultiplier = -15, baseMultiplier = 3.277, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, -13, damageEffectiveness = 3.3, attackSpeedMultiplier = -15, baseMultiplier = 3.297, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, -13, damageEffectiveness = 3.32, attackSpeedMultiplier = -15, baseMultiplier = 3.318, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 27, 11, 11, -13, damageEffectiveness = 3.34, attackSpeedMultiplier = -15, baseMultiplier = 3.338, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 6, }, }, }, } skills["VaalSmite"] = { @@ -7289,7 +6762,7 @@ skills["VaalSmite"] = { color = 1, baseEffectiveness = 0.89999997615814, incrementalEffectiveness = 0.028000000864267, - description = "Calls lightning down to infuse your weapon, then performs a melee attack and causes lightning to strike nearby enemies, dealing damage in an area around each. Hitting an enemy grants an aura, giving you and your allies additional lightning damage for a duration, and additional lightning bolts with Smite. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Calls lightning down to infuse your weapon, then performs a melee attack and causes lightning to strike nearby enemies, dealing damage in an area. Hitting an enemy grants an aura for a duration. Requires a Sword, Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Aura] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["None"] = true, @@ -7334,11 +6807,12 @@ skills["VaalSmite"] = { area = true, }, baseMods = { - skill("radius", 15), + skill("radiusLabel", "Lightning Strike area:"), + skill("radiusSecondaryLabel", "Aura area:"), }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "active_skill_area_damage_+%_final", 0.5 }, }, }, constantStats = { @@ -7346,60 +6820,66 @@ skills["VaalSmite"] = { { "base_skill_effect_duration", 8000 }, { "base_smite_number_of_targets", 30 }, { "buff_grants_smite_additional_lightning_targets", 1 }, + { "smite_lightning_target_range", 100 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_secondary_area_of_effect_radius", 36 }, + { "active_skill_secondary_area_of_effect_description_mode", 4 }, }, stats = { "minimum_added_lightning_damage_from_skill", "maximum_added_lightning_damage_from_skill", "base_chance_to_shock_%_from_skill", - "active_skill_base_radius_+", + "active_skill_base_area_of_effect_radius", + "active_skill_base_secondary_area_of_effect_radius", "visual_hit_effect_elemental_is_holy", "console_skill_dont_chase", "cannot_cancel_skill_before_contact_point", "has_vaal_smite_behaviour", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "global_always_hit", + "quality_display_active_skill_area_damage_is_gem", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 10, 0, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3, vaalStoredUses = 2, baseMultiplier = 3, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 10, 0, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.068, vaalStoredUses = 2, baseMultiplier = 3.068, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 11, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.137, vaalStoredUses = 2, baseMultiplier = 3.137, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 11, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.205, vaalStoredUses = 2, baseMultiplier = 3.205, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 12, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.274, vaalStoredUses = 2, baseMultiplier = 3.274, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 12, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.342, vaalStoredUses = 2, baseMultiplier = 3.342, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 13, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.411, vaalStoredUses = 2, baseMultiplier = 3.411, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 13, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.479, vaalStoredUses = 2, baseMultiplier = 3.479, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 14, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.547, vaalStoredUses = 2, baseMultiplier = 3.547, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 14, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.616, vaalStoredUses = 2, baseMultiplier = 3.616, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 15, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.684, vaalStoredUses = 2, baseMultiplier = 3.684, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 15, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.753, vaalStoredUses = 2, baseMultiplier = 3.753, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 16, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.821, vaalStoredUses = 2, baseMultiplier = 3.821, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 16, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.889, vaalStoredUses = 2, baseMultiplier = 3.889, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 17, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.958, vaalStoredUses = 2, baseMultiplier = 3.958, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 17, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.026, vaalStoredUses = 2, baseMultiplier = 4.026, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 18, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.095, vaalStoredUses = 2, baseMultiplier = 4.095, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 18, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.163, vaalStoredUses = 2, baseMultiplier = 4.163, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 19, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.232, vaalStoredUses = 2, baseMultiplier = 4.232, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 19, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.3, vaalStoredUses = 2, baseMultiplier = 4.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 20, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.368, vaalStoredUses = 2, baseMultiplier = 4.368, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 20, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.437, vaalStoredUses = 2, baseMultiplier = 4.437, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 21, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.505, vaalStoredUses = 2, baseMultiplier = 4.505, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 21, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.574, vaalStoredUses = 2, baseMultiplier = 4.574, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 22, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.642, vaalStoredUses = 2, baseMultiplier = 4.642, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 22, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.711, vaalStoredUses = 2, baseMultiplier = 4.711, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 23, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.779, vaalStoredUses = 2, baseMultiplier = 4.779, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 23, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.847, vaalStoredUses = 2, baseMultiplier = 4.847, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 24, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.916, vaalStoredUses = 2, baseMultiplier = 4.916, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 24, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.984, vaalStoredUses = 2, baseMultiplier = 4.984, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 24, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.018, vaalStoredUses = 2, baseMultiplier = 5.018, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 25, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.053, vaalStoredUses = 2, baseMultiplier = 5.053, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 25, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.087, vaalStoredUses = 2, baseMultiplier = 5.087, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 25, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.121, vaalStoredUses = 2, baseMultiplier = 5.121, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 25, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.155, vaalStoredUses = 2, baseMultiplier = 5.155, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 26, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.189, vaalStoredUses = 2, baseMultiplier = 5.189, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 26, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.224, vaalStoredUses = 2, baseMultiplier = 5.224, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 26, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.258, vaalStoredUses = 2, baseMultiplier = 5.258, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 26, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.292, vaalStoredUses = 2, baseMultiplier = 5.292, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 27, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.326, vaalStoredUses = 2, baseMultiplier = 5.326, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Soul = 20, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 10, 0, 0, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3, vaalStoredUses = 2, baseMultiplier = 3, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 10, 0, 0, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.068, vaalStoredUses = 2, baseMultiplier = 3.068, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 11, 1, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.137, vaalStoredUses = 2, baseMultiplier = 3.137, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 11, 1, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.205, vaalStoredUses = 2, baseMultiplier = 3.205, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 12, 1, 1, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.274, vaalStoredUses = 2, baseMultiplier = 3.274, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 12, 2, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.342, vaalStoredUses = 2, baseMultiplier = 3.342, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 13, 2, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.411, vaalStoredUses = 2, baseMultiplier = 3.411, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 13, 2, 2, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.479, vaalStoredUses = 2, baseMultiplier = 3.479, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 14, 3, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.547, vaalStoredUses = 2, baseMultiplier = 3.547, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 14, 3, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.616, vaalStoredUses = 2, baseMultiplier = 3.616, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 15, 3, 3, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.684, vaalStoredUses = 2, baseMultiplier = 3.684, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 15, 4, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.753, vaalStoredUses = 2, baseMultiplier = 3.753, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 16, 4, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.821, vaalStoredUses = 2, baseMultiplier = 3.821, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 16, 4, 4, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.889, vaalStoredUses = 2, baseMultiplier = 3.889, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 17, 5, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 3.958, vaalStoredUses = 2, baseMultiplier = 3.958, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 17, 5, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.026, vaalStoredUses = 2, baseMultiplier = 4.026, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 18, 5, 5, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.095, vaalStoredUses = 2, baseMultiplier = 4.095, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 18, 6, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.163, vaalStoredUses = 2, baseMultiplier = 4.163, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 19, 6, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.232, vaalStoredUses = 2, baseMultiplier = 4.232, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 19, 6, 6, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.3, vaalStoredUses = 2, baseMultiplier = 4.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 20, 7, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.368, vaalStoredUses = 2, baseMultiplier = 4.368, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 20, 7, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.437, vaalStoredUses = 2, baseMultiplier = 4.437, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 21, 7, 7, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.505, vaalStoredUses = 2, baseMultiplier = 4.505, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 21, 8, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.574, vaalStoredUses = 2, baseMultiplier = 4.574, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 22, 8, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.642, vaalStoredUses = 2, baseMultiplier = 4.642, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 22, 8, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.711, vaalStoredUses = 2, baseMultiplier = 4.711, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 23, 8, 8, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.779, vaalStoredUses = 2, baseMultiplier = 4.779, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 23, 9, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.847, vaalStoredUses = 2, baseMultiplier = 4.847, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 24, 9, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.916, vaalStoredUses = 2, baseMultiplier = 4.916, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 24, 9, 9, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 4.984, vaalStoredUses = 2, baseMultiplier = 4.984, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 24, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.018, vaalStoredUses = 2, baseMultiplier = 5.018, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.053, vaalStoredUses = 2, baseMultiplier = 5.053, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.087, vaalStoredUses = 2, baseMultiplier = 5.087, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.121, vaalStoredUses = 2, baseMultiplier = 5.121, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 25, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.155, vaalStoredUses = 2, baseMultiplier = 5.155, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 26, 10, 10, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.189, vaalStoredUses = 2, baseMultiplier = 5.189, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.224, vaalStoredUses = 2, baseMultiplier = 5.224, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.258, vaalStoredUses = 2, baseMultiplier = 5.258, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 26, 11, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.292, vaalStoredUses = 2, baseMultiplier = 5.292, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 27, 11, 11, attackSpeedMultiplier = -50, soulPreventionDuration = 6, damageEffectiveness = 5.326, vaalStoredUses = 2, baseMultiplier = 5.326, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Soul = 20, }, }, }, } skills["StaticStrike"] = { @@ -7440,16 +6920,12 @@ skills["StaticStrike"] = { skill("repeatFrequency", nil), div = 1000, }, - ["static_strike_zap_speed_+%"] = { - skill("repeatFrequencyIncrease", nil), - div = 100 - }, }, -preDamageFunc = function(activeSkill, output) - if activeSkill.skillPart == 2 then - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / ((activeSkill.skillData.repeatFrequencyIncrease or 0) + 1) - end -end, + preDamageFunc = function(activeSkill, output) + if activeSkill.skillPart == 2 then + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency + end + end, baseFlags = { attack = true, melee = true, @@ -7462,17 +6938,6 @@ end, Default = { { "static_strike_zap_speed_+%", 1 }, }, - Alternate1 = { - { "damage_+%", 1 }, - }, - Alternate2 = { - { "number_of_chains", 0.05 }, - { "damage_+%", -2 }, - }, - Alternate3 = { - { "static_strike_zap_speed_+%", 1 }, - { "base_skill_area_of_effect_+%", -1 }, - }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, @@ -7537,19 +7002,12 @@ skills["QuickGuard"] = { statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { - ["resist_all_%"] = { - mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }), - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }), - }, ["quick_guard_damage_absorbed_%"] = { mod("GuardAbsorbRate", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), }, ["quick_guard_damage_absorb_limit"] = { mod("GuardAbsorbLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), }, - ["steelskin_damage_limit_+%"] = { - mod("GuardAbsorbLimit", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), - }, }, baseFlags = { spell = true, @@ -7562,12 +7020,6 @@ skills["QuickGuard"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "steelskin_damage_limit_+%", 0.5 }, - }, - Alternate2 = { - { "resist_all_%", 1 }, - }, }, constantStats = { { "quick_guard_damage_absorbed_%", 70 }, @@ -7643,6 +7095,9 @@ skills["Bloodreap"] = { skill("FireDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage"}), div = 60, }, + ["quality_display_reap_is_gem"] = { + -- Display only + }, }, baseFlags = { spell = true, @@ -7657,12 +7112,6 @@ skills["Bloodreap"] = { Default = { { "blood_scythe_damage_+%_final_per_charge", 0.25 }, }, - Alternate1 = { - { "critical_strike_chance_+%", 3 }, - }, - Alternate2 = { - { "reap_life_%_granted_on_death_with_debuff", 0.1 }, - }, }, constantStats = { { "blood_scythe_damage_+%_final_per_charge", 15 }, @@ -7676,6 +7125,7 @@ skills["Bloodreap"] = { "spell_damage_modifiers_apply_to_skill_dot", "is_area_damage", "lose_blood_scythe_charge_on_kill", + "quality_display_reap_is_gem", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 100.66666828096, damageEffectiveness = 2.1, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 25, }, }, @@ -7832,6 +7282,11 @@ skills["ShieldCrush"] = { name = "2 Overlapping Waves", }, }, + statMap = { + ["shield_crush_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "MeleeProximity", ramp = {1,0} }), + }, + }, baseFlags = { attack = true, melee = true, @@ -7844,13 +7299,7 @@ skills["ShieldCrush"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate2 = { - { "critical_multiplier_+%_per_100_max_es_on_shield", 1 }, + { "shield_crush_damage_+%_final_from_distance", 0.5 }, }, }, stats = { @@ -7909,7 +7358,7 @@ skills["ShieldCrush"] = { skills["SummonFireGolem"] = { name = "Summon Flame Golem", color = 1, - description = "Summons a Flame Golem that grants you increased Damage. The Flame Golem can use a fire spray, a wave of fire damage, and an explosive arcing projectile.", + description = "Summons a Flame Golem that grants you increased Damage. The Flame Golem can cast a fire spray, a wave of fire damage, and an explosive arcing projectile.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -7936,12 +7385,6 @@ skills["SummonFireGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -7950,51 +7393,50 @@ skills["SummonFireGolem"] = { stats = { "base_actor_scale_+%", "fire_golem_grants_damage_+%", - "minion_maximum_life_+%", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0, 15, 0, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 1, 15, 2, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 1, 16, 4, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 2, 16, 6, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 2, 16, 8, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 3, 16, 10, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 3, 17, 12, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 4, 17, 14, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 4, 17, 16, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 5, 17, 18, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 5, 18, 20, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 6, 18, 22, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 6, 18, 24, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 7, 18, 26, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 7, 19, 28, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 8, 19, 30, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 8, 19, 32, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 9, 19, 34, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 9, 20, 36, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 10, 20, 38, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 10, 20, 40, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 11, 20, 42, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 11, 21, 44, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 12, 21, 46, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 12, 21, 48, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 13, 21, 50, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 13, 22, 52, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 14, 22, 54, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 14, 22, 56, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 15, 22, 58, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 15, 22, 59, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 15, 23, 60, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 15, 23, 61, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 16, 23, 62, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 16, 23, 63, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 16, 23, 64, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 16, 23, 65, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 17, 23, 66, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 17, 23, 67, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 17, 24, 68, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0, 15, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 1, 15, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 1, 16, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 2, 16, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 2, 16, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 3, 16, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 3, 17, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 4, 17, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 4, 17, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 5, 17, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 5, 18, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 6, 18, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 6, 18, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 7, 18, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 7, 19, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 8, 19, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 8, 19, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 9, 19, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 9, 20, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 10, 20, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 10, 20, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 11, 20, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 11, 21, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 12, 21, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 12, 21, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 13, 21, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 13, 22, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 14, 22, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 14, 22, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 15, 22, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 15, 22, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 15, 23, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 15, 23, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 16, 23, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 16, 23, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 16, 23, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 16, 23, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 17, 23, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 17, 23, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 17, 24, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["SummonRockGolem"] = { @@ -8028,12 +7470,6 @@ skills["SummonRockGolem"] = { Default = { { "golem_buff_effect_+%", 1 }, }, - Alternate1 = { - { "golem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "golem_cooldown_recovery_+%", 1 }, - }, }, constantStats = { { "base_number_of_golems_allowed", 1 }, @@ -8041,52 +7477,51 @@ skills["SummonRockGolem"] = { }, stats = { "base_actor_scale_+%", - "minion_maximum_life_+%", "stone_golem_grants_base_life_regeneration_rate_per_minute", "base_display_minion_actor_level", "infinite_minion_duration", }, levels = { - [1] = { 0, 0, 1980, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [2] = { 1, 2, 2160, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, - [3] = { 1, 4, 2340, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, - [4] = { 2, 6, 2520, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, - [5] = { 2, 8, 2700, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, - [6] = { 3, 10, 2940, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, - [7] = { 3, 12, 3120, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, - [8] = { 4, 14, 3360, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [9] = { 4, 16, 3600, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, - [10] = { 5, 18, 3840, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 46, }, }, - [11] = { 5, 20, 4080, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [12] = { 6, 22, 4320, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 48, }, }, - [13] = { 6, 24, 4560, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [14] = { 7, 26, 4860, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 50, }, }, - [15] = { 7, 28, 5100, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [16] = { 8, 30, 5400, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [17] = { 8, 32, 5700, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [18] = { 9, 34, 6000, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 52, }, }, - [19] = { 9, 36, 6180, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [20] = { 10, 38, 6300, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 54, }, }, - [21] = { 10, 40, 6600, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [22] = { 11, 42, 6960, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 56, }, }, - [23] = { 11, 44, 7260, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [24] = { 12, 46, 7620, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 58, }, }, - [25] = { 12, 48, 7980, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [26] = { 13, 50, 8340, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [27] = { 13, 52, 8700, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [28] = { 14, 54, 9060, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 60, }, }, - [29] = { 14, 56, 9420, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [30] = { 15, 58, 9840, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [31] = { 15, 59, 10020, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 62, }, }, - [32] = { 15, 60, 10200, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [33] = { 15, 61, 10380, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [34] = { 16, 62, 10560, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [35] = { 16, 63, 10740, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 63, }, }, - [36] = { 16, 64, 10920, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [37] = { 16, 65, 11100, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [38] = { 17, 66, 11280, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [39] = { 17, 67, 11460, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, - [40] = { 17, 68, 11640, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 64, }, }, + [1] = { 0, 1980, 34, storedUses = 1, levelRequirement = 34, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, + [2] = { 1, 2160, 36, storedUses = 1, levelRequirement = 36, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, + [3] = { 1, 2340, 38, storedUses = 1, levelRequirement = 38, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, + [4] = { 2, 2520, 40, storedUses = 1, levelRequirement = 40, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, + [5] = { 2, 2700, 42, storedUses = 1, levelRequirement = 42, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 38, }, }, + [6] = { 3, 2940, 44, storedUses = 1, levelRequirement = 44, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 40, }, }, + [7] = { 3, 3120, 46, storedUses = 1, levelRequirement = 46, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 42, }, }, + [8] = { 4, 3360, 48, storedUses = 1, levelRequirement = 48, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [9] = { 4, 3600, 50, storedUses = 1, levelRequirement = 50, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 44, }, }, + [10] = { 5, 3840, 52, storedUses = 1, levelRequirement = 52, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 46, }, }, + [11] = { 5, 4080, 54, storedUses = 1, levelRequirement = 54, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [12] = { 6, 4320, 56, storedUses = 1, levelRequirement = 56, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 48, }, }, + [13] = { 6, 4560, 58, storedUses = 1, levelRequirement = 58, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [14] = { 7, 4860, 60, storedUses = 1, levelRequirement = 60, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 50, }, }, + [15] = { 7, 5100, 62, storedUses = 1, levelRequirement = 62, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [16] = { 8, 5400, 64, storedUses = 1, levelRequirement = 64, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [17] = { 8, 5700, 66, storedUses = 1, levelRequirement = 66, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [18] = { 9, 6000, 68, storedUses = 1, levelRequirement = 68, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 52, }, }, + [19] = { 9, 6180, 69, storedUses = 1, levelRequirement = 69, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [20] = { 10, 6300, 70, storedUses = 1, levelRequirement = 70, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 54, }, }, + [21] = { 10, 6600, 72, storedUses = 1, levelRequirement = 72, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [22] = { 11, 6960, 74, storedUses = 1, levelRequirement = 74, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 56, }, }, + [23] = { 11, 7260, 76, storedUses = 1, levelRequirement = 76, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [24] = { 12, 7620, 78, storedUses = 1, levelRequirement = 78, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 58, }, }, + [25] = { 12, 7980, 80, storedUses = 1, levelRequirement = 80, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [26] = { 13, 8340, 82, storedUses = 1, levelRequirement = 82, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [27] = { 13, 8700, 84, storedUses = 1, levelRequirement = 84, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [28] = { 14, 9060, 86, storedUses = 1, levelRequirement = 86, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 60, }, }, + [29] = { 14, 9420, 88, storedUses = 1, levelRequirement = 88, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [30] = { 15, 9840, 90, storedUses = 1, levelRequirement = 90, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [31] = { 15, 10020, 91, storedUses = 1, levelRequirement = 91, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 62, }, }, + [32] = { 15, 10200, 92, storedUses = 1, levelRequirement = 92, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [33] = { 15, 10380, 93, storedUses = 1, levelRequirement = 93, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [34] = { 16, 10560, 94, storedUses = 1, levelRequirement = 94, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [35] = { 16, 10740, 95, storedUses = 1, levelRequirement = 95, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 63, }, }, + [36] = { 16, 10920, 96, storedUses = 1, levelRequirement = 96, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [37] = { 16, 11100, 97, storedUses = 1, levelRequirement = 97, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [38] = { 17, 11280, 98, storedUses = 1, levelRequirement = 98, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [39] = { 17, 11460, 99, storedUses = 1, levelRequirement = 99, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, + [40] = { 17, 11640, 100, storedUses = 1, levelRequirement = 100, cooldown = 6, statInterpolation = { 1, 1, 1, }, cost = { Mana = 64, }, }, }, } skills["NewSunder"] = { @@ -8126,12 +7561,6 @@ skills["NewSunder"] = { ["sunder_wave_radius_+_per_step"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "SunderWaveArea" }), }, - ["sunder_shockwave_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 3 }), - }, - ["sunder_wave_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPartList = {1, 2} }), - }, }, baseFlags = { attack = true, @@ -8144,17 +7573,7 @@ skills["NewSunder"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "sunder_wave_delay_+%", -0.5 }, - }, - Alternate2 = { - { "physical_damage_+%", 1 }, - }, - Alternate3 = { - { "sunder_shockwave_area_of_effect_+%", -1 }, - { "sunder_wave_area_of_effect_+%", 1 }, + { "sunder_wave_radius_+_per_step", 0.05 }, }, }, constantStats = { @@ -8239,16 +7658,7 @@ skills["Sweep"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "attack_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_chance_to_deal_triple_damage_%", 0.1 }, - }, - Alternate3 = { - { "knockback_distance_+%", 1 }, + { "active_skill_base_radius_+", 0.2 }, }, }, stats = { @@ -8325,10 +7735,6 @@ skills["EnduranceChargeSlam"] = { ["active_skill_area_of_effect_+%_final_per_endurance_charge"] = { mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), }, - ["base_life_leech_from_fire_damage_permyriad"] = { - mod("FireDamageLifeLeech", "BASE", nil), - div = 100, - } }, baseFlags = { attack = true, @@ -8343,17 +7749,7 @@ skills["EnduranceChargeSlam"] = { }, qualityStats = { Default = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate1 = { - { "burn_damage_+%", 3 }, - { "base_chance_to_ignite_%", 1 }, - }, - Alternate2 = { - { "base_life_leech_from_fire_damage_permyriad", 10 }, - }, - Alternate3 = { - { "fire_damage_+%", 1 }, + { "tectonic_slam_side_crack_additional_chance_%", 1.5 }, }, }, constantStats = { @@ -8365,6 +7761,7 @@ skills["EnduranceChargeSlam"] = { stats = { "is_area_damage", "console_skill_dont_chase", + "quality_display_tectonic_slam_is_gem", }, levels = { [1] = { damageEffectiveness = 1.8, attackSpeedMultiplier = -20, baseMultiplier = 1.8, levelRequirement = 28, cost = { Mana = 10, }, }, @@ -8431,11 +7828,6 @@ skills["Vengeance"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, - statMap = { - ["gain_rage_on_hit_%_chance"] = { - flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff" }), - } - }, baseFlags = { attack = true, melee = true, @@ -8443,16 +7835,7 @@ skills["Vengeance"] = { }, qualityStats = { Default = { - { "melee_counterattack_trigger_on_hit_%", 0.5 }, - }, - Alternate1 = { - { "base_cooldown_speed_+%", 1 }, - }, - Alternate2 = { - { "damage_+%", 1 }, - }, - Alternate3 = { - { "gain_rage_on_hit_%_chance", 2 }, + { "melee_counterattack_trigger_on_hit_%", 1 }, }, }, constantStats = { @@ -8534,16 +7917,7 @@ skills["VigilantStrike"] = { }, qualityStats = { Default = { - { "damage_+%", 1 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate3 = { - { "gain_fortify_on_melee_hit_ms", 100 }, + { "active_skill_attack_damage_+%_final_per_endurance_charge", 0.2 }, }, }, constantStats = { @@ -8607,13 +7981,6 @@ skills["Vitality"] = { mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), div = 60, }, - ["damage_+%_when_on_full_life"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", var = "FullLife" }) - }, - ["life_leech_from_physical_attack_damage_permyriad"] = { - mod("PhysicalDamageLifeLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 100, - }, }, baseFlags = { spell = true, @@ -8627,12 +7994,6 @@ skills["Vitality"] = { Default = { { "base_skill_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "life_leech_from_physical_attack_damage_permyriad", 2 }, - }, - Alternate2 = { - { "damage_+%_when_on_full_life", 0.2 }, - }, }, stats = { "base_life_regeneration_rate_per_minute", @@ -8727,10 +8088,7 @@ skills["VolcanicFissure"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "number_of_additional_projectiles", 0.05 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { @@ -8738,52 +8096,53 @@ skills["VolcanicFissure"] = { { "skill_physical_damage_%_to_convert_to_fire", 60 }, }, stats = { - "number_of_additional_projectiles", + "base_number_of_projectiles", "is_area_damage", "show_number_of_projectiles", "projectiles_not_offset", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 4, damageEffectiveness = 1.3, attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [2] = { 4, damageEffectiveness = 1.329, attackSpeedMultiplier = -20, baseMultiplier = 1.329, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [3] = { 4, damageEffectiveness = 1.358, attackSpeedMultiplier = -20, baseMultiplier = 1.358, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [4] = { 4, damageEffectiveness = 1.387, attackSpeedMultiplier = -20, baseMultiplier = 1.387, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [5] = { 4, damageEffectiveness = 1.416, attackSpeedMultiplier = -20, baseMultiplier = 1.416, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [6] = { 4, damageEffectiveness = 1.445, attackSpeedMultiplier = -20, baseMultiplier = 1.445, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [7] = { 4, damageEffectiveness = 1.474, attackSpeedMultiplier = -20, baseMultiplier = 1.474, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [8] = { 4, damageEffectiveness = 1.503, attackSpeedMultiplier = -20, baseMultiplier = 1.503, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [9] = { 4, damageEffectiveness = 1.532, attackSpeedMultiplier = -20, baseMultiplier = 1.532, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [10] = { 4, damageEffectiveness = 1.561, attackSpeedMultiplier = -20, baseMultiplier = 1.561, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [11] = { 4, damageEffectiveness = 1.589, attackSpeedMultiplier = -20, baseMultiplier = 1.589, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [12] = { 4, damageEffectiveness = 1.618, attackSpeedMultiplier = -20, baseMultiplier = 1.618, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [13] = { 4, damageEffectiveness = 1.647, attackSpeedMultiplier = -20, baseMultiplier = 1.647, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [14] = { 4, damageEffectiveness = 1.676, attackSpeedMultiplier = -20, baseMultiplier = 1.676, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [15] = { 4, damageEffectiveness = 1.705, attackSpeedMultiplier = -20, baseMultiplier = 1.705, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [16] = { 4, damageEffectiveness = 1.734, attackSpeedMultiplier = -20, baseMultiplier = 1.734, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [17] = { 4, damageEffectiveness = 1.763, attackSpeedMultiplier = -20, baseMultiplier = 1.763, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [18] = { 4, damageEffectiveness = 1.792, attackSpeedMultiplier = -20, baseMultiplier = 1.792, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [19] = { 4, damageEffectiveness = 1.821, attackSpeedMultiplier = -20, baseMultiplier = 1.821, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [20] = { 4, damageEffectiveness = 1.85, attackSpeedMultiplier = -20, baseMultiplier = 1.85, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [21] = { 4, damageEffectiveness = 1.879, attackSpeedMultiplier = -20, baseMultiplier = 1.879, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [22] = { 4, damageEffectiveness = 1.908, attackSpeedMultiplier = -20, baseMultiplier = 1.908, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [23] = { 4, damageEffectiveness = 1.937, attackSpeedMultiplier = -20, baseMultiplier = 1.937, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [24] = { 4, damageEffectiveness = 1.966, attackSpeedMultiplier = -20, baseMultiplier = 1.966, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [25] = { 4, damageEffectiveness = 1.995, attackSpeedMultiplier = -20, baseMultiplier = 1.995, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [26] = { 4, damageEffectiveness = 2.024, attackSpeedMultiplier = -20, baseMultiplier = 2.024, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [27] = { 4, damageEffectiveness = 2.053, attackSpeedMultiplier = -20, baseMultiplier = 2.053, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [28] = { 4, damageEffectiveness = 2.082, attackSpeedMultiplier = -20, baseMultiplier = 2.082, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [29] = { 4, damageEffectiveness = 2.111, attackSpeedMultiplier = -20, baseMultiplier = 2.111, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [30] = { 4, damageEffectiveness = 2.139, attackSpeedMultiplier = -20, baseMultiplier = 2.139, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [31] = { 4, damageEffectiveness = 2.154, attackSpeedMultiplier = -20, baseMultiplier = 2.154, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [32] = { 4, damageEffectiveness = 2.168, attackSpeedMultiplier = -20, baseMultiplier = 2.168, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [33] = { 4, damageEffectiveness = 2.183, attackSpeedMultiplier = -20, baseMultiplier = 2.183, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [34] = { 4, damageEffectiveness = 2.197, attackSpeedMultiplier = -20, baseMultiplier = 2.197, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [35] = { 4, damageEffectiveness = 2.212, attackSpeedMultiplier = -20, baseMultiplier = 2.212, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [36] = { 4, damageEffectiveness = 2.226, attackSpeedMultiplier = -20, baseMultiplier = 2.226, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [37] = { 4, damageEffectiveness = 2.241, attackSpeedMultiplier = -20, baseMultiplier = 2.241, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [38] = { 4, damageEffectiveness = 2.255, attackSpeedMultiplier = -20, baseMultiplier = 2.255, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [39] = { 4, damageEffectiveness = 2.27, attackSpeedMultiplier = -20, baseMultiplier = 2.27, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [40] = { 4, damageEffectiveness = 2.284, attackSpeedMultiplier = -20, baseMultiplier = 2.284, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [1] = { 5, damageEffectiveness = 1.3, attackSpeedMultiplier = -20, baseMultiplier = 1.3, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [2] = { 5, damageEffectiveness = 1.329, attackSpeedMultiplier = -20, baseMultiplier = 1.329, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [3] = { 5, damageEffectiveness = 1.358, attackSpeedMultiplier = -20, baseMultiplier = 1.358, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [4] = { 5, damageEffectiveness = 1.387, attackSpeedMultiplier = -20, baseMultiplier = 1.387, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [5] = { 5, damageEffectiveness = 1.416, attackSpeedMultiplier = -20, baseMultiplier = 1.416, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [6] = { 5, damageEffectiveness = 1.445, attackSpeedMultiplier = -20, baseMultiplier = 1.445, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [7] = { 5, damageEffectiveness = 1.474, attackSpeedMultiplier = -20, baseMultiplier = 1.474, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 5, damageEffectiveness = 1.503, attackSpeedMultiplier = -20, baseMultiplier = 1.503, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 5, damageEffectiveness = 1.532, attackSpeedMultiplier = -20, baseMultiplier = 1.532, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [10] = { 5, damageEffectiveness = 1.561, attackSpeedMultiplier = -20, baseMultiplier = 1.561, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [11] = { 5, damageEffectiveness = 1.589, attackSpeedMultiplier = -20, baseMultiplier = 1.589, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [12] = { 5, damageEffectiveness = 1.618, attackSpeedMultiplier = -20, baseMultiplier = 1.618, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [13] = { 5, damageEffectiveness = 1.647, attackSpeedMultiplier = -20, baseMultiplier = 1.647, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [14] = { 5, damageEffectiveness = 1.676, attackSpeedMultiplier = -20, baseMultiplier = 1.676, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [15] = { 5, damageEffectiveness = 1.705, attackSpeedMultiplier = -20, baseMultiplier = 1.705, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [16] = { 5, damageEffectiveness = 1.734, attackSpeedMultiplier = -20, baseMultiplier = 1.734, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [17] = { 5, damageEffectiveness = 1.763, attackSpeedMultiplier = -20, baseMultiplier = 1.763, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [18] = { 5, damageEffectiveness = 1.792, attackSpeedMultiplier = -20, baseMultiplier = 1.792, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [19] = { 5, damageEffectiveness = 1.821, attackSpeedMultiplier = -20, baseMultiplier = 1.821, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [20] = { 5, damageEffectiveness = 1.85, attackSpeedMultiplier = -20, baseMultiplier = 1.85, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [21] = { 5, damageEffectiveness = 1.879, attackSpeedMultiplier = -20, baseMultiplier = 1.879, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [22] = { 5, damageEffectiveness = 1.908, attackSpeedMultiplier = -20, baseMultiplier = 1.908, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [23] = { 5, damageEffectiveness = 1.937, attackSpeedMultiplier = -20, baseMultiplier = 1.937, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [24] = { 5, damageEffectiveness = 1.966, attackSpeedMultiplier = -20, baseMultiplier = 1.966, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [25] = { 5, damageEffectiveness = 1.995, attackSpeedMultiplier = -20, baseMultiplier = 1.995, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [26] = { 5, damageEffectiveness = 2.024, attackSpeedMultiplier = -20, baseMultiplier = 2.024, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [27] = { 5, damageEffectiveness = 2.053, attackSpeedMultiplier = -20, baseMultiplier = 2.053, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [28] = { 5, damageEffectiveness = 2.082, attackSpeedMultiplier = -20, baseMultiplier = 2.082, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [29] = { 5, damageEffectiveness = 2.111, attackSpeedMultiplier = -20, baseMultiplier = 2.111, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [30] = { 5, damageEffectiveness = 2.139, attackSpeedMultiplier = -20, baseMultiplier = 2.139, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [31] = { 5, damageEffectiveness = 2.154, attackSpeedMultiplier = -20, baseMultiplier = 2.154, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [32] = { 5, damageEffectiveness = 2.168, attackSpeedMultiplier = -20, baseMultiplier = 2.168, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [33] = { 5, damageEffectiveness = 2.183, attackSpeedMultiplier = -20, baseMultiplier = 2.183, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [34] = { 5, damageEffectiveness = 2.197, attackSpeedMultiplier = -20, baseMultiplier = 2.197, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [35] = { 5, damageEffectiveness = 2.212, attackSpeedMultiplier = -20, baseMultiplier = 2.212, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [36] = { 5, damageEffectiveness = 2.226, attackSpeedMultiplier = -20, baseMultiplier = 2.226, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [37] = { 5, damageEffectiveness = 2.241, attackSpeedMultiplier = -20, baseMultiplier = 2.241, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [38] = { 5, damageEffectiveness = 2.255, attackSpeedMultiplier = -20, baseMultiplier = 2.255, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [39] = { 5, damageEffectiveness = 2.27, attackSpeedMultiplier = -20, baseMultiplier = 2.27, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [40] = { 5, damageEffectiveness = 2.284, attackSpeedMultiplier = -20, baseMultiplier = 2.284, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 8, }, }, }, } skills["VaalVolcanicFissure"] = { @@ -8826,7 +8185,7 @@ skills["VaalVolcanicFissure"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, + { "base_number_of_projectiles", 0.1 }, }, }, constantStats = { @@ -8835,53 +8194,54 @@ skills["VaalVolcanicFissure"] = { { "active_skill_area_of_effect_+%_final", 50 }, }, stats = { - "number_of_additional_projectiles", + "base_number_of_projectiles", "is_area_damage", "show_number_of_projectiles", "projectiles_not_offset", "cannot_cancel_skill_before_contact_point", + "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.5, vaalStoredUses = 1, baseMultiplier = 1.5, levelRequirement = 12, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [2] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.537, vaalStoredUses = 1, baseMultiplier = 1.537, levelRequirement = 15, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [3] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.574, vaalStoredUses = 1, baseMultiplier = 1.574, levelRequirement = 19, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [4] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.611, vaalStoredUses = 1, baseMultiplier = 1.611, levelRequirement = 23, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [5] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.647, vaalStoredUses = 1, baseMultiplier = 1.647, levelRequirement = 27, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [6] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.684, vaalStoredUses = 1, baseMultiplier = 1.684, levelRequirement = 31, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [7] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.721, vaalStoredUses = 1, baseMultiplier = 1.721, levelRequirement = 35, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [8] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.758, vaalStoredUses = 1, baseMultiplier = 1.758, levelRequirement = 38, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [9] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.795, vaalStoredUses = 1, baseMultiplier = 1.795, levelRequirement = 41, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [10] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.832, vaalStoredUses = 1, baseMultiplier = 1.832, levelRequirement = 44, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [11] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.868, vaalStoredUses = 1, baseMultiplier = 1.868, levelRequirement = 47, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [12] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.905, vaalStoredUses = 1, baseMultiplier = 1.905, levelRequirement = 50, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [13] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.942, vaalStoredUses = 1, baseMultiplier = 1.942, levelRequirement = 53, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [14] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.979, vaalStoredUses = 1, baseMultiplier = 1.979, levelRequirement = 56, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [15] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.016, vaalStoredUses = 1, baseMultiplier = 2.016, levelRequirement = 59, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [16] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.053, vaalStoredUses = 1, baseMultiplier = 2.053, levelRequirement = 62, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [17] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.089, vaalStoredUses = 1, baseMultiplier = 2.089, levelRequirement = 64, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [18] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.126, vaalStoredUses = 1, baseMultiplier = 2.126, levelRequirement = 66, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [19] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.163, vaalStoredUses = 1, baseMultiplier = 2.163, levelRequirement = 68, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [20] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.2, vaalStoredUses = 1, baseMultiplier = 2.2, levelRequirement = 70, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [21] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.237, vaalStoredUses = 1, baseMultiplier = 2.237, levelRequirement = 72, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [22] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.274, vaalStoredUses = 1, baseMultiplier = 2.274, levelRequirement = 74, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [23] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.311, vaalStoredUses = 1, baseMultiplier = 2.311, levelRequirement = 76, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [24] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.347, vaalStoredUses = 1, baseMultiplier = 2.347, levelRequirement = 78, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [25] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.384, vaalStoredUses = 1, baseMultiplier = 2.384, levelRequirement = 80, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [26] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.421, vaalStoredUses = 1, baseMultiplier = 2.421, levelRequirement = 82, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [27] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.458, vaalStoredUses = 1, baseMultiplier = 2.458, levelRequirement = 84, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [28] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.495, vaalStoredUses = 1, baseMultiplier = 2.495, levelRequirement = 86, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [29] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.532, vaalStoredUses = 1, baseMultiplier = 2.532, levelRequirement = 88, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [30] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.568, vaalStoredUses = 1, baseMultiplier = 2.568, levelRequirement = 90, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [31] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.587, vaalStoredUses = 1, baseMultiplier = 2.587, levelRequirement = 91, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [32] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.605, vaalStoredUses = 1, baseMultiplier = 2.605, levelRequirement = 92, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [33] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.624, vaalStoredUses = 1, baseMultiplier = 2.624, levelRequirement = 93, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [34] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.642, vaalStoredUses = 1, baseMultiplier = 2.642, levelRequirement = 94, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [35] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.661, vaalStoredUses = 1, baseMultiplier = 2.661, levelRequirement = 95, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [36] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.679, vaalStoredUses = 1, baseMultiplier = 2.679, levelRequirement = 96, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [37] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.697, vaalStoredUses = 1, baseMultiplier = 2.697, levelRequirement = 97, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [38] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.716, vaalStoredUses = 1, baseMultiplier = 2.716, levelRequirement = 98, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [39] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.734, vaalStoredUses = 1, baseMultiplier = 2.734, levelRequirement = 99, statInterpolation = { 1, }, cost = { Soul = 25, }, }, - [40] = { 8, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.753, vaalStoredUses = 1, baseMultiplier = 2.753, levelRequirement = 100, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [1] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.5, vaalStoredUses = 1, baseMultiplier = 1.5, levelRequirement = 12, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [2] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.537, vaalStoredUses = 1, baseMultiplier = 1.537, levelRequirement = 15, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [3] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.574, vaalStoredUses = 1, baseMultiplier = 1.574, levelRequirement = 19, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [4] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.611, vaalStoredUses = 1, baseMultiplier = 1.611, levelRequirement = 23, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [5] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.647, vaalStoredUses = 1, baseMultiplier = 1.647, levelRequirement = 27, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [6] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.684, vaalStoredUses = 1, baseMultiplier = 1.684, levelRequirement = 31, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [7] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.721, vaalStoredUses = 1, baseMultiplier = 1.721, levelRequirement = 35, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [8] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.758, vaalStoredUses = 1, baseMultiplier = 1.758, levelRequirement = 38, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [9] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.795, vaalStoredUses = 1, baseMultiplier = 1.795, levelRequirement = 41, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [10] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.832, vaalStoredUses = 1, baseMultiplier = 1.832, levelRequirement = 44, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [11] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.868, vaalStoredUses = 1, baseMultiplier = 1.868, levelRequirement = 47, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [12] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.905, vaalStoredUses = 1, baseMultiplier = 1.905, levelRequirement = 50, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [13] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.942, vaalStoredUses = 1, baseMultiplier = 1.942, levelRequirement = 53, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [14] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 1.979, vaalStoredUses = 1, baseMultiplier = 1.979, levelRequirement = 56, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [15] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.016, vaalStoredUses = 1, baseMultiplier = 2.016, levelRequirement = 59, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [16] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.053, vaalStoredUses = 1, baseMultiplier = 2.053, levelRequirement = 62, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [17] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.089, vaalStoredUses = 1, baseMultiplier = 2.089, levelRequirement = 64, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [18] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.126, vaalStoredUses = 1, baseMultiplier = 2.126, levelRequirement = 66, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [19] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.163, vaalStoredUses = 1, baseMultiplier = 2.163, levelRequirement = 68, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [20] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.2, vaalStoredUses = 1, baseMultiplier = 2.2, levelRequirement = 70, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [21] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.237, vaalStoredUses = 1, baseMultiplier = 2.237, levelRequirement = 72, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [22] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.274, vaalStoredUses = 1, baseMultiplier = 2.274, levelRequirement = 74, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [23] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.311, vaalStoredUses = 1, baseMultiplier = 2.311, levelRequirement = 76, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [24] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.347, vaalStoredUses = 1, baseMultiplier = 2.347, levelRequirement = 78, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [25] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.384, vaalStoredUses = 1, baseMultiplier = 2.384, levelRequirement = 80, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [26] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.421, vaalStoredUses = 1, baseMultiplier = 2.421, levelRequirement = 82, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [27] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.458, vaalStoredUses = 1, baseMultiplier = 2.458, levelRequirement = 84, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [28] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.495, vaalStoredUses = 1, baseMultiplier = 2.495, levelRequirement = 86, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [29] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.532, vaalStoredUses = 1, baseMultiplier = 2.532, levelRequirement = 88, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [30] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.568, vaalStoredUses = 1, baseMultiplier = 2.568, levelRequirement = 90, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [31] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.587, vaalStoredUses = 1, baseMultiplier = 2.587, levelRequirement = 91, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [32] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.605, vaalStoredUses = 1, baseMultiplier = 2.605, levelRequirement = 92, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [33] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.624, vaalStoredUses = 1, baseMultiplier = 2.624, levelRequirement = 93, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [34] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.642, vaalStoredUses = 1, baseMultiplier = 2.642, levelRequirement = 94, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [35] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.661, vaalStoredUses = 1, baseMultiplier = 2.661, levelRequirement = 95, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [36] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.679, vaalStoredUses = 1, baseMultiplier = 2.679, levelRequirement = 96, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [37] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.697, vaalStoredUses = 1, baseMultiplier = 2.697, levelRequirement = 97, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [38] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.716, vaalStoredUses = 1, baseMultiplier = 2.716, levelRequirement = 98, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [39] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.734, vaalStoredUses = 1, baseMultiplier = 2.734, levelRequirement = 99, statInterpolation = { 1, }, cost = { Soul = 25, }, }, + [40] = { 9, attackSpeedMultiplier = -20, soulPreventionDuration = 6, damageEffectiveness = 2.753, vaalStoredUses = 1, baseMultiplier = 2.753, levelRequirement = 100, statInterpolation = { 1, }, cost = { Soul = 25, }, }, }, } skills["Vulnerability"] = { @@ -8916,13 +8276,7 @@ skills["Vulnerability"] = { }, qualityStats = { Default = { - { "self_bleed_duration_+%", 0.5 }, - }, - Alternate1 = { - { "curse_effect_+%", 0.5 }, - }, - Alternate2 = { - { "chance_to_be_maimed_when_hit_%", 0.5 }, + { "self_bleed_duration_+%", 1 }, }, }, constantStats = { @@ -8995,12 +8349,6 @@ skills["WarlordsMark"] = { ["mana_leech_on_any_damage_when_hit_by_attack_permyriad"] = { mod("SelfDamageManaLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, - ["enemy_rage_regeneration_on_stun"] = { - flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff" } ), - }, }, baseFlags = { spell = true, @@ -9015,12 +8363,6 @@ skills["WarlordsMark"] = { Default = { { "grant_attacker_endurance_charge_when_hit_%_chance", 0.25 }, }, - Alternate1 = { - { "base_damage_taken_+%", 0.2 }, - }, - Alternate2 = { - { "enemy_rage_regeneration_on_stun", 0.1 }, - }, }, constantStats = { { "enemy_rage_regeneration_on_stun", 20 }, @@ -9102,13 +8444,6 @@ skills["BloodstainedBanner"] = { Default = { { "aura_effect_+%", 0.5 }, }, - Alternate1 = { - { "accuracy_rating_+%", 0.5 }, - { "active_skill_quality_duration_+%_final", -3 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, }, constantStats = { { "banner_area_of_effect_+%_per_stage", 8 }, @@ -9164,4 +8499,4 @@ skills["BloodstainedBanner"] = { [39] = { 27, 14, storedUses = 1, manaReservationPercent = 10, cooldown = 1, levelRequirement = 99, statInterpolation = { 1, 1, }, }, [40] = { 28, 14, storedUses = 1, manaReservationPercent = 10, cooldown = 1, levelRequirement = 100, statInterpolation = { 1, 1, }, }, }, -} +} \ No newline at end of file diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index 39d817da7c..bb5fd3154b 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -225,7 +225,7 @@ skills["IceElementalSpearSummoned"] = { color = 3, baseEffectiveness = 2.2813000679016, incrementalEffectiveness = 0.034600000828505, - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -559,19 +559,18 @@ skills["ZombieSlam"] = { }, constantStats = { { "active_skill_area_of_effect_radius_+%_final", 25 }, + { "active_skill_attack_speed_+%_final", -25 }, }, stats = { - "active_skill_attack_speed_+%_final", - "active_skill_damage_+%_final", "is_area_damage", "global_always_hit", }, levels = { - [1] = { -30, -20, storedUses = 1, levelRequirement = 1, cooldown = 6, statInterpolation = { 1, 1, }, }, - [2] = { -28, -10, storedUses = 1, levelRequirement = 12, cooldown = 6, statInterpolation = { 1, 1, }, }, - [3] = { -26, 0, storedUses = 1, levelRequirement = 20, cooldown = 6, statInterpolation = { 1, 1, }, }, - [4] = { -24, 10, storedUses = 1, levelRequirement = 33, cooldown = 6, statInterpolation = { 1, 1, }, }, - [5] = { -22, 15, storedUses = 1, levelRequirement = 45, cooldown = 6, statInterpolation = { 1, 1, }, }, + [1] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, storedUses = 1, levelRequirement = 1, }, + [2] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, storedUses = 1, levelRequirement = 12, }, + [3] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, storedUses = 1, levelRequirement = 20, }, + [4] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, storedUses = 1, levelRequirement = 33, }, + [5] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, storedUses = 1, levelRequirement = 45, }, }, } skills["SummonedSpiderViperStrike"] = { @@ -611,7 +610,7 @@ skills["DancingDervishCycloneChannelled"] = { name = "Cyclone", hidden = true, color = 4, - description = "Channel this skill to move towards a targeted location while spinning, building up stages while constantly attacking enemies in an area around you. While channelling this skill, you cannot be knocked back.", + description = "Channel this skill to move towards a targeted location while spinning constantly attacking enemies in an area around you. While channelling this skill, you cannot be knocked back.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Channel] = true, [SkillType.Physical] = true, }, weaponTypes = { ["None"] = true, @@ -691,7 +690,7 @@ skills["HeraldOfAgonyMinionMortar"] = { constantStats = { { "projectile_spread_radius", 20 }, { "projectile_minimum_range", 10 }, - { "number_of_additional_projectiles", 5 }, + { "base_number_of_projectiles", 6 }, { "active_skill_attack_speed_+%_final", -35 }, { "main_hand_base_maximum_attack_distance", 50 }, { "active_skill_area_of_effect_radius_+%_final", 20 }, @@ -699,7 +698,7 @@ skills["HeraldOfAgonyMinionMortar"] = { stats = { "is_area_damage", "base_is_projectile", - "distribute_additional_projectiles_over_contact_points", + "distribute_projectiles_over_contact_points", "visual_hit_effect_chaos_is_green", }, levels = { @@ -981,7 +980,7 @@ skills["AbsolutionMinion"] = { color = 1, baseEffectiveness = 1.9819999933243, incrementalEffectiveness = 0.045299999415874, - description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed to summon a Sentinel of Absolution for a longer secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", + description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", castTime = 0.75, @@ -1009,7 +1008,7 @@ skills["AbsolutionMinionEmpowered"] = { color = 1, baseEffectiveness = 1.4865000247955, incrementalEffectiveness = 0.045299999415874, - description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed to summon a Sentinel of Absolution for a longer secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", + description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", castTime = 0.75, @@ -1038,7 +1037,7 @@ skills["AbsolutionMinionVaal"] = { color = 1, baseEffectiveness = 0.92720001935959, incrementalEffectiveness = 0.045299999415874, - description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed to summon a Sentinel of Absolution for a longer secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", + description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", castTime = 1.5, @@ -1065,7 +1064,7 @@ skills["AbsolutionMinionVaalCascade"] = { color = 1, baseEffectiveness = 1.4026999473572, incrementalEffectiveness = 0.045299999415874, - description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed to summon a Sentinel of Absolution for a longer secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", + description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", castTime = 1.5, @@ -1298,7 +1297,7 @@ skills["BoneGolemLeapSlam"] = { name = "Leap Slam", hidden = true, color = 4, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -1323,6 +1322,7 @@ skills["BoneGolemLeapSlam"] = { }, constantStats = { { "active_skill_area_of_effect_radius_+%_final", 30 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "is_area_damage", @@ -1599,7 +1599,7 @@ skills["ReaperConsumeMinionForBuff"] = { name = "Consume", hidden = true, color = 4, - skillTypes = { }, + skillTypes = { [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1642,4 +1642,46 @@ skills["MPWExpeditionSummonedArbalestProjectile"] = { levels = { [1] = { levelRequirement = 1, }, }, +} +skills["BlinkMirrorArrowMelee"] = { + name = "Projectile Attack", + hidden = true, + color = 4, + description = "Strike your foes down with a powerful blow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.ProjectilesFromUser] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + projectile = true, + }, + stats = { + "skill_can_fire_arrows", + "skill_can_fire_wand_projectiles", + }, + levels = { + [1] = { damageEffectiveness = 1.75, baseMultiplier = 1.75, levelRequirement = 0, }, + }, +} +skills["SumonRagingSpiritMelee"] = { + name = "Default Attack", + hidden = true, + color = 4, + description = "Strike your foes down with a powerful blow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.ProjectilesFromUser] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + melee = true, + }, + stats = { + "active_skill_damage_+%_final", + }, + levels = { + [1] = { 0, levelRequirement = 1, statInterpolation = { 2, }, }, + [2] = { 0, levelRequirement = 4, statInterpolation = { 2, }, }, + [3] = { 1, levelRequirement = 5, statInterpolation = { 2, }, }, + [4] = { 45, levelRequirement = 84, statInterpolation = { 2, }, }, + }, } \ No newline at end of file diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index dbacfe31e9..e9b8c08a33 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -36,6 +36,31 @@ skills["RepeatingShockwave"] = { [7] = { critChance = 5, PvPDamageMultiplier = -80, levelRequirement = 1, }, }, } +skills["MinionSacrifice"] = { + name = "Affliction", + hidden = true, + color = 3, + description = "Permanently Afflicts any of your damageable minions in a targeted area, causing them to take physical damage over time, at an accelerating rate. Each such minion causes you to regenerate life at a rate based on the current damage of it's Affliction debuff. Afflicted Minions explode if their life is lowered to a fifth of maximum.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Minion] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.5, + fromTree = true, + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 30 }, + { "minion_sacrifice_%_damage_to_regen", 20 }, + { "minion_sacrifice_%_minion_life_to_degen", 8 }, + { "minion_sacrifice_%_minion_life_explosion", 50 }, + }, + stats = { + }, + levels = { + [20] = { levelRequirement = 70, cost = { Mana = 33, }, }, + }, +} skills["AnimateGuardianWeapon"] = { name = "Animate Guardian's Weapon", hidden = true, @@ -130,6 +155,45 @@ skills["SupportTriggerSpellOnBowAttack"] = { [1] = { storedUses = 1, levelRequirement = 1, cooldown = 0.3, }, }, } +skills["Barkskin"] = { + name = "Barkskin", + hidden = true, + color = 2, + description = "Adopt the power of the Viridian Wildwood, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You have higher armour the more bark builds up, but higher chance to evade when less covered in bark.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0, + fromTree = true, + statMap = { + ["armour_+%_per_barkskin_stack"] = { + mod("Armour", "INC", nil, 0, 0, { type = "Multiplier", var = "BarkskinStacks", limitVar = "BarkskinMaxStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["physical_attack_damage_taken_+_per_barkskin_stack"] = { + mod("PhysicalDamageTakenFromAttacks", "BASE", nil, 0, 0, { type = "Multiplier", var = "BarkskinStacks", limitVar = "BarkskinMaxStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"] = { + mod("EvadeChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "MissingBarkskinStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["max_barkskin_stacks"] = { + mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + }, + baseFlags = { + spell = true, + }, + constantStats = { + { "max_barkskin_stacks", 10 }, + { "armour_+%_per_barkskin_stack", 15 }, + { "physical_attack_damage_taken_+_per_barkskin_stack", -15 }, + { "chance_to_evade_attacks_+%_final_per_missing_barkskin_stack", 2 }, + }, + stats = { + }, + levels = { + [20] = { storedUses = 1, manaReservationPercent = 25, cooldown = 1, levelRequirement = 70, }, + }, +} skills["BirdAspect"] = { name = "Aspect of the Avian", hidden = true, @@ -892,9 +956,6 @@ skills["GemDetonateMines"] = { Default = { { "mine_detonation_speed_+%", 1 }, }, - Alternate1 = { - { "detonate_mines_recover_permyriad_of_life_per_mine_detonated", 1 }, - }, }, constantStats = { { "display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine", 10 }, @@ -1031,9 +1092,6 @@ skills["SupportElementalPenetration"] = { Default = { { "elemental_damage_+%", 0.5 }, }, - Alternate1 = { - { "non_damaging_ailment_effect_+%", 0.5 }, - }, }, stats = { "reduce_enemy_elemental_resistance_%", @@ -1554,8 +1612,9 @@ skills["IcestormUniqueStaff12"] = { duration = true, }, baseMods = { - skill("radius", 22), - skill("radiusSecondary", 16), + skill("radiusSecondary", 22), + skill("radiusLabel", "Ice projectile:"), + skill("radiusSecondaryLabel", "Target area:"), }, constantStats = { { "spell_minimum_base_cold_damage_+_per_10_intelligence", 5 }, @@ -1566,6 +1625,7 @@ skills["IcestormUniqueStaff12"] = { { "firestorm_drop_ground_ice_duration_ms", 500 }, { "skill_effect_duration_per_100_int", 100 }, { "firestorm_max_number_of_storms", 5 }, + { "active_skill_base_area_of_effect_radius", 16 }, }, stats = { "base_skill_show_average_damage_instead_of_dps", @@ -1904,6 +1964,35 @@ skills["TriggeredMoltenStrike"] = { [16] = { baseMultiplier = 1.15, cooldown = 0.15, damageEffectiveness = 1.15, storedUses = 1, levelRequirement = 1, }, }, } +skills["PenanceMark"] = { + name = "Penance Mark", + hidden = true, + color = 3, + description = "Curses a single enemy, causing them to spawn multiple phantasms when hit. The phantasms will be allies of the marked enemy with the same monster level. They cast a projectile spell which deals physical damage, and are immune to curses and knockback. You can only have one Mark at a time.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Mark] = true, [SkillType.Duration] = true, }, + statDescriptionScope = "brand_skill_stat_descriptions", + castTime = 0.5, + fromTree = true, + baseFlags = { + spell = true, + curse = true, + duration = true, + mark = true, + }, + baseMods = { + skill("debuff", true), + }, + constantStats = { + { "base_skill_effect_duration", 3000 }, + { "penance_mark_summon_phantasms_when_hit", 3 }, + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [20] = { levelRequirement = 70, cost = { Mana = 33, }, }, + }, +} skills["PhysicalAegis"] = { name = "Physical Aegis", hidden = true, @@ -1970,9 +2059,6 @@ skills["Portal"] = { Default = { { "base_cast_speed_+%", 3 }, }, - Alternate1 = { - { "portal_alternate_destination_chance_permyriad", 1 }, - }, }, stats = { "base_deal_no_damage", @@ -2034,6 +2120,69 @@ skills["PrimalAegis"] = { [20] = { levelRequirement = 1, }, }, } +skills["Quieten"] = { + name = "Pacify", + hidden = true, + color = 3, + description = "Curses all targets in an area, having no effect at first, but causing them to deal no damage once 60% of the curse's duration has expired.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Hex] = true, }, + statDescriptionScope = "curse_skill_stat_descriptions", + castTime = 0.5, + fromTree = true, + baseFlags = { + spell = true, + curse = true, + area = true, + duration = true, + hex = true, + }, + baseMods = { + skill("debuff", true), + }, + constantStats = { + { "base_skill_effect_duration", 10000 }, + }, + stats = { + "curse_pacifies_after_60%", + "base_deal_no_damage", + "display_skill_fixed_duration_buff", + }, + levels = { + [20] = { levelRequirement = 70, cost = { Mana = 33, }, }, + }, +} +skills["Ravenous"] = { + name = "Ravenous", + hidden = true, + color = 3, + description = "Consumes a targeted corpse, granting you a buff that gives you bonuses against enemies of the same monster category as the corpse.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + fromTree = true, + statMap = { + ["ravenous_buff_magnitude"] = { + { + mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "RavenousCorpseConsumed" }), + mult = -1, + }, + { + mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "RavenousCorpseConsumed" }), + }, + }, + }, + baseFlags = { + spell = true, + }, + constantStats = { + { "ravenous_buff_magnitude", 15 }, + }, + stats = { + }, + levels = { + [20] = { storedUses = 1, levelRequirement = 70, cooldown = 5, cost = { Mana = 33, }, }, + }, +} skills["TriggeredSummonSpider"] = { name = "Raise Spiders", hidden = true, @@ -2331,12 +2480,17 @@ skills["VolatileDeadChaos"] = { baseFlags = { spell = true, }, + baseMods = { + skill("radiusLabel", "Orb explosion:"), + skill("radiusSecondaryLabel", "Corpse explosion:"), + }, constantStats = { { "volatile_dead_base_number_of_corpses_to_consume", 1 }, { "corpse_explosion_monster_life_%_chaos", 9 }, - { "volatile_dead_core_explosion_radius_+", 13 }, - { "volatile_dead_max_cores_allowed", 10 }, + { "volatile_dead_max_cores_allowed", 13 }, { "chance_to_cast_on_kill_%", 100 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -3463,6 +3617,7 @@ skills["VoidShot"] = { "skill_can_fire_arrows", "base_skill_show_average_damage_instead_of_dps", "attack_unusable_if_triggerable", + "quality_display_active_skill_area_damage_is_gem", }, levels = { [20] = { damageEffectiveness = 0.65, PvPDamageMultiplier = -80, baseMultiplier = 0.65, levelRequirement = 70, }, diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index 38d7331ac9..3e553a6270 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -149,7 +149,7 @@ skills["BanditChampionBlastRainSpectre"] = { }, constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 50 }, - { "base_number_of_additional_arrows", 4 }, + { "number_of_additional_arrows", 4 }, { "blast_rain_arrow_delay_ms", 80 }, { "active_skill_area_of_effect_radius_+%_final", -21 }, }, @@ -230,7 +230,7 @@ skills["BoneStalkerEarthquake"] = { name = "Earthquake", hidden = true, color = 1, - description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, [SkillType.Slam] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["None"] = true, @@ -438,7 +438,7 @@ skills["DelveProtovaalWhirlingCharge"] = { name = "Whirling Charge", hidden = true, color = 4, - skillTypes = { }, + skillTypes = { [SkillType.Attack] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -669,6 +669,7 @@ skills["FireballIncursionChaos"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -40 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -696,6 +697,7 @@ skills["FireballIncusionFire"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -40 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -723,6 +725,7 @@ skills["FireballIncusionLightning"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -40 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -847,7 +850,7 @@ skills["GoatmanEarthquake"] = { name = "Earthquake", hidden = true, color = 1, - description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, [SkillType.Slam] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["None"] = true, @@ -1033,7 +1036,7 @@ skills["GuardianArc"] = { color = 3, baseEffectiveness = 0.85000002384186, incrementalEffectiveness = 0.029999999329448, - description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", + description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.8, @@ -1109,6 +1112,7 @@ skills["HolyFireElementalFireball"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -50 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -1206,7 +1210,7 @@ skills["IncursionLeapSlamChampion"] = { name = "Leap Slam", hidden = true, color = 4, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -1226,6 +1230,9 @@ skills["IncursionLeapSlamChampion"] = { melee = true, area = true, }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 15 }, + }, stats = { "is_area_damage", "cast_time_overrides_attack_duration", @@ -1266,7 +1273,7 @@ skills["InsectSpawnerSpit"] = { color = 4, baseEffectiveness = 0.93999999761581, incrementalEffectiveness = 0.029999999329448, - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1293,7 +1300,7 @@ skills["KaomFireBeamTotemSpectre"] = { color = 3, baseEffectiveness = 3.039999961853, incrementalEffectiveness = 0.047400001436472, - description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam can turn.", + description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam raises the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam turns.", skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Fire] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channel] = true, [SkillType.DegenOnlySpellDamage] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, @@ -1390,6 +1397,7 @@ skills["KaomWarriorMoltenStrike"] = { { "active_skill_area_of_effect_radius_+%_final", 50 }, }, stats = { + "base_is_projectile", }, levels = { [1] = { storedUses = 1, levelRequirement = 2, cooldown = 3, }, @@ -1400,7 +1408,7 @@ skills["KitavaDemonLeapSlam"] = { hidden = true, color = 4, baseEffectiveness = 0, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -1423,6 +1431,7 @@ skills["KitavaDemonLeapSlam"] = { constantStats = { { "physical_damage_%_to_add_as_fire", 50 }, { "active_skill_area_of_effect_radius_+%_final", 50 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "is_area_damage", @@ -1576,7 +1585,7 @@ skills["MinerThrowFireSpectre"] = { color = 4, baseEffectiveness = 1.2777999639511, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1614,7 +1623,7 @@ skills["MonsterArc"] = { color = 3, baseEffectiveness = 0.89999997615814, incrementalEffectiveness = 0.046000000089407, - description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", + description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.8, @@ -1910,6 +1919,7 @@ skills["MonsterFireballContactPos"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -50 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2100,7 +2110,7 @@ skills["MonsterLeapSlam"] = { hidden = true, color = 4, baseEffectiveness = 0, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -2120,6 +2130,9 @@ skills["MonsterLeapSlam"] = { melee = true, area = true, }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 15 }, + }, stats = { "is_area_damage", "cast_time_overrides_attack_duration", @@ -2133,7 +2146,7 @@ skills["MonsterLeapSlamFoothills"] = { hidden = true, color = 4, baseEffectiveness = 0, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -2155,6 +2168,7 @@ skills["MonsterLeapSlamFoothills"] = { }, constantStats = { { "leapslam_overshoot_distance", 10 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "is_area_damage", @@ -2182,6 +2196,7 @@ skills["MonsterLesserMultiFireballSpectre"] = { constantStats = { { "spell_maximum_action_distance_+%", -50 }, { "number_of_additional_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2227,7 +2242,7 @@ skills["MonsterLightningArrow"] = { color = 2, baseEffectiveness = 1.0199999809265, incrementalEffectiveness = 0.019999999552965, - description = "Fires a charged arrow at the target, causing them to be struck by a bolt of lightning which damages a number of surrounding enemies.", + description = "Fires a charged arrow which damages enemies by causing them to be struck by a bolt of lightning, which also damages a number of surrounding enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, @@ -2246,6 +2261,7 @@ skills["MonsterLightningArrow"] = { { "active_skill_area_of_effect_radius_+%_final", -12 }, }, stats = { + "base_is_projectile", }, levels = { [1] = { levelRequirement = 9, }, @@ -2257,7 +2273,7 @@ skills["SkeletonArcherLightningArrow"] = { color = 2, baseEffectiveness = 1.0199999809265, incrementalEffectiveness = 0.019999999552965, - description = "Fires a charged arrow at the target, causing them to be struck by a bolt of lightning which damages a number of surrounding enemies.", + description = "Fires a charged arrow which damages enemies by causing them to be struck by a bolt of lightning, which also damages a number of surrounding enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, @@ -2276,6 +2292,7 @@ skills["SkeletonArcherLightningArrow"] = { { "active_skill_area_of_effect_radius_+%_final", -12 }, }, stats = { + "base_is_projectile", }, levels = { [1] = { baseMultiplier = 1.25, levelRequirement = 9, }, @@ -2321,6 +2338,7 @@ skills["MonsterMultiFireballSpectre"] = { constantStats = { { "spell_maximum_action_distance_+%", -50 }, { "number_of_additional_projectiles", 2 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2465,6 +2483,7 @@ skills["MonsterRighteousFireWhileSpectred"] = { area = true, }, constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, { "active_skill_area_of_effect_radius_+%_final", 27 }, }, stats = { @@ -2557,6 +2576,7 @@ skills["MonsterSplitFireballSpectre"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -50 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2929,9 +2949,9 @@ skills["NecromancerRaiseZombie"] = { hidden = true, color = 4, baseEffectiveness = 0, - description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee attack and an area of effect slam which cannot be evaded.", + description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee strike.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Area] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -3003,6 +3023,7 @@ skills["PyroChaosFireball"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -50 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -3032,6 +3053,7 @@ skills["PyroFireball"] = { }, constantStats = { { "spell_maximum_action_distance_+%", -50 }, + { "active_skill_base_area_of_effect_radius", 9 }, }, stats = { "spell_minimum_base_fire_damage", @@ -3308,6 +3330,7 @@ skills["SkeletonCannonBoneNova"] = { }, stats = { "projectiles_nova", + "base_is_projectile", }, levels = { [1] = { storedUses = 1, levelRequirement = 1, cooldown = 5, }, @@ -3775,6 +3798,7 @@ skills["WickerManMoltenStrike"] = { { "base_projectile_speed_+%", -25 }, }, stats = { + "base_is_projectile", }, levels = { [1] = { levelRequirement = 10, }, @@ -3835,6 +3859,7 @@ skills["VaalIncursionFirestorm"] = { { "base_skill_effect_duration", 600 }, { "fire_storm_fireball_delay_ms", 200 }, { "firestorm_base_area_of_effect_+%", 100 }, + { "active_skill_base_area_of_effect_radius", 10 }, }, stats = { "spell_minimum_base_fire_damage", @@ -3968,7 +3993,7 @@ skills["AtlasEyrieArcherCrystalImpact"] = { color = 4, baseEffectiveness = 2.5, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4020,7 +4045,7 @@ skills["AtlasExileCrusaderMageguardBombExplodeSpectre"] = { color = 4, baseEffectiveness = 2, incrementalEffectiveness = 0.045000001788139, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4043,7 +4068,7 @@ skills["AtlasCrusaderMageguardBeam"] = { color = 4, baseEffectiveness = 1.5, incrementalEffectiveness = 0.045000001788139, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.3, baseFlags = { @@ -4131,7 +4156,7 @@ skills["BreachArc"] = { color = 3, baseEffectiveness = 0.82499998807907, incrementalEffectiveness = 0.043999999761581, - description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", + description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.5, @@ -4277,7 +4302,7 @@ skills["SynthesisSoulstealerLaser"] = { color = 4, baseEffectiveness = 0.60000002384186, incrementalEffectiveness = 0.050000000745058, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4302,7 +4327,7 @@ skills["SynthesisSoulstealerBolt"] = { color = 4, baseEffectiveness = 0.60000002384186, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4361,7 +4386,7 @@ skills["AtlasCrusaderJudgeBallLightning"] = { color = 3, baseEffectiveness = 0.41249999403954, incrementalEffectiveness = 0.045000001788139, - description = "Fires a slow-moving projectile that periodically damages enemies in an area around it with bolts of lightning.", + description = "Fires a slow-moving projectile that damages each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.6, @@ -4375,6 +4400,7 @@ skills["AtlasCrusaderJudgeBallLightning"] = { constantStats = { { "base_projectile_speed_+%", -25 }, { "active_skill_area_of_effect_radius_+%_final", -11 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -4482,7 +4508,7 @@ skills["HarvestNessaCrabScreech"] = { name = "Screech", hidden = true, color = 4, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -4523,7 +4549,7 @@ skills["HarvestRhexLeapSlam"] = { name = "Leap Slam", hidden = true, color = 4, - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", + description = "Jump through the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an Axe, Mace, Sceptre, Sword or Staff. Cannot be supported by Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -4548,6 +4574,7 @@ skills["HarvestRhexLeapSlam"] = { }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "active_skill_damage_+%_final", @@ -4597,7 +4624,7 @@ skills["GSHarvestRhexScreech"] = { color = 4, baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, levels = { @@ -4646,7 +4673,7 @@ skills["LegionTemplarJudgeBallLightning"] = { color = 3, baseEffectiveness = 0.51560002565384, incrementalEffectiveness = 0.045000001788139, - description = "Fires a slow-moving projectile that periodically damages enemies in an area around it with bolts of lightning.", + description = "Fires a slow-moving projectile that damages each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.6, @@ -4661,6 +4688,7 @@ skills["LegionTemplarJudgeBallLightning"] = { { "base_projectile_speed_+%", -25 }, { "skill_physical_damage_%_to_convert_to_lightning", 80 }, { "active_skill_area_of_effect_radius_+%_final", -11 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_physical_damage", @@ -4678,7 +4706,7 @@ skills["LegionTemplarJudgeStormCall"] = { color = 3, baseEffectiveness = 3, incrementalEffectiveness = 0.031199999153614, - description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it. When this happens, it will also set off the lightning at any other markers you've cast.", + description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it and causing lightning strikes at any other markers you've cast.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, @@ -4866,7 +4894,7 @@ skills["EmptyActionAttackSecretPoliceDaggers"] = { name = "Dagger Trigger Attack", hidden = true, color = 4, - skillTypes = { }, + skillTypes = { [SkillType.Attack] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.87, baseFlags = { @@ -4950,7 +4978,7 @@ skills["AtlasEyrieKiwethMortarShards"] = { color = 4, baseEffectiveness = 1.5, incrementalEffectiveness = 0.045000001788139, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4997,7 +5025,7 @@ skills["GAHeistThugRangedShotgun"] = { name = "Ranged Shotgun", hidden = true, color = 4, - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Channel] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Channel] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.33, baseFlags = { @@ -5027,7 +5055,7 @@ skills["GSHeistRobotPyreBeamBlast"] = { color = 4, baseEffectiveness = 3.2000000476837, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -5054,7 +5082,7 @@ skills["GSHeistRobotPyreNukeBeam"] = { color = 4, baseEffectiveness = 4, incrementalEffectiveness = 0.050000000745058, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4.5, baseFlags = { @@ -5078,7 +5106,7 @@ skills["GSHeistRobotPyreNukeBeamChannelled"] = { color = 4, baseEffectiveness = 4, incrementalEffectiveness = 0.045000001788139, - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Channel] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Channel] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.54, baseFlags = { @@ -5102,7 +5130,7 @@ skills["GSHeistRobotPyreBeamSweepBeam"] = { color = 4, baseEffectiveness = 2.5, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -5157,7 +5185,7 @@ skills["AtlasEyrieBirdBreath"] = { hidden = true, color = 4, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -5182,7 +5210,7 @@ skills["SecretDesecrateMonsterEarthquakeTriggered"] = { name = "Earthquake", hidden = true, color = 4, - description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", + description = "Smashes the ground, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a duration. Cracks created before the first one has erupted will not generate their own aftershocks. Requires an Axe, Mace, Sceptre, Staff or Unarmed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Multistrikeable] = true, [SkillType.Duration] = true, [SkillType.Slam] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["None"] = true, @@ -5473,11 +5501,11 @@ skills["GSHellscapeDemonElite1Screech"] = { color = 4, baseEffectiveness = 0.75, incrementalEffectiveness = 0.029999999329448, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { - attack = true, + spell = true, hit = true, area = true, triggerable = true, @@ -5525,7 +5553,7 @@ skills["GSHellscapePaleEliteBoltImpact"] = { color = 4, baseEffectiveness = 4, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -5552,7 +5580,7 @@ skills["GSHellscapePaleEliteOmegaBeam"] = { color = 4, baseEffectiveness = 6.5, incrementalEffectiveness = 0.043099999427795, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.333, baseFlags = { @@ -5655,7 +5683,7 @@ skills["GSHellscapeDemonEliteBeamNuke"] = { color = 4, baseEffectiveness = 5, incrementalEffectiveness = 0.033500000834465, - skillTypes = { [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2, baseFlags = { @@ -5758,7 +5786,7 @@ skills["HellscapeFleshFodderArc"] = { color = 3, baseEffectiveness = 1.3500000238419, incrementalEffectiveness = 0.045000001788139, - description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", + description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 1.166, @@ -5913,7 +5941,7 @@ skills["EmptyActionSpellWarlordGrandmaster"] = { name = "Arena Master's Presence", hidden = true, color = 4, - skillTypes = { }, + skillTypes = { [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, }, @@ -6067,8 +6095,8 @@ skills["WraithEtherealKnives"] = { color = 2, baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037999998778105, - description = "Fires an arc of knives in front of the caster which deals physical damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, + description = "Fires an arc of knives in front of the caster which deal physical damage.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -6211,6 +6239,7 @@ skills["CrucibleIceStormTrap"] = { { "base_trap_duration", 10000 }, { "trap_variation", 4 }, { "trap_throwing_speed_+%", -66 }, + { "active_skill_base_area_of_effect_radius", 10 }, }, stats = { "spell_minimum_base_cold_damage", diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index e10006a96a..e9638eb968 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -21,12 +21,6 @@ skills["SupportAddedColdDamage"] = { Default = { { "cold_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_chance_to_freeze_%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_cold", 1 }, - }, }, stats = { "global_minimum_added_cold_damage", @@ -130,21 +124,10 @@ skills["SupportAdditionalAccuracy"] = { addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["attack_damage_+%_per_1000_accuracy_rating"] = { - mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", div = 1000, stat = "Accuracy"}) - } - }, qualityStats = { Default = { { "accuracy_rating_+%", 1 }, }, - Alternate1 = { - { "base_critical_strike_multiplier_+", 1 }, - }, - Alternate2 = { - { "attack_damage_+%_per_1000_accuracy_rating", 0.2 }, - }, }, stats = { "accuracy_rating", @@ -215,13 +198,6 @@ skills["SupportArrowNova"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_projectile_speed_+%", 1 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", -2 }, - { "damage_+%", 1 }, - }, }, constantStats = { { "number_of_additional_projectiles", 4 }, @@ -342,7 +318,7 @@ skills["SupportBarrage"] = { support = true, requireSkillTypes = { SkillType.Projectile, SkillType.ThresholdJewelProjectile, SkillType.OR, SkillType.ProjectileNumber, SkillType.OR, SkillType.RangedAttack, SkillType.ThresholdJewelRangedAttack, SkillType.OR, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Channel, SkillType.CreatesMinion, SkillType.Triggered, SkillType.InbuiltTrigger, }, + excludeSkillTypes = { SkillType.Channel, SkillType.CreatesMinion, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SingleMainProjectile, }, ignoreMinionTypes = true, weaponTypes = { ["Wand"] = true, @@ -366,12 +342,6 @@ skills["SupportBarrage"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "barrage_support_projectile_spread_+%", 5 }, - }, }, constantStats = { { "number_of_additional_projectiles", 3 }, @@ -437,13 +407,7 @@ skills["SupportBlind"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "blind_duration_+%", 1 }, - }, - Alternate1 = { - { "global_chance_to_blind_on_hit_%", 0.5 }, - }, - Alternate2 = { - { "critical_strike_chance_+%_vs_blinded_enemies", 2 }, + { "blind_effect_+%", 0.5 }, }, }, constantStats = { @@ -516,9 +480,6 @@ skills["SupportBlockReduction"] = { Default = { { "global_reduce_enemy_block_%", 0.25 }, }, - Alternate1 = { - { "overpowered_effect_+%", 2 }, - }, }, constantStats = { { "support_overpowered_base_duration_ms", 4000 }, @@ -581,9 +542,6 @@ skills["SupportCastOnCrit"] = { ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_cast_on_crit_quality_attack_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Attack, 0) - }, ["support_cast_on_crit_spell_damage_+%_final"] = { }, }, @@ -591,12 +549,6 @@ skills["SupportCastOnCrit"] = { Default = { { "attack_critical_strike_chance_+%", 1 }, }, - Alternate1 = { - { "support_cast_on_crit_quality_attack_damage_+%_final", 1 }, - }, - Alternate2 = { - { "attack_speed_+%", 0.5 }, - }, }, constantStats = { { "cast_linked_spells_on_attack_crit_%", 100 }, @@ -666,12 +618,6 @@ skills["SupportCastOnCritTriggered"] = { Default = { { "spell_critical_strike_chance_+%", 1 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { "support_cast_on_crit_spell_damage_+%_final", @@ -839,13 +785,6 @@ skills["SupportCastOnDeath"] = { ["cast_on_death_damage_+%_final_while_dead"] = { mod("Damage", "MORE", nil), }, - ["additional_critical_strike_chance_permyriad_while_dead"] = { - mod("CritChance", "BASE", nil), - div = 100 - }, - ["skill_effect_duration_+%_while_dead"] = { - mod("Duration", "INC", nil), - }, ["no_cost"] = { }, }, @@ -856,12 +795,6 @@ skills["SupportCastOnDeath"] = { Default = { { "area_of_effect_+%_while_dead", 3 }, }, - Alternate1 = { - { "additional_critical_strike_chance_permyriad_while_dead", 50 }, - }, - Alternate2 = { - { "skill_effect_duration_+%_while_dead", 3 }, - }, }, constantStats = { { "cast_on_death_%", 100 }, @@ -934,12 +867,6 @@ skills["SupportChain"] = { Default = { { "chaining_range_+%", 0.5 }, }, - Alternate1 = { - { "base_projectile_speed_+%", 0.5 }, - }, - Alternate2 = { - { "projectile_chance_to_not_pierce_%", 4 }, - }, }, constantStats = { { "number_of_chains", 2 }, @@ -1054,9 +981,6 @@ skills["SupportChanceToFlee"] = { Default = { { "global_hit_causes_monster_flee_%", 1 }, }, - Alternate1 = { - { "base_cast_speed_+%", -0.5 }, - }, }, stats = { "global_hit_causes_monster_flee_%", @@ -1122,13 +1046,6 @@ skills["SupportGemFrenzyPowerOnTrapTrigger"] = { Default = { { "trap_damage_+%", 0.5 }, }, - Alternate1 = { - { "%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy", 0.5 }, - { "%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy", 0.5 }, - }, - Alternate2 = { - { "trap_trigger_radius_+%_per_power_charge", 0.5 }, - }, }, constantStats = { { "trap_throwing_speed_+%_per_frenzy_charge", 10 }, @@ -1208,9 +1125,6 @@ skills["SupportSlashingWeapon"] = { ["close_combat_damage_to_close_range_+%"] = { mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Melee), 0, { type = "Condition", var = "AtCloseRange" }), }, - ["combat_rush_effect_+%"] = { - mod("CombatRushEffect", "INC", nil), - }, ["supported_skill_can_only_use_axe_and_sword"] = { }, }, @@ -1219,13 +1133,7 @@ skills["SupportSlashingWeapon"] = { }, qualityStats = { Default = { - { "melee_damage_+%", 0.5 }, - }, - Alternate1 = { - { "combat_rush_effect_+%", 2 }, - }, - Alternate2 = { - { "close_combat_damage_to_close_range_+%", 1 }, + { "close_combat_damage_to_close_range_+%", 0.5 }, }, }, constantStats = { @@ -1296,13 +1204,7 @@ skills["SupportClusterTrap"] = { }, qualityStats = { Default = { - { "trap_damage_+%", 0.5 }, - }, - Alternate1 = { - { "trap_throwing_speed_+%", 0.5 }, - }, - Alternate2 = { - { "trap_spread_+%", -2 }, + { "trap_trigger_radius_+%", 1 }, }, }, constantStats = { @@ -1370,12 +1272,6 @@ skills["SupportColdPenetration"] = { Default = { { "cold_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_chance_to_freeze_%", 0.5 }, - }, - Alternate2 = { - { "cold_ailment_effect_+%", 1 }, - }, }, stats = { "base_reduce_enemy_cold_resistance_%", @@ -1476,12 +1372,6 @@ skills["SupportCullingStrike"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "damage_+%", 0.5 }, - }, - Alternate1 = { - { "damage_vs_enemies_on_low_life_+%", 3 }, - }, - Alternate2 = { { "recover_%_maximum_life_on_cull", 0.1 }, }, }, @@ -1542,9 +1432,6 @@ skills["SupportDeadlyAilments"] = { excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_better_ailments_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, ["support_better_ailments_ailment_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Bleed, KeywordFlag.Poison, KeywordFlag.Ignite)), }, @@ -1553,12 +1440,6 @@ skills["SupportDeadlyAilments"] = { Default = { { "damage_over_time_+%", 0.5 }, }, - Alternate1 = { - { "base_all_ailment_duration_+%", 1 }, - }, - Alternate2 = { - { "support_better_ailments_hit_damage_+%_final", 2 }, - }, }, constantStats = { { "support_better_ailments_hit_damage_+%_final", -80 }, @@ -1680,9 +1561,6 @@ skills["SupportAdditionalQuality"] = { Default = { { "local_gem_experience_gain_+%", 5 }, }, - Alternate1 = { - { "local_gem_dex_requirement_+%", -3 }, - }, }, stats = { "supported_active_skill_gem_quality_%", @@ -1761,12 +1639,6 @@ skills["SupportFasterAttack"] = { Default = { { "attack_speed_+%", 0.5 }, }, - Alternate1 = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate2 = { - { "faster_bleed_%", 0.5 }, - }, }, stats = { "attack_speed_+%", @@ -1828,12 +1700,6 @@ skills["SupportFasterProjectiles"] = { Default = { { "base_projectile_speed_+%", 0.5 }, }, - Alternate1 = { - { "projectile_return_%_chance", 0.5 }, - }, - Alternate2 = { - { "projectile_damage_+%", 0.5 }, - }, }, stats = { "base_projectile_speed_+%", @@ -1904,12 +1770,6 @@ skills["SupportFocusedBallista"] = { Default = { { "totem_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "totem_life_+%", 0.5 }, - }, }, stats = { "support_focused_ballista_totem_attack_speed_+%_final", @@ -1978,12 +1838,6 @@ skills["SupportFork"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "chance_to_fork_extra_projectile_%", 1 }, - }, - Alternate2 = { - { "projectile_base_number_of_targets_to_pierce", 0.05 }, - }, }, constantStats = { { "terrain_arrow_attachment_chance_reduction_+%", 100 }, @@ -2105,14 +1959,6 @@ skills["SupportGreaterMultipleProjectiles"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_mana_cost_-%", 1 }, - { "base_life_cost_+%", -1 }, - { "base_projectile_speed_+%", 0.5 }, - }, - Alternate2 = { - { "multiple_projectiles_projectile_spread_+%", 1 }, - }, }, constantStats = { { "number_of_additional_projectiles", 4 }, @@ -2221,7 +2067,7 @@ skills["SupportGreaterVolley"] = { support = true, requireSkillTypes = { SkillType.ProjectilesFromUser, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ProjectileSpiral, SkillType.SingleMainProjectile, SkillType.ProjectilesNotFromUser, SkillType.ProjectilesNotFired, }, + excludeSkillTypes = { SkillType.ProjectileSpiral, SkillType.SingleMainProjectile, SkillType.ProjectilesNotFromUser, SkillType.ProjectilesNotFired, SkillType.NoVolley, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_greater_volley_projectile_damage_+%_final"] = { @@ -2232,12 +2078,6 @@ skills["SupportGreaterVolley"] = { Default = { { "projectile_damage_+%", 1 }, }, - Alternate1 = { - { "parallel_projectile_firing_point_x_dist_+%", 1 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 1 }, - }, }, constantStats = { { "support_parallel_projectile_number_of_points_per_side", 4 }, @@ -2306,20 +2146,11 @@ skills["SupportDamageAgainstChilled"] = { ["support_hypothermia_cold_damage_over_time_+%_final"] = { mod("ColdDamage", "MORE", nil, 0, KeywordFlag.ColdDot), }, - ["freeze_applies_cold_resistance_+"] = { - mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Condition", var = "Frozen" }), - }, }, qualityStats = { Default = { - { "chill_duration_+%", 1.5 }, - }, - Alternate1 = { { "additional_chance_to_freeze_chilled_enemies_%", 1 }, }, - Alternate2 = { - { "freeze_applies_cold_resistance_+", -0.2 }, - }, }, constantStats = { { "additional_chance_to_freeze_chilled_enemies_%", 20 }, @@ -2393,12 +2224,6 @@ skills["SupportImpale"] = { Default = { { "impale_debuff_effect_+%", 0.5 }, }, - Alternate1 = { - { "attacks_impale_on_hit_%_chance", 0.5 }, - }, - Alternate2 = { - { "chance_to_inflict_additional_impale_%", 0.25 }, - }, }, constantStats = { { "attacks_impale_on_hit_%_chance", 60 }, @@ -2462,14 +2287,8 @@ skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "damage_+%_vs_frozen_enemies", 1 }, - }, - Alternate1 = { { "damage_+%_per_frenzy_charge", 0.1 }, }, - Alternate2 = { - { "chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%", 1 }, - }, }, constantStats = { { "base_chance_to_freeze_%", 15 }, @@ -2543,14 +2362,6 @@ skills["SupportLesserMultipleProjectiles"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_mana_cost_-%", 1 }, - { "base_life_cost_+%", -1 }, - { "base_projectile_speed_+%", 0.5 }, - }, - Alternate2 = { - { "multiple_projectiles_projectile_spread_+%", 1 }, - }, }, constantStats = { { "number_of_additional_projectiles", 2 }, @@ -2627,13 +2438,6 @@ skills["SupportLocusMine"] = { Default = { { "mine_laying_speed_+%", 0.5 }, }, - Alternate1 = { - { "mine_detonation_speed_+%", 1 }, - }, - Alternate2 = { - { "base_reservation_efficiency_+%", -1.5 }, - { "number_of_additional_mines_to_place", 0.05 }, - }, }, constantStats = { { "number_of_additional_mines_to_place", 2 }, @@ -2712,12 +2516,6 @@ skills["SupportChanceToPoison"] = { Default = { { "base_poison_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_poison_duration_+%", 0.5 }, - }, - Alternate2 = { - { "hit_damage_+%", 1 }, - }, }, constantStats = { { "base_chance_to_poison_on_hit_%", 40 }, @@ -2779,21 +2577,10 @@ skills["SupportManaLeech"] = { addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["damage_+%_per_200_mana_spent_recently"] = { - mod("Damage", "INC", nil, 0, 0, {type = "Multiplier", div = 200, var = "ManaSpentRecently"}) - } - }, qualityStats = { Default = { { "damage_+%_while_mana_leeching", 0.5 }, }, - Alternate1 = { - { "damage_+%_per_200_mana_spent_recently", 0.5 }, - }, - Alternate2 = { - { "mana_gain_per_target", 0.2 }, - }, }, stats = { "attack_skill_mana_leech_from_any_damage_permyriad", @@ -2851,24 +2638,10 @@ skills["SupportMarkOnHit"] = { excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.InbuiltTrigger, }, isTrigger = true, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["mark_skills_curse_effect_+%"] = { - mod("CurseEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Mark }), - }, - ["marked_enemy_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, - }, qualityStats = { Default = { { "mark_skills_curse_effect_+%", 0.25 }, }, - Alternate1 = { - { "base_mana_cost_-%", 0.5 }, - }, - Alternate2 = { - { "marked_enemy_damage_taken_+%", 0.25 }, - }, }, stats = { "mark_skills_curse_effect_+%", @@ -2938,9 +2711,6 @@ skills["SupportGemMirageArcher"] = { ["support_mirage_archer_attack_speed_+%_final"] = { mod("MirageArcherLessAttackSpeed", "BASE", nil), }, - ["mirage_archer_number_of_additional_projectiles"] = { - mod("MirageArcherAdditionalProjectileCount", "BASE", nil) - }, ["summon_mirage_archer_on_hit"] = { mod("MirageArcherMaxCount", "BASE", 1), }, @@ -2949,13 +2719,6 @@ skills["SupportGemMirageArcher"] = { Default = { { "attack_damage_+%", 0.5 }, }, - Alternate1 = { - { "mirage_archer_number_of_additional_projectiles", 0.1 }, - { "support_mirage_archer_base_duration", -100 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 1 }, - }, }, constantStats = { { "support_mirage_archer_base_duration", 4000 }, @@ -3029,12 +2792,6 @@ skills["SupportMultiTrap"] = { Default = { { "trap_trigger_radius_+%", 1 }, }, - Alternate1 = { - { "number_of_additional_traps_allowed", 0.1 }, - }, - Alternate2 = { - { "support_additional_trap_%_chance_for_1_additional_trap", 0.2 }, - }, }, constantStats = { { "number_of_additional_traps_to_throw", 2 }, @@ -3113,12 +2870,6 @@ skills["SupportPuncturingWeapon"] = { Default = { { "critical_strike_chance_+%", 1 }, }, - Alternate1 = { - { "elusive_effect_+%", 1 }, - }, - Alternate2 = { - { "critical_strike_chance_against_enemies_on_full_life_+%", 5 }, - }, }, constantStats = { { "gain_elusive_on_crit_%_chance", 100 }, @@ -3187,20 +2938,11 @@ skills["SupportPierce"] = { ["support_pierce_projectile_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Projectile), }, - ["projectile_damage_+%_if_pierced_enemy"] = { - mod("Damage", "INC", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), - }, }, qualityStats = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "projectile_base_number_of_targets_to_pierce", 0.1 }, - }, - Alternate2 = { - { "projectile_damage_+%_if_pierced_enemy", 2 }, - }, }, stats = { "projectile_base_number_of_targets_to_pierce", @@ -3270,12 +3012,6 @@ skills["SupportPointBlank"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "knockback_chance_%_at_close_range", 2 }, - }, - Alternate2 = { - { "projectiles_pierce_all_targets_in_x_range", 1 }, - }, }, stats = { "projectile_damage_+%", @@ -3337,12 +3073,6 @@ skills["SupportCriticalStrikeAffliction"] = { Default = { { "critical_ailment_dot_multiplier_+", 0.5 }, }, - Alternate1 = { - { "critical_strike_chance_+%", 1 }, - }, - Alternate2 = { - { "base_critical_strike_multiplier_+", 0.75 }, - }, }, stats = { "critical_ailment_dot_multiplier_+", @@ -3408,13 +3138,6 @@ skills["SupportSadism"] = { Default = { { "damage_over_time_+%", 0.5 }, }, - Alternate1 = { - { "attack_and_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "base_all_ailment_duration_+%", -1.5 }, - { "dot_multiplier_+", 0.75 }, - }, }, stats = { "damaging_ailments_deal_damage_+%_faster", @@ -3476,13 +3199,6 @@ skills["SupportAdditionalCooldown"] = { Default = { { "base_cooldown_speed_+%", 0.25 }, }, - Alternate1 = { - { "support_added_cooldown_count_if_not_instant", 0.05 }, - { "base_cooldown_speed_+%", -0.5 }, - }, - Alternate2 = { - { "recover_permyriad_life_on_skill_use", 5 }, - }, }, constantStats = { { "support_added_cooldown_count_if_not_instant", 1 }, @@ -3549,20 +3265,11 @@ skills["SupportSlowerProjectiles"] = { ["support_slower_projectiles_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Projectile), }, - ["projectile_damage_+%_vs_nearby_enemies"] = { - mod("Damage", "INC", nil, ModFlag.Projectile) - }, }, qualityStats = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "projectile_damage_+%_vs_nearby_enemies", 0.75 }, - }, - Alternate2 = { - { "projectile_chance_to_not_pierce_%", 3 }, - }, }, stats = { "support_slower_projectiles_projectile_speed_+%_final", @@ -3629,12 +3336,6 @@ skills["SupportRapidDecay"] = { Default = { { "damage_over_time_+%", 0.5 }, }, - Alternate1 = { - { "base_projectile_speed_+%", 0.5 }, - }, - Alternate2 = { - { "you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted", 1 }, - }, }, constantStats = { { "support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final", -25 }, @@ -3698,12 +3399,6 @@ skills["SupportReturningProjectiles"] = { Default = { { "base_projectile_speed_+%", 0.5 }, }, - Alternate1 = { - { "projectile_additional_return_chance_%", 1 }, - }, - Alternate2 = { - { "projectile_base_number_of_targets_to_pierce", 0.05 }, - }, }, stats = { "support_return_returning_projectiles_damage_+%_final", @@ -3813,15 +3508,8 @@ skills["SupportAdditionalTrapMine"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "mine_laying_speed_+%", 0.5 }, - { "trap_throwing_speed_+%", 0.5 }, - }, - Alternate1 = { - { "trap_duration_+%", 1 }, - }, - Alternate2 = { - { "trap_throwing_speed_+%_per_frenzy_charge", 0.1 }, - { "mine_throwing_speed_+%_per_frenzy_charge", 0.1 }, + { "mine_laying_speed_+%", 0.25 }, + { "trap_throwing_speed_+%", 0.25 }, }, }, constantStats = { @@ -3896,13 +3584,7 @@ skills["SupportTrap"] = { }, qualityStats = { Default = { - { "trap_throwing_speed_+%", 0.5 }, - }, - Alternate1 = { - { "damage_+%", 0.5 }, - }, - Alternate2 = { - { "trap_trigger_radius_+%", 1 }, + { "trap_damage_+%", 0.5 }, }, }, constantStats = { @@ -3916,6 +3598,7 @@ skills["SupportTrap"] = { "disable_skill_if_melee_attack", "base_skill_show_average_damage_instead_of_dps", "is_trap", + "quality_display_trap_duration_is_gem", }, levels = { [1] = { 0, -20, PvPDamageMultiplier = -10, levelRequirement = 8, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, @@ -3973,12 +3656,6 @@ skills["SupportTrapCooldown"] = { Default = { { "trap_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 0.5 }, - }, }, constantStats = { { "multi_trap_and_mine_support_flags", 16 }, @@ -4054,14 +3731,6 @@ skills["SupportTrapAndMineDamage"] = { Default = { { "damage_+%", 0.5 }, }, - Alternate1 = { - { "base_mana_cost_-%", 0.5 }, - { "base_life_cost_+%", -0.5 }, - { "base_reservation_efficiency_+%", 1 }, - }, - Alternate2 = { - { "damage_+%_per_power_charge", 0.1 }, - }, }, constantStats = { { "support_trap_and_mine_damage_trap_throwing_speed_+%_final", -10 }, @@ -4140,13 +3809,6 @@ skills["SupportPhysicalProjectileAttackDamage"] = { Default = { { "physical_damage_+%", 0.5 }, }, - Alternate1 = { - { "bleed_on_hit_with_attacks_%", 0.5 }, - { "base_chance_to_poison_on_hit_%", 0.5 }, - }, - Alternate2 = { - { "attacks_impale_on_hit_%_chance", 0.5 }, - }, }, constantStats = { { "support_projectile_attack_speed_+%_final", -10 }, @@ -4281,13 +3943,7 @@ skills["SupportDebilitate"] = { }, qualityStats = { Default = { - { "base_poison_damage_+%", 1 }, - }, - Alternate1 = { - { "base_poison_duration_+%", 0.5 }, - }, - Alternate2 = { - { "faster_poison_%", 0.25 }, + { "base_poison_damage_+%", 0.5 }, }, }, constantStats = { @@ -4358,12 +4014,6 @@ skills["SupportVoidManipulation"] = { Default = { { "chaos_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_life_leech_from_chaos_damage_permyriad", 2 }, - }, }, stats = { "support_void_manipulation_chaos_damage_+%_final", @@ -4467,7 +4117,7 @@ skills["SupportParallelProjectiles"] = { support = true, requireSkillTypes = { SkillType.ProjectilesFromUser, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.ProjectileSpiral, SkillType.SingleMainProjectile, SkillType.ProjectilesNotFromUser, SkillType.ProjectilesNotFired, }, + excludeSkillTypes = { SkillType.ProjectileSpiral, SkillType.SingleMainProjectile, SkillType.ProjectilesNotFromUser, SkillType.ProjectilesNotFired, SkillType.NoVolley, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_parallel_projectiles_damage_+%_final"] = { @@ -4476,13 +4126,7 @@ skills["SupportParallelProjectiles"] = { }, qualityStats = { Default = { - { "projectile_damage_+%", 1 }, - }, - Alternate1 = { - { "parallel_projectile_firing_point_x_dist_+%", 1 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "projectile_damage_+%", 0.5 }, }, }, constantStats = { @@ -4549,12 +4193,6 @@ skills["SupportChaosAttacks"] = { Default = { { "chaos_damage_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "wither_applies_additional_wither_%", 1 }, - }, }, constantStats = { { "support_withered_base_duration_ms", 2000 }, @@ -4637,12 +4275,6 @@ skills["SupportManaforgedArrows"] = { Default = { { "base_cooldown_speed_+%", 0.5 }, }, - Alternate1 = { - { "base_mana_cost_-%", 1 }, - }, - Alternate2 = { - { "support_manaforged_arrows_mana_cost_%_threshold", -2.5 }, - }, }, constantStats = { { "triggered_by_manaforged_arrows_support_%_chance", 100 }, @@ -4725,12 +4357,6 @@ skills["SupportMomentum"] = { Default = { { "support_momentum_base_buff_duration_ms", 25 }, }, - Alternate1 = { - { "support_momentum_movement_speed_+%_per_stack_removed", 0.1 }, - }, - Alternate2 = { - { "support_momentum_stack_while_channelling_base_ms", -5 }, - }, }, constantStats = { { "support_momentum_base_buff_duration_ms", 1500 }, diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index a4364c4a58..204b01eae9 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -21,12 +21,6 @@ skills["SupportAddedChaosDamage"] = { Default = { { "chaos_damage_+%", 0.5 }, }, - Alternate1 = { - { "reduce_enemy_chaos_resistance_%", 0.25 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_chaos", 1 }, - }, }, stats = { "global_minimum_added_chaos_damage", @@ -135,12 +129,6 @@ skills["SupportAddedLightningDamage"] = { Default = { { "lightning_damage_+%", 0.5 }, }, - Alternate1 = { - { "critical_strike_chance_+%", 1.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_lightning", 1 }, - }, }, stats = { "global_minimum_added_lightning_damage", @@ -258,12 +246,6 @@ skills["SupportArcaneSurge"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "support_arcane_surge_mana_regeneration_rate_+%", 0.6 }, - }, - Alternate2 = { - { "support_arcane_surge_base_duration_ms", 100 }, - }, }, constantStats = { { "support_arcane_surge_base_duration_ms", 4000 }, @@ -338,23 +320,11 @@ skills["SupportArchmage"] = { mod("LightningMax", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), div = 100, }, - ["manaweave_added_cold_damage_%_cost_if_payable"] = { - mod("ColdMin", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), - mod("ColdMax", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), - div = 100, - }, }, qualityStats = { Default = { { "base_mana_cost_-%", -0.5 }, }, - Alternate1 = { - { "manaweave_added_cold_damage_%_cost_if_payable", 2 }, - { "manaweave_added_lightning_damage_%_cost_if_payable", -2 }, - }, - Alternate2 = { - { "base_mana_cost_-%", 1 }, - }, }, constantStats = { { "manaweave_cost_equals_%_unreserved_mana", 5 }, @@ -428,13 +398,6 @@ skills["SupportBlasphemy"] = { Default = { { "curse_area_of_effect_+%", 1 }, }, - Alternate1 = { - { "curse_effect_+%", -0.5 }, - { "base_skill_area_of_effect_+%", 2 }, - }, - Alternate2 = { - { "base_reservation_efficiency_+%", 0.2 }, - }, }, constantStats = { { "support_blasphemy_curse_effect_+%_final", -25 }, @@ -565,14 +528,8 @@ skills["SupportBonechill"] = { }, qualityStats = { Default = { - { "chill_duration_+%", 1 }, - }, - Alternate1 = { { "cold_damage_+%", 0.5 }, }, - Alternate2 = { - { "chill_effect_+%", 0.5 }, - }, }, stats = { "chill_effect_+%", @@ -637,12 +594,6 @@ skills["SupportCastOnStunned"] = { Default = { { "cast_on_stunned_%", 1 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "damage_+%", 0.5 }, - }, }, stats = { "cast_on_stunned_%", @@ -713,12 +664,6 @@ skills["SupportCastWhileChannelling"] = { Default = { { "channelled_skill_damage_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { "cast_while_channelling_time_ms", @@ -780,25 +725,11 @@ skills["SupportCastWhileChannellingTriggered"] = { ["support_cast_while_channelling_triggered_skill_damage_+%_final"] = { mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), }, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"] = { - mod("EnemyChillEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyShockEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyFreezeEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyScorchEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyBrittleEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemySapEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - }, }, qualityStats = { Default = { { "triggered_skill_damage_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%", 0.5 }, - }, }, constantStats = { { "support_cast_while_channelling_triggered_skill_damage_+%_final", -30 }, @@ -973,13 +904,6 @@ skills["SupportChanceToIgnite"] = { Default = { { "fire_damage_+%", 0.5 }, }, - Alternate1 = { - { "faster_burn_%", 0.25 }, - }, - Alternate2 = { - { "faster_burn_%", -0.5 }, - { "fire_damage_+%", 1 }, - }, }, constantStats = { { "base_chance_to_ignite_%", 25 }, @@ -1040,28 +964,10 @@ skills["SupportChargedMines"] = { addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["mine_throwing_speed_+%_per_frenzy_charge"] = { - mod("MineLayingSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }), - }, - ["mine_critical_strike_chance_+%_per_power_charge"] = { - mod("CritChance", "INC", nil, 0, KeywordFlag.Mine, { type = "Multiplier", var = "PowerCharge" }), - }, - ["mine_projectile_speed_+%_per_frenzy_charge"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }) - }, - }, qualityStats = { Default = { { "mine_damage_+%", 0.5 }, }, - Alternate1 = { - { "%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy", 0.5 }, - { "%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy", 0.5 }, - }, - Alternate2 = { - { "mine_projectile_speed_+%_per_frenzy_charge", 0.2 }, - }, }, constantStats = { { "mine_throwing_speed_+%_per_frenzy_charge", 10 }, @@ -1136,12 +1042,6 @@ skills["SupportConcentratedEffect"] = { Default = { { "area_damage_+%", 0.5 }, }, - Alternate1 = { - { "support_concentrated_effect_skill_area_of_effect_+%_final", -0.5 }, - }, - Alternate2 = { - { "base_stun_threshold_reduction_+%", 0.5 }, - }, }, constantStats = { { "support_concentrated_effect_skill_area_of_effect_+%_final", -30 }, @@ -1213,13 +1113,6 @@ skills["SupportControlledDestruction"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "support_controlled_destruction_critical_strike_chance_+%_final", -1 }, - { "chance_to_freeze_shock_ignite_%", 0.5 }, - }, - Alternate2 = { - { "chance_for_extra_damage_roll_%", 0.5 }, - }, }, constantStats = { { "support_controlled_destruction_critical_strike_chance_+%_final", -80 }, @@ -1334,14 +1227,8 @@ skills["SupportCursedGround"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate1 = { { "curse_area_of_effect_+%", 0.5 }, }, - Alternate2 = { - { "base_mana_cost_-%", 0.25 }, - }, }, stats = { "base_hex_zone_skill_duration_ms", @@ -1400,9 +1287,6 @@ skills["SupportCurseOnHit"] = { ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["damage_vs_cursed_enemies_per_enemy_curse_+%"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Multiplier", var = "CurseOnEnemy" }) - }, ["apply_linked_curses_on_hit_%"] = { --Display only. Handled by SupportCurseOnHitCurse }, @@ -1413,12 +1297,6 @@ skills["SupportCurseOnHit"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "damage_vs_cursed_enemies_per_enemy_curse_+%", 1 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, constantStats = { { "apply_linked_curses_on_hit_%", 100 }, @@ -1492,13 +1370,6 @@ skills["SupportCurseOnHitCurse"] = { Default = { { "base_curse_duration_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "curse_effect_+%", -0.5 }, - { "base_curse_duration_+%", 2 }, - }, }, constantStats = { { "support_hextouch_curse_effect_+%_final", -35 }, @@ -1672,24 +1543,11 @@ skills["SupportMinionFocusFire"] = { ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), }, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"] = { - mod("MinionModifier", "LIST", { mod = mod("CritChance", "INC", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), - }, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"] = { - mod("MinionModifier", "LIST", { mod = mod("CritMultiplier", "BASE", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), - }, }, qualityStats = { Default = { { "minion_damage_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target", 1.5 }, - { "support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target", 0.75 }, - }, }, stats = { "support_minion_focus_fire_damage_+%_final_vs_focussed_target", @@ -1746,24 +1604,12 @@ skills["MinionFocusFire"] = { skillTypes = { [SkillType.Spell] = true, [SkillType.Instant] = true, [SkillType.Minion] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Cooldown] = true, [SkillType.SkillGrantedBySupport] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0, - statMap = { - ["resist_all_%"] = { - mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectCond = "EnemyHasDeathmark" }), - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectCond = "EnemyHasDeathmark" }), - }, - }, baseFlags = { }, qualityStats = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "resist_all_%", -0.2 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, constantStats = { { "base_skill_effect_duration", 8000 }, @@ -1829,12 +1675,6 @@ skills["SupportDecay"] = { Default = { { "chaos_damage_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_chaos", 0.5 }, - }, }, stats = { "deal_chaos_damage_per_second_for_10_seconds_on_hit", @@ -1901,14 +1741,8 @@ skills["SupportDevour"] = { }, qualityStats = { Default = { - { "damage_vs_enemies_on_low_life_+%", 2 }, - }, - Alternate1 = { { "damage_+%_if_you_have_consumed_a_corpse_recently", 4 }, }, - Alternate2 = { - { "life_leech_from_any_damage_permyriad", 2.5 }, - }, }, stats = { "killing_blow_consumes_corpse_restore_x_life", @@ -1978,13 +1812,6 @@ skills["SupportEfficacy"] = { Default = { { "damage_over_time_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "base_mana_cost_-%", 0.5 }, - { "base_life_cost_+%", -0.5 }, - }, }, stats = { "support_efficacy_damage_over_time_+%_final", @@ -2051,12 +1878,6 @@ skills["SupportElementalFocus"] = { Default = { { "elemental_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "avoid_interruption_while_using_this_skill_%", 1 }, - }, }, stats = { "support_gem_elemental_damage_+%_final", @@ -2162,23 +1983,10 @@ skills["SupportElementalProliferation"] = { addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["damage_+%_vs_enemies_per_freeze_shock_ignite"] = { - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited" }), - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Shocked" }), - } - }, qualityStats = { Default = { { "base_elemental_status_ailment_duration_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "damage_+%_vs_enemies_per_freeze_shock_ignite", 1 }, - }, }, constantStats = { { "chance_to_freeze_shock_ignite_%", 20 }, @@ -2248,20 +2056,11 @@ skills["SupportEnergyShieldLeech"] = { ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "LeechingEnergyShield" }), }, - ["maximum_energy_shield_leech_amount_per_leech_+%"] = { - mod("MaxEnergyShieldLeechRate", "INC", nil) - } }, qualityStats = { Default = { { "damage_+%_while_es_leeching", 0.5 }, }, - Alternate1 = { - { "damage_+%_on_full_energy_shield", 0.5 }, - }, - Alternate2 = { - { "maximum_energy_shield_leech_amount_per_leech_+%", 2 }, - }, }, stats = { "energy_shield_leech_from_any_damage_permyriad", @@ -2325,9 +2124,6 @@ skills["SupportAdditionalXP"] = { Default = { { "local_gem_experience_gain_+%", 5 }, }, - Alternate1 = { - { "local_gem_int_requirement_+%", -3 }, - }, }, stats = { }, @@ -2399,12 +2195,6 @@ skills["SupportFasterCast"] = { Default = { { "base_cast_speed_+%", 0.5 }, }, - Alternate1 = { - { "base_cooldown_speed_+%", 0.5 }, - }, - Alternate2 = { - { "faster_burn_%", 0.5 }, - }, }, stats = { "base_cast_speed_+%", @@ -2468,12 +2258,6 @@ skills["SupportMinionOffensiveStance"] = { }, qualityStats = { Default = { - { "puppet_master_base_duration_ms", 50 }, - }, - Alternate1 = { - { "minion_recover_%_maximum_life_on_hit", 0.05 }, - }, - Alternate2 = { { "minion_movement_speed_+%", 0.5 }, }, }, @@ -2542,10 +2326,6 @@ skills["SupportFreshMeat"] = { ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"] = { mod("MinionModifier", "LIST", { mod = mod("CritMultiplier", "BASE", nil) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }), }, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"] = { - mod("MinionModifier", "LIST", { mod = mod("DamageLifeLeech", "BASE", nil) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }), - div = 100, - }, }, baseMods = { mod("MinionModifier", "LIST", { mod = mod("Condition:Adrenaline", "FLAG", true) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }), @@ -2554,12 +2334,6 @@ skills["SupportFreshMeat"] = { Default = { { "minion_critical_strike_chance_+%", 1 }, }, - Alternate1 = { - { "support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury", 10 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 0.5 }, - }, }, constantStats = { { "support_recent_minions_effect_duration_is_%_summon_duration", 10 }, @@ -2633,14 +2407,8 @@ skills["SupportFrigidBond"] = { }, qualityStats = { Default = { - { "chill_effect_+%", 0.5 }, - }, - Alternate1 = { { "support_damaging_links_base_duration_ms", 100 }, }, - Alternate2 = { - { "base_mana_cost_-%", 0.5 }, - }, }, constantStats = { { "support_damaging_links_base_duration_ms", 2000 }, @@ -2705,14 +2473,8 @@ skills["SupportHexBloom"] = { statDescriptionScope = "gem_stat_descriptions", qualityStats = { Default = { - { "base_curse_duration_+%", 0.5 }, - }, - Alternate1 = { { "hex_transfer_on_death_range_+%", 0.2 }, }, - Alternate2 = { - { "curse_area_of_effect_+%", 0.5 }, - }, }, constantStats = { { "transfer_hexes_to_X_nearby_enemies_on_kill", 1 }, @@ -2785,13 +2547,7 @@ skills["SupportRemoteMine2"] = { }, qualityStats = { Default = { - { "mine_laying_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_critical_strike_multiplier_+", 0.25 }, - }, - Alternate2 = { - { "base_stun_threshold_reduction_+%", 0.5 }, + { "mine_damage_+%", 0.5 }, }, }, constantStats = { @@ -2870,12 +2626,6 @@ skills["SupportIgniteProliferation"] = { Default = { { "fire_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_chance_to_ignite_%", 0.5 }, - }, }, stats = { "support_ignite_proliferation_radius", @@ -2939,12 +2689,6 @@ skills["SupportImmolation"] = { Default = { { "fire_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_chance_to_ignite_%", 0.5 }, - }, }, stats = { "global_minimum_added_fire_damage_vs_burning_enemies", @@ -3011,12 +2755,6 @@ skills["ViciousHexSupport"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "curse_skill_effect_duration_+%", -2 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, stats = { "trigger_vicious_hex_explosion_when_curse_ends", @@ -3084,13 +2822,6 @@ skills["ViciousHexExplosion"] = { Default = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "base_added_cooldown_count", 0.05 }, - { "base_cooldown_speed_+%", -2 }, - }, }, stats = { "spell_minimum_base_chaos_damage", @@ -3155,13 +2886,6 @@ skills["SupportIncreasedAreaOfEffect"] = { Default = { { "area_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - { "damage_+%", -1 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 0.25 }, - }, }, stats = { "base_skill_area_of_effect_+%", @@ -3270,12 +2994,6 @@ skills["SupportIncreasedCriticalDamage"] = { Default = { { "base_critical_strike_multiplier_+", 0.5 }, }, - Alternate1 = { - { "critical_strike_chance_+%", 1 }, - }, - Alternate2 = { - { "critical_ailment_dot_multiplier_+", 0.75 }, - }, }, stats = { "base_critical_strike_multiplier_+", @@ -3337,12 +3055,6 @@ skills["SupportIncreasedCriticalStrikes"] = { Default = { { "critical_strike_chance_+%", 1 }, }, - Alternate1 = { - { "base_critical_strike_multiplier_+", 0.25 }, - }, - Alternate2 = { - { "gain_power_charge_on_kill_with_hit_%", 0.5 }, - }, }, constantStats = { { "additional_base_critical_strike_chance", 200 }, @@ -3414,22 +3126,10 @@ skills["SupportBurningMinions"] = { div = 60, mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), }, - ["minion_burning_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot) }), - }, - ["minion_fire_damage_taken_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamageTaken", "INC", nil) }), - } }, qualityStats = { Default = { - { "minion_fire_damage_taken_+%", -1 }, - }, - Alternate1 = { - { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 30 }, - }, - Alternate2 = { - { "minion_burning_damage_+%", 1.5 }, + { "minion_damage_+%", 0.5 }, }, }, constantStats = { @@ -3484,7 +3184,7 @@ skills["SupportBurningMinions"] = { } skills["SupportStormBarrier"] = { name = "Infused Channelling", - description = "Supports any channelling skill, protecting you from damage while you channel it. Cannot support skills used by totems. Cannot modify the skills of minions.", + description = "Supports any channelling skill, protecting you from damage while you channel it. Cannot support skills used by totems. Cannot modify the skills of minions.", color = 3, support = true, requireSkillTypes = { SkillType.Channel, }, @@ -3510,17 +3210,6 @@ skills["SupportStormBarrier"] = { mod("Condition:HaveLightningInfusion", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "LightningInfusion" }), mod("Condition:HaveChaosInfusion", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ChaosInfusion" }), }, - ["infusion_grants_life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "PhysicalInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "FireInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ColdInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "LightningInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ChaosInfusion" }), - div = 60 - }, - ["infusion_effect_+%"] = { - mod("InfusionEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, baseMods = { flag("Condition:PhysicalInfusion", { type = "SkillType", skillType = SkillType.Physical }), @@ -3533,12 +3222,6 @@ skills["SupportStormBarrier"] = { Default = { { "support_storm_barrier_damage_buff_time_threshold_ms", -20 }, }, - Alternate1 = { - { "infusion_effect_+%", 0.5 }, - }, - Alternate2 = { - { "infusion_grants_life_regeneration_rate_per_minute_%", 1.5 }, - }, }, constantStats = { { "support_storm_barrier_skill_type_damage_taken_when_hit_+%_final", -8 }, @@ -3614,14 +3297,8 @@ skills["SupportOnslaughtOnSlayingShockedEnemy"] = { }, qualityStats = { Default = { - { "shock_duration_+%", 1.5 }, - }, - Alternate1 = { { "support_innervate_buff_base_duration_ms", 100 }, }, - Alternate2 = { - { "support_innervate_chance_to_gain_buff_on_shock_vs_unique_%", 0.2 }, - }, }, constantStats = { { "base_chance_to_shock_%", 20 }, @@ -3698,15 +3375,6 @@ skills["SupportHandcastSpellBoost"] = { Default = { { "area_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "intensity_loss_frequency_while_moving_+%", 2 }, - }, - Alternate3 = { - { "intensity_loss_frequency_while_moving_+%", -1 }, - }, }, constantStats = { { "support_spell_boost_area_of_effect_+%_final_per_charge", -15 }, @@ -3773,9 +3441,6 @@ skills["SupportItemRarity"] = { Default = { { "base_killed_monster_dropped_item_rarity_+%", 0.5 }, }, - Alternate1 = { - { "chance_for_coin_shower_on_kill_%", 0.1 }, - }, }, stats = { "base_killed_monster_dropped_item_rarity_+%", @@ -3836,12 +3501,6 @@ skills["SupportLightningPenetration"] = { Default = { { "lightning_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_chance_to_shock_%", 0.5 }, - }, - Alternate2 = { - { "lightning_ailment_effect_+%", 1 }, - }, }, stats = { "base_reduce_enemy_lightning_resistance_%", @@ -3953,13 +3612,7 @@ skills["SupportMinionDefensiveStance"] = { }, qualityStats = { Default = { - { "minion_additional_physical_damage_reduction_%", 0.25 }, - }, - Alternate1 = { - { "support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you", 0.25 }, - }, - Alternate2 = { - { "minion_block_%", 0.4 }, + { "support_minion_defensive_stance_minion_damage_taken_+%_final", -0.25 }, }, }, constantStats = { @@ -4030,13 +3683,7 @@ skills["SupportMinefield"] = { }, qualityStats = { Default = { - { "mine_laying_speed_+%", 0.5 }, - }, - Alternate1 = { - { "chance_to_place_an_additional_mine_%", 0.2 }, - }, - Alternate2 = { - { "number_of_additional_remote_mines_allowed", 0.2 }, + { "mine_laying_speed_+%", 0.25 }, }, }, constantStats = { @@ -4104,23 +3751,11 @@ skills["SupportMinionDamage"] = { ["support_minion_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), }, - ["minion_chance_to_deal_double_damage_%"] = { - mod("MinionModifier", "LIST", { mod = mod("DoubleDamageChance", "BASE", nil) }), - }, - ["minion_ailment_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, KeywordFlag.Ailment) }), - }, }, qualityStats = { Default = { { "minion_damage_+%", 0.5 }, }, - Alternate1 = { - { "minion_chance_to_deal_double_damage_%", 0.15 }, - }, - Alternate2 = { - { "minion_ailment_damage_+%", 2 }, - }, }, constantStats = { { "support_minion_damage_minion_life_+%_final", -25 }, @@ -4235,23 +3870,10 @@ skills["SupportMinionLife"] = { ["support_minion_maximum_life_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), }, - ["minion_life_regeneration_rate_per_minute_%"] = { - mod("MinionModifier", "LIST", { mod = mod("LifeRegenPercent", "BASE", nil) }), - div = 60 - }, - ["minion_damage_+%_on_full_life"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, {type = "Condition", var = "FullLife"}) }), - }, }, qualityStats = { Default = { - { "minion_maximum_life_+%", 0.75 }, - }, - Alternate1 = { - { "minion_life_regeneration_rate_per_minute_%", 3 }, - }, - Alternate2 = { - { "minion_damage_+%_on_full_life", 1 }, + { "minion_maximum_life_+%", 1 }, }, }, stats = { @@ -4314,12 +3936,6 @@ skills["SupportMinionSpeed"] = { Default = { { "minion_movement_speed_+%", 0.5 }, }, - Alternate1 = { - { "base_minion_duration_+%", -2 }, - }, - Alternate2 = { - { "minion_cooldown_recovery_+%", 1 }, - }, }, stats = { "minion_movement_speed_+%", @@ -4382,12 +3998,6 @@ skills["SupportSummonElementalResistances"] = { ["support_minion_totem_resistance_elemental_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("ElementalDamage", "MORE", nil) }), }, - ["minion_life_leech_from_elemental_damage_permyriad"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamageLeech", "BASE", nil) }), - mod("MinionModifier", "LIST", { mod = mod("LightningDamageLeech", "BASE", nil) }), - mod("MinionModifier", "LIST", { mod = mod("ColdDamageLeech", "BASE", nil) }), - div = 100 - }, ["minions_inflict_exposure_on_hit_%_chance"] = { }, }, @@ -4395,12 +4005,6 @@ skills["SupportSummonElementalResistances"] = { Default = { { "minion_maximum_all_elemental_resistances_%", 0.1 }, }, - Alternate1 = { - { "minion_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "minion_life_leech_from_elemental_damage_permyriad", 2 }, - }, }, constantStats = { { "minions_inflict_exposure_on_hit_%_chance", 100 }, @@ -4469,19 +4073,10 @@ skills["SupportOvercharge"] = { ["support_pure_shock_damage_+%_final"] = { mod("Damage", "MORE", nil), }, - ["shock_effect_+%_with_critical_strikes"] = { - mod("EnemyShockEffect", "INC", nil), - }, }, qualityStats = { Default = { - { "shock_duration_+%", 1.5 }, - }, - Alternate1 = { - { "shock_effect_+%_with_critical_strikes", 1 }, - }, - Alternate2 = { - { "critical_strike_chance_+%", 2 }, + { "shock_duration_+%", 1 }, }, }, constantStats = { @@ -4543,21 +4138,9 @@ skills["SupportPhysicalToLightning"] = { addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["enemies_you_shock_take_%_increased_physical_damage"] = { - mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Condition", var = "Shocked" }), - }, - }, qualityStats = { Default = { { "physical_damage_+%", 0.5 }, - { "lightning_damage_+%", 0.5 }, - }, - Alternate1 = { - { "skill_physical_damage_%_to_convert_to_lightning", 0.5 }, - }, - Alternate2 = { - { "enemies_you_shock_take_%_increased_physical_damage", 0.5 }, }, }, constantStats = { @@ -4628,15 +4211,6 @@ skills["SupportPrismaticBurst"] = { Default = { { "dummy_stat_display_nothing", 0 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate3 = { - { "dummy_stat_display_nothing", 0 }, - }, }, constantStats = { { "trigger_prismatic_burst_on_hit_%_chance", 100 }, @@ -4713,15 +4287,6 @@ skills["PrismaticBurst"] = { mod("LightningDamage", "MORE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), mult = -100, }, - ["spell_damage_+%_per_10_int"] = { - skill("Damage", nil, { type = "PerStat", stat = "Int", div = 10 }), - }, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"] = { - skill("CritMultiplier", nil, { type = "Condition", var = "DexHigherThanInt" }), - }, - ["area_of_effect_+%_per_50_strength"] = { - skill("Area", nil, { type = "PerStat", stat = "Str", div = 50 }), - }, }, baseFlags = { spell = true, @@ -4734,15 +4299,6 @@ skills["PrismaticBurst"] = { Default = { { "elemental_damage_+%", 1 }, }, - Alternate1 = { - { "spell_damage_+%_per_10_int", 0.05 }, - }, - Alternate2 = { - { "critical_strike_multiplier_+_if_dexterity_higher_than_intelligence", 0.5 }, - }, - Alternate3 = { - { "area_of_effect_+%_per_50_strength", 0.1 }, - }, }, stats = { "spell_minimum_base_cold_damage", @@ -4825,12 +4381,6 @@ skills["SupportProjectileIntensity"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "intensity_loss_frequency_while_moving_+%", -1 }, - }, - Alternate2 = { - { "intensity_loss_frequency_while_moving_+%", 1 }, - }, }, constantStats = { { "number_of_additional_projectiles", 3 }, @@ -4900,13 +4450,7 @@ skills["SupportPowerChargeOnCrit"] = { }, qualityStats = { Default = { - { "critical_strike_chance_+%", 1 }, - }, - Alternate1 = { - { "add_power_charge_on_critical_strike_%", 1 }, - }, - Alternate2 = { - { "damage_+%_per_power_charge", 0.1 }, + { "add_power_charge_on_critical_strike_%", 0.5 }, }, }, constantStats = { @@ -4980,13 +4524,7 @@ skills["SupportRemoteMine"] = { }, qualityStats = { Default = { - { "mine_laying_speed_+%", 0.5 }, - }, - Alternate1 = { - { "base_reservation_efficiency_+%", 2 }, - }, - Alternate2 = { - { "mine_detonation_speed_+%", 1 }, + { "mine_damage_+%", 0.5 }, }, }, constantStats = { @@ -5071,12 +4609,6 @@ skills["SupportSacrifice"] = { Default = { { "chaos_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_cost_life_instead_of_mana_%", 2 }, - }, - Alternate2 = { - { "support_sacrifice_sacrifice_%_of_current_life", 0.25 }, - }, }, stats = { "support_sacrifice_sacrifice_%_of_current_life", @@ -5139,20 +4671,11 @@ skills["SupportSpellblade"] = { ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"] = { mod("OneHandWeaponDamageAppliesToSpells", "MAX", nil), }, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"] = { - mod("OneHandWeaponDamageAppliesToSpellsWithTwoDifferentTypes", "MAX", nil), - }, }, qualityStats = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types", 1 }, - }, - Alternate2 = { - { "chance_for_extra_damage_roll_%", 0.5 }, - }, }, stats = { "support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage", @@ -5222,13 +4745,6 @@ skills["SupportSpellCascade"] = { Default = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate1 = { - { "damage_+%", 0.5 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", 1 }, - { "support_spell_cascade_area_delay_+%", 5 }, - }, }, constantStats = { { "support_spell_cascade_number_of_cascades_per_side", 1 }, @@ -5337,7 +4853,7 @@ skills["SupportSpellCascadePlus"] = { } skills["SupportMulticast"] = { name = "Spell Echo", - description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, instant skills, or skills with a reservation.", + description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, instant skills, blink skills, or skills with a reservation.", color = 3, support = true, requireSkillTypes = { SkillType.Multicastable, }, @@ -5351,9 +4867,6 @@ skills["SupportMulticast"] = { ["support_multicast_cast_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Cast), }, - ["support_spell_echo_final_repeat_damage_+%_final"] = { - mod("RepeatFinalDamage", "MORE", nil, 0, 0, { type = "Condition", var = "CastOnFrostbolt", neg = true }, { type = "Condition", varList = {"averageRepeat", "alwaysFinalRepeat"} }), - } }, baseMods = { flag("Condition:HaveSpellEcho"), @@ -5362,13 +4875,6 @@ skills["SupportMulticast"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_cast_speed_+%", 0.5 }, - }, - Alternate2 = { - { "support_echo_damage_+%_final", -1 }, - { "support_spell_echo_final_repeat_damage_+%_final", 3 }, - }, }, constantStats = { { "base_spell_repeat_count", 1 }, @@ -5422,12 +4928,12 @@ skills["SupportMulticast"] = { } skills["SupportSpellEchoPlus"] = { name = "Awakened Spell Echo", - description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, instant skills, or skills with a reservation.", + description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, instant skills, blink skills, or skills with a reservation.", color = 3, support = true, requireSkillTypes = { SkillType.Multicastable, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Blink, SkillType.NonRepeatable, SkillType.CreatesMinion, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.NonRepeatable, SkillType.CreatesMinion, SkillType.NOT, SkillType.AND, }, plusVersionOf = "SupportMulticast", statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -5499,9 +5005,6 @@ skills["SupportSummonGhostOnKill"] = { ["base_number_of_support_ghosts_allowed"] = { mod("ActivePhantasmLimit", "BASE", nil), }, - ["damage_+%_for_non_minions"] = { - -- mod("Damage", "INC", nil, 0, 0, {type = "Actor"}) - }, ["phantasm_minimum_added_physical_damage_to_grant"] = { mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" }) }, @@ -5513,12 +5016,6 @@ skills["SupportSummonGhostOnKill"] = { Default = { { "chance_to_summon_support_ghost_on_killing_blow_%", 0.5 }, }, - Alternate1 = { - { "damage_+%_for_non_minions", 3 }, - }, - Alternate2 = { - { "skill_effect_duration_+%", 0.5 }, - }, }, constantStats = { { "support_ghost_base_duration", 15000 }, @@ -5593,20 +5090,10 @@ skills["SupportRapidActivation"] = { ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"] = { mod("SecondaryDuration", "MORE", nil, 0, KeywordFlag.Brand), }, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"] = { - mod("BrandActivationFrequency", "MORE", nil, 0, 0, {type = "Condition", var = "BrandLastQuarter"}) - }, }, qualityStats = { Default = { - { "sigil_repeat_frequency_+%", 0.25 }, - }, - Alternate1 = { - { "support_rapid_activation_brand_skill_only_primary_duration_+%_final", 1 }, - { "support_rapid_activation_brand_skill_only_secondary_duration_+%_final", -1 }, - }, - Alternate2 = { - { "from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired", 1 }, + { "support_rapid_activation_brand_activation_rate_+%_final", 0.25 }, }, }, constantStats = { @@ -5682,12 +5169,6 @@ skills["SupportTrinity"] = { Default = { { "elemental_damage_+%", 0.5 }, }, - Alternate1 = { - { "chance_to_freeze_shock_ignite_%", 0.25 }, - }, - Alternate2 = { - { "skill_convert_%_physical_damage_to_random_element", 0.5 }, - }, }, constantStats = { { "elemental_damage_+%_final_per_5_lowest_resonance", 3 }, @@ -5752,20 +5233,11 @@ skills["SupportAilments"] = { ["support_unbound_ailments_ailment_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Bleed, KeywordFlag.Poison, KeywordFlag.Ignite)), }, - ["base_damage_+%_while_an_ailment_on_you"] = { - mod("Damage", "INC", nil, 0, 0, {type = "Condition", varList = { "Frozen","Chilled","Shocked","Ignited","Scorched","Brittle","Sapped","Poisoned","Bleeding" }}) - } }, qualityStats = { Default = { { "base_all_ailment_duration_+%", 0.5 }, }, - Alternate1 = { - { "base_ailment_damage_+%", 1 }, - }, - Alternate2 = { - { "base_damage_+%_while_an_ailment_on_you", 1.5 }, - }, }, stats = { "base_all_ailment_duration_+%", @@ -5891,14 +5363,6 @@ skills["SupportHandcastAnticipation"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_cast_speed_+%", 1 }, - { "support_anticipation_charge_gain_frequency_+%", -0.5 }, - }, - Alternate2 = { - { "unleash_support_seal_gain_frequency_+%_while_channelling", 2.5 }, - { "unleash_support_seal_gain_frequency_+%_while_not_channelling", -5 }, - }, }, constantStats = { { "support_anticipation_rapid_fire_count", 3 }, diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index eaa5333e8e..643a3ff10f 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -20,13 +20,6 @@ skills["SupportAddedFireDamage"] = { Default = { { "fire_damage_+%", 0.5 }, }, - Alternate1 = { - { "fire_damage_+%", -1 }, - { "fire_dot_multiplier_+", 1 }, - }, - Alternate2 = { - { "skill_physical_damage_%_to_convert_to_fire", 1 }, - }, }, stats = { "physical_damage_%_to_add_as_fire", @@ -133,13 +126,7 @@ skills["SupportSpiritStrike"] = { }, qualityStats = { Default = { - { "melee_damage_+%", 0.5 }, - }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "melee_range_+", 0.2 }, + { "extra_target_targeting_distance_+%", 0.75 }, }, }, constantStats = { @@ -209,7 +196,7 @@ skills["SupportAncestralCallPlus"] = { }, qualityStats = { Default = { - { "melee_damage_+%", 0.5 }, + { "extra_target_targeting_distance_+%", 0.75 }, }, }, constantStats = { @@ -257,13 +244,7 @@ skills["SupportBehead"] = { }, qualityStats = { Default = { - { "melee_range_+", 0.1 }, - }, - Alternate1 = { - { "damage_vs_enemies_on_low_life_+%", 1.5 }, - }, - Alternate2 = { - { "support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%", 0.5 }, + { "damage_vs_enemies_on_low_life_+%", 1 }, }, }, constantStats = { @@ -330,12 +311,6 @@ skills["SupportBloodMagic"] = { Default = { { "aura_effect_+%", 0.25 }, }, - Alternate1 = { - { "base_life_reservation_efficiency_+%", 0.2 }, - }, - Alternate2 = { - { "damage_+%", 0.5 }, - }, }, stats = { "aura_effect_+%", @@ -409,12 +384,6 @@ skills["SupportBloodthirst"] = { Default = { { "damage_+%_when_on_low_life", 1 }, }, - Alternate1 = { - { "accuracy_rating_+%_when_on_low_life", 0.5 }, - }, - Alternate2 = { - { "damage_vs_enemies_on_low_life_+%", 1.5 }, - }, }, constantStats = { { "blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life", 2 }, @@ -483,12 +452,6 @@ skills["SupportBloodlust"] = { Default = { { "melee_damage_vs_bleeding_enemies_+%", 0.5 }, }, - Alternate1 = { - { "crush_for_2_seconds_on_hit_%_chance", 0.5 }, - }, - Alternate2 = { - { "refresh_bleeding_duration_on_hit_%_chance", 0.5 }, - }, }, stats = { "support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies", @@ -555,12 +518,6 @@ skills["SupportBrutality"] = { Default = { { "physical_damage_+%", 0.5 }, }, - Alternate1 = { - { "bleed_on_hit_with_attacks_%", 0.5 }, - }, - Alternate2 = { - { "enemy_phys_reduction_%_penalty_vs_hit", 0.25 }, - }, }, stats = { "support_brutality_physical_damage_+%_final", @@ -677,12 +634,6 @@ skills["SupportIncreasedBurningDamage"] = { Default = { { "burn_damage_+%", 0.5 }, }, - Alternate1 = { - { "ignite_duration_+%", 1 }, - }, - Alternate2 = { - { "non_damaging_ailment_effect_+%", 2 }, - }, }, stats = { "support_burning_damage_+%_final", @@ -795,12 +746,6 @@ skills["SupportCastOnMeleeKill"] = { Default = { { "attack_damage_+%", 0.5 }, }, - Alternate1 = { - { "attack_damage_+%", 3 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, constantStats = { { "cast_linked_spells_on_melee_kill_%", 100 }, @@ -870,12 +815,6 @@ skills["SupportCastOnMeleeKillTriggered"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 1 }, - }, }, stats = { "support_cast_on_melee_kill_spell_damage_+%_final", @@ -946,13 +885,7 @@ skills["SupportCastOnDamageTaken"] = { }, qualityStats = { Default = { - { "damage_+%", 0.5 }, - }, - Alternate1 = { - { "skill_effect_duration_+%", 1 }, - }, - Alternate2 = { - { "cast_when_damage_taken_trigger_threshold_+%", -1 }, + { "cast_when_damage_taken_trigger_threshold_+%", -0.5 }, }, }, constantStats = { @@ -1028,12 +961,6 @@ skills["SupportChanceToBleed"] = { Default = { { "bleeding_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_bleed_duration_+%", 1 }, - }, - Alternate2 = { - { "added_damage_+%_final", 1 }, - }, }, constantStats = { { "bleed_on_hit_with_attacks_%", 25 }, @@ -1099,13 +1026,6 @@ skills["SupportColdToFire"] = { qualityStats = { Default = { { "cold_damage_+%", 0.5 }, - { "fire_damage_+%", 0.5 }, - }, - Alternate1 = { - { "skill_cold_damage_%_to_convert_to_fire", 0.5 }, - }, - Alternate2 = { - { "base_poison_damage_+%", 3 }, }, }, constantStats = { @@ -1184,13 +1104,6 @@ skills["SupportControlledBlaze"] = { Default = { { "base_chance_to_ignite_%", 0.5 }, }, - Alternate1 = { - { "ignite_duration_+%", 1 }, - }, - Alternate2 = { - { "faster_burn_%", 0.5 }, - { "attack_speed_+%", -0.5 }, - }, }, stats = { "support_recent_ignites_ignite_damage_per_recent_ignite_+%_final", @@ -1244,7 +1157,7 @@ skills["SupportControlledBlaze"] = { } skills["SupportCorruptingCry"] = { name = "Corrupting Cry", - description = "Supports warcry skills.", + description = "Supports warcry skills. Cannot modify the skills of minions.", color = 1, baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.050000000745058, @@ -1252,6 +1165,7 @@ skills["SupportCorruptingCry"] = { requireSkillTypes = { SkillType.Warcry, }, addSkillTypes = { SkillType.DamageOverTime, SkillType.Duration, }, excludeSkillTypes = { }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute"] = { @@ -1282,12 +1196,6 @@ skills["SupportCorruptingCry"] = { Default = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "base_life_cost_+%", -0.5 }, - }, }, constantStats = { { "support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms", 2000 }, @@ -1367,12 +1275,6 @@ skills["SupportCruelty"] = { Default = { { "cruelty_effect_+%", 0.25 }, }, - Alternate1 = { - { "critical_strike_chance_+%", 1 }, - }, - Alternate2 = { - { "cruelty_duration_+%", 1 }, - }, }, constantStats = { { "support_base_cruelty_duration_ms", 4000 }, @@ -1444,12 +1346,6 @@ skills["SupportMeleeDamageOnFullLife"] = { Default = { { "damage_+%", 0.5 }, }, - Alternate1 = { - { "base_life_leech_from_attack_damage_permyriad", 2.5 }, - }, - Alternate2 = { - { "damage_+%_vs_enemies_on_full_life", 2 }, - }, }, stats = { "support_damage_while_on_full_life_+%_final", @@ -1516,12 +1412,6 @@ skills["SupportAuraDuration"] = { Default = { { "aura_effect_+%", 0.25 }, }, - Alternate1 = { - { "skill_effect_duration_+%", 0.5 }, - }, - Alternate2 = { - { "base_mana_cost_-%", 0.25 }, - }, }, constantStats = { { "base_spell_cast_time_ms_override", 500 }, @@ -1602,12 +1492,6 @@ skills["SupportEarthbreaker"] = { Default = { { "totem_damage_+%", 0.5 }, }, - Alternate1 = { - { "ancestor_totem_buff_effect_+%", 1 }, - }, - Alternate2 = { - { "ancestor_totem_parent_activation_range_+%", 2 }, - }, }, constantStats = { { "base_totem_duration", 12000 }, @@ -1689,12 +1573,6 @@ skills["SupportWeaponElementalDamage"] = { Default = { { "elemental_damage_with_attack_skills_+%", 0.5 }, }, - Alternate1 = { - { "chance_to_freeze_shock_ignite_%", 0.25 }, - }, - Alternate2 = { - { "base_mana_leech_from_elemental_damage_permyriad", 2.5 }, - }, }, stats = { "support_attack_skills_elemental_damage_+%_final", @@ -1803,9 +1681,6 @@ skills["SupportAdditionalLevel"] = { Default = { { "local_gem_experience_gain_+%", 5 }, }, - Alternate1 = { - { "local_gem_str_requirement_+%", -3 }, - }, }, stats = { "supported_active_skill_gem_level_+", @@ -1878,20 +1753,11 @@ skills["EnduranceChargeOnMeleeStun"] = { ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), }, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "LostEnduranceChargeInPast8Sec" }), - } }, qualityStats = { Default = { { "base_stun_duration_+%", 1 }, }, - Alternate1 = { - { "damage_+%_per_endurance_charge", 0.1 }, - }, - Alternate2 = { - { "damage_+%_if_lost_endurance_charge_in_past_8_seconds", 1 }, - }, }, constantStats = { { "endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge", 4 }, @@ -1966,13 +1832,6 @@ skills["SupportMortalConviction"] = { Default = { { "aura_effect_+%", 0.25 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 1 }, - }, - Alternate2 = { - { "base_skill_area_of_effect_+%", -1 }, - { "non_curse_aura_effect_+%", 0.5 }, - }, }, stats = { "aura_effect_+%", @@ -2036,12 +1895,6 @@ skills["SupportFirePenetration"] = { Default = { { "fire_damage_+%", 0.5 }, }, - Alternate1 = { - { "burn_damage_+%", 3 }, - }, - Alternate2 = { - { "base_chance_to_destroy_corpse_on_kill_%_vs_ignited", 5 }, - }, }, stats = { "base_reduce_enemy_fire_resistance_%", @@ -2152,22 +2005,11 @@ skills["AncestralSlamSupport"] = { mod("FistOfWarCooldown", "BASE", nil), div = 1000, }, - ["ancestral_slam_stun_threshold_reduction_+%"] = { - mod("EnemyStunThreshold", "INC", nil, ModFlag.Attack), - mult = -1, - }, }, qualityStats = { Default = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate1 = { - { "attack_speed_+%", -1 }, - { "damage_+%", 3 }, - }, - Alternate2 = { - { "ancestral_slam_stun_threshold_reduction_+%", 0.5 }, - }, }, constantStats = { { "support_ancestral_slam_big_hit_max_count", 1 }, @@ -2238,14 +2080,8 @@ skills["SupportFlamewood"] = { }, qualityStats = { Default = { - { "dummy_stat_display_nothing", 0.5 }, - }, - Alternate1 = { { "totem_life_+%", 0.5 }, }, - Alternate2 = { - { "dummy_stat_display_nothing", 0.5 }, - }, }, stats = { "support_flamewood_totems_trigger_infernal_bolt_when_hit", @@ -2328,13 +2164,7 @@ skills["AvengingFlame"] = { }, qualityStats = { Default = { - { "fire_damage_+%", 1 }, - }, - Alternate1 = { - { "dummy_stat_display_nothing", 0.5 }, - }, - Alternate2 = { - { "cover_in_ash_on_hit_%", 0.5 }, + { "dummy_stat_display_nothing", 0 }, }, }, constantStats = { @@ -2412,20 +2242,10 @@ skills["SupportFortify"] = { ["fortify_effect_+%"] = { mod("FortifyEffectOnSelf", "INC", nil) }, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"] = { - mod("EnemyPhysicalDamageReduction", "BASE", nil, ModFlag.Hit, 0, { type = "Condition", var = "HaveMaximumFortification"}), - mult = -1, - }, }, qualityStats = { Default = { - { "attack_damage_+%", 0.5 }, - }, - Alternate1 = { - { "fortify_duration_+%", 0.5 }, - }, - Alternate2 = { - { "overwhelm_%_physical_damage_reduction_while_max_fortification", 0.25 }, + { "fortify_duration_+%", 1 }, }, }, constantStats = { @@ -2496,13 +2316,6 @@ skills["SupportGenerosity"] = { Default = { { "base_aura_area_of_effect_+%", 2 }, }, - Alternate1 = { - { "non_curse_aura_effect_+%", 0.25 }, - }, - Alternate2 = { - { "base_aura_area_of_effect_+%", 5 }, - { "base_reservation_efficiency_+%", -1 }, - }, }, stats = { "non_curse_aura_effect_+%", @@ -2601,7 +2414,7 @@ skills["SupportGenerosityPlus"] = { } skills["SupportGuardiansBlessing"] = { name = "Guardian's Blessing", - description = "Must support both a skill that creates minions which can be damaged, and\n an aura skill that creates permanent auras around you.\nCannot support triggered skills, banner skills or stance skills. ", + description = "Must support both a skill that creates minions which can be damaged, and\n an aura skill that creates permanent auras around you.\nCannot support triggered skills, banner skills or stance skills.", color = 1, support = true, requireSkillTypes = { SkillType.CanHaveBlessing, }, @@ -2624,12 +2437,6 @@ skills["SupportGuardiansBlessing"] = { Default = { { "aura_effect_+%", 0.25 }, }, - Alternate1 = { - { "dummy_stat_display_nothing", 0.5 }, - }, - Alternate2 = { - { "aura_effect_+%", 1 }, - }, }, stats = { "aura_effect_+%", @@ -2682,7 +2489,7 @@ skills["SupportGuardiansBlessing"] = { } skills["SupportGuardiansBlessingMinion"] = { name = "Guardian's Blessing", - description = "Must support both a skill that creates minions which can be damaged, and\n an aura skill that creates permanent auras around you.\nCannot support triggered skills, banner skills or stance skills. ", + description = "Must support both a skill that creates minions which can be damaged, and\n an aura skill that creates permanent auras around you.\nCannot support triggered skills, banner skills or stance skills.", color = 1, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -2700,12 +2507,6 @@ skills["SupportGuardiansBlessingMinion"] = { Default = { { "dummy_stat_display_nothing", 0.25 }, }, - Alternate1 = { - { "minion_life_regeneration_rate_per_minute_%", 6 }, - }, - Alternate2 = { - { "support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute", 15 }, - }, }, stats = { "support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute", @@ -2768,14 +2569,6 @@ skills["SupportIncreasedDuration"] = { Default = { { "skill_effect_duration_+%", 0.5 }, }, - Alternate1 = { - { "base_mana_cost_-%", 1 }, - { "base_life_cost_+%", -1 }, - { "skill_effect_duration_+%", -0.5 }, - }, - Alternate2 = { - { "base_all_ailment_duration_+%", 1 }, - }, }, stats = { "skill_effect_duration_+%", @@ -2836,13 +2629,6 @@ skills["SupportIronGrip"] = { Default = { { "projectile_damage_+%", 0.5 }, }, - Alternate1 = { - { "attack_speed_+%", -0.5 }, - { "damage_+%", 2 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 0.5 }, - }, }, stats = { "projectile_damage_+%", @@ -2904,13 +2690,6 @@ skills["SupportIronWill"] = { Default = { { "spell_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_cast_speed_+%", -0.5 }, - { "damage_+%", 2 }, - }, - Alternate2 = { - { "base_projectile_speed_+%", 0.5 }, - }, }, stats = { "spell_damage_+%", @@ -3034,12 +2813,6 @@ skills["SupportKnockback"] = { Default = { { "base_global_chance_to_knockback_%", 0.5 }, }, - Alternate1 = { - { "damage_+%", 0.5 }, - }, - Alternate2 = { - { "knockback_distance_+%", 2 }, - }, }, constantStats = { { "knockback_distance_+%", 50 }, @@ -3111,12 +2884,6 @@ skills["SupportReducedDuration"] = { Default = { { "support_reduced_duration_skill_effect_duration_+%_final", -0.5 }, }, - Alternate1 = { - { "base_all_ailment_duration_+%", 0.5 }, - }, - Alternate2 = { - { "faster_bleed_%", 0.5 }, - }, }, stats = { "support_reduced_duration_skill_effect_duration_+%_final", @@ -3179,12 +2946,6 @@ skills["SupportLifeGainOnHit"] = { Default = { { "base_life_gain_per_target", 0.5 }, }, - Alternate1 = { - { "damage_+%_when_on_full_life", 2 }, - }, - Alternate2 = { - { "mana_gain_per_target", 0.1 }, - }, }, stats = { "base_life_gain_per_target", @@ -3242,21 +3003,10 @@ skills["SupportLifeLeech"] = { addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["maximum_life_leech_amount_per_leech_+%"] = { - mod("MaxLifeLeechRate", "INC", nil) - } - }, qualityStats = { Default = { { "damage_+%_while_life_leeching", 0.5 }, }, - Alternate1 = { - { "damage_+%_when_on_full_life", 2 }, - }, - Alternate2 = { - { "maximum_life_leech_amount_per_leech_+%", 5 }, - }, }, stats = { "life_leech_from_any_damage_permyriad", @@ -3320,12 +3070,6 @@ skills["SupportLifetap"] = { }, qualityStats = { Default = { - { "damage_+%", 0.5 }, - }, - Alternate1 = { - { "base_life_cost_+%", 0.5 }, - }, - Alternate2 = { { "support_base_lifetap_buff_duration", 100 }, }, }, @@ -3397,20 +3141,11 @@ skills["SupportMaim"] = { ["support_maimed_enemies_physical_damage_taken_+%"] = { mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Maim" }, { type = "Condition", var = "Maimed" }), }, - ["chance_to_bleed_on_hit_%_vs_maimed"] = { - mod("BleedChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Maimed" }) - } }, qualityStats = { Default = { - { "physical_damage_+%", 0.5 }, - }, - Alternate1 = { { "maim_effect_+%", 1 }, }, - Alternate2 = { - { "chance_to_bleed_on_hit_%_vs_maimed", 0.5 }, - }, }, constantStats = { { "maim_on_hit_%", 30 }, @@ -3487,12 +3222,6 @@ skills["SupportMeleePhysicalDamage"] = { Default = { { "melee_physical_damage_+%", 0.5 }, }, - Alternate1 = { - { "melee_range_+", 0.1 }, - }, - Alternate2 = { - { "enemy_phys_reduction_%_penalty_vs_hit", 0.25 }, - }, }, constantStats = { { "support_melee_physical_damage_attack_speed_+%_final", -10 }, @@ -3614,12 +3343,6 @@ skills["SupportMeleeSplash"] = { Default = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate1 = { - { "melee_damage_+%", 1 }, - }, - Alternate2 = { - { "support_melee_splash_damage_+%_final_for_splash", 2 }, - }, }, constantStats = { { "support_melee_splash_damage_+%_final_for_splash", -40 }, @@ -3742,23 +3465,13 @@ skills["SupportMultistrike"] = { mod("Speed", "MORE", nil, ModFlag.Attack, nil, { type = "ModFlagOr", modFlags = bit.bor(ModFlag.WeaponMelee, ModFlag.Unarmed) }), mod("Speed", "MORE", nil, ModFlag.Attack, nil, { type = "SkillType", skillType = SkillType.RequiresShield }), }, - ["multistrike_area_of_effect_+%_per_repeat"] = { - mod("RepeatPerRepeatAreaOfEffect", "INC", nil) - } }, baseMods = { flag("SupportedByMultistrike"), }, qualityStats = { Default = { - { "melee_physical_damage_+%", 0.5 }, - }, - Alternate1 = { - { "attack_speed_+%", -1 }, - { "multistrike_area_of_effect_+%_per_repeat", 1 }, - }, - Alternate2 = { - { "attack_speed_+%", 0.5 }, + { "melee_damage_+%", 0.5 }, }, }, constantStats = { @@ -3900,13 +3613,7 @@ skills["SupportMultiTotem"] = { }, qualityStats = { Default = { - { "summon_totem_cast_speed_+%", 1 }, - }, - Alternate1 = { - { "totem_duration_+%", 1 }, - }, - Alternate2 = { - { "totem_damage_+%", 0.5 }, + { "summon_totem_cast_speed_+%", 0.5 }, }, }, constantStats = { @@ -3978,15 +3685,8 @@ skills["SupportPulverise"] = { }, qualityStats = { Default = { - { "area_damage_+%", 0.5 }, - }, - Alternate1 = { { "base_skill_area_of_effect_+%", 0.5 }, }, - Alternate2 = { - { "support_pulverise_attack_speed_+%_final", -0.5 }, - { "support_pulverise_melee_area_damage_+%_final", 1 }, - }, }, constantStats = { { "support_pulverise_attack_speed_+%_final", -15 }, @@ -4066,20 +3766,11 @@ skills["SupportRage"] = { ["attack_maximum_added_physical_damage_per_10_rage"] = { mod("PhysicalMax", "BASE", nil, bit.bor(ModFlag.Attack, ModFlag.Weapon), 0, { type = "Multiplier", var = "Rage", div = 10 }) }, - ["attack_speed_+%_with_atleast_20_rage"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 20 }) - } }, qualityStats = { Default = { { "attack_damage_+%", 0.5 }, }, - Alternate1 = { - { "attack_speed_+%_with_atleast_20_rage", 0.5 }, - }, - Alternate2 = { - { "gain_1_rage_on_use_%_chance", 1 }, - }, }, constantStats = { { "support_rage_gain_rage_on_melee_hit_cooldown_ms", 400 }, @@ -4142,6 +3833,10 @@ skills["SupportRangedAttackTotem"] = { addSkillTypes = { SkillType.Trappable, SkillType.Mineable, SkillType.SummonsTotem, SkillType.ReservationBecomesCost, SkillType.TotemsAreBallistae, }, excludeSkillTypes = { SkillType.InbuiltTrigger, }, ignoreMinionTypes = true, + weaponTypes = { + ["Wand"] = true, + ["Bow"] = true, + }, statDescriptionScope = "gem_stat_descriptions", addFlags = { totem = true, @@ -4157,16 +3852,7 @@ skills["SupportRangedAttackTotem"] = { }, qualityStats = { Default = { - { "summon_totem_cast_speed_+%", 1 }, - }, - Alternate1 = { - { "totem_duration_+%", 1 }, - }, - Alternate2 = { - { "totem_range_+%", 1 }, - }, - Alternate3 = { - { "projectile_return_%_chance", 0.5 }, + { "summon_totem_cast_speed_+%", 0.5 }, }, }, constantStats = { @@ -4247,13 +3933,7 @@ skills["SupportReducedMana"] = { }, qualityStats = { Default = { - { "inspiration_charge_duration_+%", 1 }, - }, - Alternate1 = { - { "critical_strike_chance_+%", 1 }, - }, - Alternate2 = { - { "base_mana_cost_-%", 0.5 }, + { "base_mana_cost_-%", 0.25 }, }, }, constantStats = { @@ -4336,13 +4016,6 @@ skills["SupportRuthless"] = { Default = { { "attack_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_stun_duration_+%", 1 }, - }, - Alternate2 = { - { "attack_speed_+%", -1 }, - { "support_ruthless_big_hit_damage_+%_final", 1 }, - }, }, constantStats = { { "support_ruthless_big_hit_max_count", 3 }, @@ -4421,12 +4094,6 @@ skills["SupportBluntWeapon"] = { Default = { { "melee_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "dummy_stat_display_nothing", 0 }, - }, }, constantStats = { { "support_blunt_chance_to_trigger_shockwave_on_hit_%", 100 }, @@ -4499,12 +4166,6 @@ skills["SupportBluntWeaponShockwave"] = { Default = { { "melee_damage_+%", 0.5 }, }, - Alternate1 = { - { "base_skill_area_of_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_cooldown_speed_+%", 0.5 }, - }, }, stats = { "active_skill_base_radius_+", @@ -4578,13 +4239,7 @@ skills["SupportSpellTotem"] = { }, qualityStats = { Default = { - { "summon_totem_cast_speed_+%", 1 }, - }, - Alternate1 = { - { "totem_duration_+%", 1 }, - }, - Alternate2 = { - { "totem_range_+%", 1 }, + { "summon_totem_cast_speed_+%", 0.5 }, }, }, constantStats = { @@ -4658,13 +4313,7 @@ skills["SupportStun"] = { }, qualityStats = { Default = { - { "base_stun_duration_+%", 1.5 }, - }, - Alternate1 = { - { "chance_to_double_stun_duration_%", 0.2 }, - }, - Alternate2 = { - { "recover_%_life_when_stunning_an_enemy_permyriad", 5 }, + { "chance_to_double_stun_duration_%", 0.5 }, }, }, stats = { @@ -4746,10 +4395,6 @@ skills["SupportTrauma"] = { ["support_trauma_stun_duration_+%_per_trauma"] = { mod("EnemyStunDuration", "INC", nil, 0, 0, { type = "Multiplier", var = "TraumaStacks" }), }, - ["attack_speed_+%_per_trauma"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "TraumaStacks" }), - mod("SpeedPerTrauma", "INC", nil, ModFlag.Attack, 0), - }, ["support_trauma_base_duration_ms"] = { mod("TraumaDuration", "BASE", nil), div = 1000, @@ -4764,13 +4409,6 @@ skills["SupportTrauma"] = { Default = { { "base_stun_threshold_reduction_+%", 0.5 }, }, - Alternate1 = { - { "ignore_self_damage_from_trauma_chance_%", 0.5 }, - }, - Alternate2 = { - { "attack_speed_+%_per_trauma", 0.05 }, - { "trauma_strike_self_damage_per_trauma", 1 }, - }, }, stats = { "trauma_strike_self_damage_per_trauma", @@ -4836,13 +4474,6 @@ skills["SupportUrgentOrders"] = { Default = { { "warcry_speed_+%", 0.5 }, }, - Alternate1 = { - { "base_cooldown_speed_+%", -1 }, - { "skill_buff_effect_+%", 0.5 }, - }, - Alternate2 = { - { "minimum_power_from_quality", 0.5 }, - }, }, constantStats = { { "base_cooldown_modifier_ms", 2000 }, @@ -4914,12 +4545,6 @@ skills["SupportVolatility"] = { Default = { { "damage_+%", 0.5 }, }, - Alternate1 = { - { "non_damaging_ailment_effect_+%", 0.5 }, - }, - Alternate2 = { - { "base_stun_duration_+%", 1 }, - }, }, stats = { "minimum_attack_damage_+%_final_from_volatility_support", diff --git a/src/Data/Spectres.lua b/src/Data/Spectres.lua index a266c8c506..5f4cfe31fe 100644 --- a/src/Data/Spectres.lua +++ b/src/Data/Spectres.lua @@ -3062,7 +3062,7 @@ minions["Metadata/Monsters/Maligaro/SecretDesecrateMonster"] = { -- Trial Galecaller minions["Metadata/Monsters/LeagueUltimatum/Guard/GuardBowColdWeakSpectre"] = { name = "Trial Galecaller", - life = 3.06, + life = 2.47, armour = 0.3, fireResist = 0, coldResist = 0, @@ -3084,7 +3084,7 @@ minions["Metadata/Monsters/LeagueUltimatum/Guard/GuardBowColdWeakSpectre"] = { -- Trial Windchaser minions["Metadata/Monsters/LeagueUltimatum/Guard/GuardBowColdSpectre"] = { name = "Trial Windchaser", - life = 3.06, + life = 2.47, armour = 0.3, fireResist = 0, coldResist = 0, diff --git a/src/Export/Classes/GGPKData.lua b/src/Export/Classes/GGPKData.lua index 6b8dd44002..c63fd89e11 100644 --- a/src/Export/Classes/GGPKData.lua +++ b/src/Export/Classes/GGPKData.lua @@ -174,7 +174,7 @@ function GGPKClass:GetNeededFiles() "Data/StatInterpolationTypes.dat", "Data/Tags.dat", "Data/GemTags.dat", - "Data/gemitemvisualeffect.dat", + "Data/GemItemVisualEffect.dat", "Data/ItemVisualIdentity.dat", "Data/AchievementItems.dat", "Data/MultiPartAchievements.dat", @@ -182,7 +182,6 @@ function GGPKClass:GetNeededFiles() "Data/AlternatePassiveAdditions.dat", "Data/AlternatePassiveSkills.dat", "Data/AlternateTreeVersions.dat", - "Data/GrantedEffectQualityTypes.dat", "Data/GrantedEffectQualityStats.dat", "Data/GrantedEffectGroups.dat", "Data/AegisVariations.dat", @@ -214,7 +213,7 @@ function GGPKClass:GetNeededFiles() "Data/passiveskilltattootargetsets.dat", "Data/displayminionmonstertype.dat", "Data/tinctures.dat", - "Data/gemeffects.dat", + "Data/GemEffects.dat", "Data/actiontypes.dat", "Data/azmerilifescalingperlevel.dat", "Data/azmerifeaturerooms.dat", diff --git a/src/Export/Main.lua b/src/Export/Main.lua index d2f8075c83..5ab88bf243 100644 --- a/src/Export/Main.lua +++ b/src/Export/Main.lua @@ -172,6 +172,7 @@ function main:Init() self:LoadDatFiles() end end, nil) + self.controls.datSource:SelByValue(self.datSource.label, "label") self.controls.scripts = new("ButtonControl", nil, 160, 30, 100, 18, "Scripts >>", function() self:SetCurrentDat() @@ -386,7 +387,7 @@ function main:InitGGPK() return else local now = GetTime() - local ggpkPath = self.datSource.ggpkPath or self.datSource.path + local ggpkPath = self.datSource.ggpkPath or self.datSource.datFilePath if ggpkPath then self.ggpk = new("GGPKData", ggpkPath) ConPrintf("GGPK: %d ms", GetTime() - now) diff --git a/src/Export/Minions/Minions.txt b/src/Export/Minions/Minions.txt index a0937e436e..3eccb9d721 100644 --- a/src/Export/Minions/Minions.txt +++ b/src/Export/Minions/Minions.txt @@ -55,7 +55,10 @@ local minions, mod = ... #limit ActiveSkeletonLimit #emit -#monster Metadata/Monsters/Clone/RangerClone Clone +#monster Metadata/Monsters/Clone/MarauderClone Clone +#emit + +#monster Metadata/Monsters/Clone/MarauderCloneImmobile ArrowClone #emit #monster Metadata/Monsters/SummonedSpider/SummonedSpider SpiderMinion diff --git a/src/Export/Scripts/skills.lua b/src/Export/Scripts/skills.lua index 22112cf499..956ba858a4 100644 --- a/src/Export/Scripts/skills.lua +++ b/src/Export/Scripts/skills.lua @@ -117,6 +117,8 @@ local skillTypes = { "PreventHexTransfer", "MinionsAreUndamageable", "InnateTrauma", + "DualWieldRequiresDifferentTypes", + "NoVolley", } local wellShitIGotThoseWrong = { @@ -200,15 +202,27 @@ directiveTable.skill = function(state, args, out) ConPrintf('Unknown GE: "'..grantedId..'"') return end - local skillGem = dat("SkillGems"):GetRow("GrantedEffect", granted) or dat("SkillGems"):GetRow("SecondaryGrantedEffect", granted) + local gemEffect = dat("GemEffects"):GetRow("GrantedEffect", granted) or dat("GemEffects"):GetRow("GrantedEffect2", granted) + local skillGem + if gemEffect then + for gem in dat("SkillGems"):Rows() do + for _, variant in ipairs(gem.GemVariants) do + if gemEffect.Id == variant.Id then + skillGem = gem + break + end + end + if skillGem then break end + end + end local skill = { } state.skill = skill if skillGem and not state.noGem then - gems[skillGem] = true + gems[gemEffect] = true if granted.IsSupport then out:write('\tname = "', fullNameGems[skillGem.BaseItemType.Id] and skillGem.BaseItemType.Name or skillGem.BaseItemType.Name:gsub(" Support",""), '",\n') - if #skillGem.Description > 0 then - out:write('\tdescription = "', skillGem.Description:gsub('\n','\\n'), '",\n') + if #gemEffect.Description > 0 then + out:write('\tdescription = "', gemEffect.Description:gsub('\n','\\n'), '",\n') end else out:write('\tname = "', granted.ActiveSkill.DisplayName, '",\n') @@ -333,6 +347,9 @@ directiveTable.skill = function(state, args, out) local statMapOrder = {} for indx, levelRow in ipairs(dat("GrantedEffectsPerLevel"):GetRowList("GrantedEffect", granted)) do local statRow = statsPerLevel[indx] + if not statRow then + statRow = statsPerLevel[#statsPerLevel] + end local level = { extra = { }, statInterpolation = { }, cost = { } } level.level = levelRow.Level level.extra.levelRequirement = levelRow.PlayerLevelReq @@ -609,35 +626,37 @@ local out = io.open("../Data/Gems.lua", "w") out:write('-- This file is automatically generated, do not edit!\n') out:write('-- Gem data (c) Grinding Gear Games\n\nreturn {\n') for skillGem in dat("SkillGems"):Rows() do - if gems[skillGem] then - out:write('\t["', wellShitIGotThoseWrong[skillGem.BaseItemType.Id] or skillGem.BaseItemType.Id, '"] = {\n') - out:write('\t\tname = "', fullNameGems[skillGem.BaseItemType.Id] and skillGem.BaseItemType.Name or skillGem.BaseItemType.Name:gsub(" Support",""), '",\n') - out:write('\t\tgrantedEffectId = "', skillGem.GrantedEffect.Id, '",\n') - if skillGem.SecondaryGrantedEffect then - out:write('\t\tsecondaryGrantedEffectId = "', skillGem.SecondaryGrantedEffect.Id, '",\n') - end - if #skillGem.SecondarySupportName > 0 then - out:write('\t\tsecondaryEffectName = "', skillGem.SecondarySupportName, '",\n') - end - if skillGem.IsVaalGem then - out:write('\t\tvaalGem = true,\n') - end - local tagNames = { } - out:write('\t\ttags = {\n') - for _, tag in ipairs(skillGem.Tags) do - out:write('\t\t\t', tag.Id, ' = true,\n') - if #tag.Name > 0 then - table.insert(tagNames, tag.Name) + for _, gemEffect in ipairs(skillGem.GemVariants) do + if gems[gemEffect] then + out:write('\t["', wellShitIGotThoseWrong[skillGem.BaseItemType.Id] or skillGem.BaseItemType.Id, '"] = {\n') + out:write('\t\tname = "', fullNameGems[skillGem.BaseItemType.Id] and skillGem.BaseItemType.Name or skillGem.BaseItemType.Name:gsub(" Support",""), '",\n') + out:write('\t\tgrantedEffectId = "', gemEffect.GrantedEffect.Id, '",\n') + if gemEffect.GrantedEffect2 then + out:write('\t\tsecondaryGrantedEffectId = "', gemEffect.GrantedEffect2.Id, '",\n') + end + if #gemEffect.SecondarySupportName > 0 then + out:write('\t\tsecondaryEffectName = "', gemEffect.SecondarySupportName, '",\n') end + if skillGem.IsVaalGem then + out:write('\t\tvaalGem = true,\n') + end + local tagNames = { } + out:write('\t\ttags = {\n') + for _, tag in ipairs(gemEffect.Tags) do + out:write('\t\t\t', tag.Id, ' = true,\n') + if #tag.Name > 0 then + table.insert(tagNames, tag.Name) + end + end + out:write('\t\t},\n') + out:write('\t\ttagString = "', table.concat(tagNames, ", "), '",\n') + out:write('\t\treqStr = ', skillGem.Str, ',\n') + out:write('\t\treqDex = ', skillGem.Dex, ',\n') + out:write('\t\treqInt = ', skillGem.Int, ',\n') + local naturalMaxLevel = #dat("ItemExperiencePerLevel"):GetRowList("ItemExperienceType", skillGem.GemLevelProgression) + out:write('\t\tnaturalMaxLevel = ', naturalMaxLevel > 0 and naturalMaxLevel or 1, ',\n') + out:write('\t},\n') end - out:write('\t\t},\n') - out:write('\t\ttagString = "', table.concat(tagNames, ", "), '",\n') - out:write('\t\treqStr = ', skillGem.Str, ',\n') - out:write('\t\treqDex = ', skillGem.Dex, ',\n') - out:write('\t\treqInt = ', skillGem.Int, ',\n') - local naturalMaxLevel = #dat("ItemExperiencePerLevel"):GetRowList("ItemExperienceType", skillGem.GemLevelProgression) - out:write('\t\tnaturalMaxLevel = ', naturalMaxLevel > 0 and naturalMaxLevel or 1, ',\n') - out:write('\t},\n') end end out:write('}') diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index ea43a9012f..a8dc5e94fa 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -40,9 +40,6 @@ local skills, mod, flag, skill = ... "AnimatedWeapon", }, statMap = { - ["base_movement_velocity_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", nil) }), - }, ["attack_minimum_added_physical_damage"] = { mod("MinionModifier", "LIST", { mod = mod("PhysicalMin", "BASE", nil, 0, KeywordFlag.Attack) }), }, @@ -55,12 +52,12 @@ local skills, mod, flag, skill = ... ["attack_maximum_added_physical_damage_for_ethereal_blades"] = { mod("MinionModifier", "LIST", { mod = mod("PhysicalMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "ActorCondition", actor = "parent", var = "AnimatingLingeringBlades" }) }), }, - ["minion_global_maximum_added_lightning_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("LightningMax", "BASE", nil, 0, KeywordFlag.Attack) }), - }, ["number_of_animated_weapons_allowed"] = { mod("Multiplier:AnimatedWeapon", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, + ["quality_display_animate_weapon_is_gem"] = { + -- Display only + }, }, #mods @@ -80,6 +77,9 @@ local skills, mod, flag, skill = ... ["number_of_animated_weapons_allowed"] = { mod("Multiplier:VaalAnimatedWeapon", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, + ["quality_display_animate_weapon_is_gem"] = { + -- Display only + }, }, #mods @@ -139,14 +139,6 @@ local skills, mod, flag, skill = ... end end, statMap = { - ["non_damaging_ailments_as_though_damage_+%_final"] = { - mod("ShockAsThoughDealing", "MORE", nil), - mod("ChillAsThoughDealing", "MORE", nil), - mod("FreezeAsThoughDealing", "MORE", nil), - mod("ScorchAsThoughDealing", "MORE", nil), - mod("BrittleAsThoughDealing", "MORE", nil), - mod("SapAsThoughDealing", "MORE", nil), - }, ["projectiles_barrage"] = { }, }, @@ -163,7 +155,6 @@ local skills, mod, flag, skill = ... #skill BladeBlast #flags spell area -#baseMod skill("radius", 14) parts = { { name = "Blade Hits Per Cast", @@ -186,7 +177,6 @@ local skills, mod, flag, skill = ... #skill BladeTrap #flags attack area trap -#baseMod skill("radius", 16) #mods #skill ChargedAttack @@ -223,9 +213,14 @@ local skills, mod, flag, skill = ... }, ["blade_flurry_final_flurry_area_of_effect_+%"] = { mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 2 }) - } + }, + ["display_max_charged_attack_stats"] = { + mod("Multiplier:BladeFlurryMaxStages", "BASE", nil), + }, + ["quality_display_charged_attack_is_gem"] = { + --Display only + }, }, -#baseMod mod("Multiplier:BladeFlurryMaxStages", "BASE", 6) #baseMod skill("numStages", 1, { type = "Multiplier", var = "BladeFlurryStage" }) #baseMod skill("stackMultiplier", 2, { type = "SkillPart", skillPart = 2 }) #baseMod skill("radius", 14) @@ -265,9 +260,6 @@ local skills, mod, flag, skill = ... }, ["base_skill_show_average_damage_instead_of_dps"] = { }, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"] = { - mod("Damage", "INC", nil, 0, 0, { type = "SkillPart", skillPartList = {1, 2} }), - }, ["maximum_number_of_spinning_blades"] = { mod("Multiplier:BladeVortexMaxStages", "BASE", nil), }, @@ -275,6 +267,9 @@ local skills, mod, flag, skill = ... skill("hitFrequencyPerBlade", nil), div = 100, }, + ["quality_display_blade_vortex_is_gem"] = { + --Display only + }, }, #baseMod skill("radius", 15) #baseMod skill("hitFrequency", 0.6) @@ -306,6 +301,11 @@ local skills, mod, flag, skill = ... #skill Bladefall #flags spell area + statMap = { + ["quality_display_bladefall_is_gem"] = { + --Display only + }, + }, #baseMod skill("radius", 44) #baseMod skill("radiusLabel", "Volley Width:") #baseMod skill("radiusSecondary", 12) @@ -327,14 +327,6 @@ local skills, mod, flag, skill = ... activeSkill.skillData.dpsMultiplier = output.ProjectileCount end end, - statMap = { - ["blast_rain_damage_+%_vs_distant_enemies"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Projectile), 0, { type = "DistanceRamp", ramp = {{35,0},{70,1}} }) - }, - ["blast_rain_area_of_effect_+%"] = { - -- Only affects primary area for overlaps - } - }, #baseMod skill("radius", 24) #baseMod flag("OneShotProj") #mods @@ -342,7 +334,7 @@ local skills, mod, flag, skill = ... #skill BlinkArrow #flags attack projectile minion duration minionList = { - "Clone", + "ArrowClone", }, #baseMod skill("minionUseBowAndQuiver", true) #mods @@ -350,10 +342,6 @@ local skills, mod, flag, skill = ... #skill BloodRage #flags spell duration statMap = { - ["life_leech_from_physical_attack_damage_permyriad"] = { - mod("PhysicalDamageLifeLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), - div = 100, - }, ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"] = { mod("PhysicalDegen", "BASE", nil, 0, 0, { type = "PerStat", stat = "Life", div = 1}, { type = "GlobalEffect", effectType = "Buff" }), div = 6000, @@ -449,7 +437,7 @@ local skills, mod, flag, skill = ... #skill CobraLash #flags attack projectile statMap = { - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"] = { + ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "PerStat", stat = "ChainRemaining" }, { type = "SkillType", skillType = SkillType.Projectile }) }, }, @@ -562,7 +550,6 @@ local skills, mod, flag, skill = ... skill("FireMax", nil, { type = "SkillPart", skillPart = 1 }), }, }, -#baseMod skill("radius", 22) #baseMod skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }) parts = { { @@ -589,7 +576,6 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }) -#baseMod skill("radius", 24) parts = { { name = "Spell", @@ -623,6 +609,9 @@ local skills, mod, flag, skill = ... ["dual_strike_damage_+%_final_against_enemies_on_full_life"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "ActorCondition", actor = "enemy", var = "FullLife" }) }, + ["quality_display_dual_strike_is_gem"] = { + -- Display only + }, }, #mods @@ -655,9 +644,8 @@ local skills, mod, flag, skill = ... }, }, statMap = { - ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"] = { + ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ElementalHitAilmentOnEnemy" }), - mult = 10, }, ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"] = { }, @@ -671,6 +659,9 @@ local skills, mod, flag, skill = ... flag("DealNoLightning", { type = "SkillPart", skillPartList = { 1, 2 } }), flag("DealNoLightning", { type = "SkillPart", skillPartList = { 3, 4 } }), }, + ["quality_display_elemental_hit_is_gem"] = { + -- Display only + }, }, #baseMod mod("AreaOfEffect", "MORE", 224, 0, 0, { type = "ActorCondition", actor = "enemy", varList = { "Ignited", "Scorched" } }, { type = "SkillPart", skillPart = 2 }) #baseMod mod("AreaOfEffect", "MORE", 224, 0, 0, { type = "ActorCondition", actor = "enemy", varList = { "Chilled", "Frozen", "Brittle" } }, { type = "SkillPart", skillPart = 4 }) @@ -691,9 +682,6 @@ local skills, mod, flag, skill = ... ["tethered_enemies_take_attack_projectile_damage_taken_+%"] = { mod("ProjectileAttackDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Ensnared", effectStackVar = "EnsnareStackCount", effectStackLimit = 1 }), }, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Ensnared", effectStackVar = "EnsnareStackCount", effectStackLimit = 1 }), - }, }, #mods @@ -826,6 +814,9 @@ local skills, mod, flag, skill = ... mod("Multiplier:ExplosiveArrowMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), mod("ExplosiveArrowMaxFuseCount", "BASE", nil), }, + ["quality_display_explosive_arrow_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 15) #baseMod skill("showAverage", true, { type = "SkillPart", skillPartList = { 1, 2 } }) @@ -834,7 +825,6 @@ local skills, mod, flag, skill = ... #skill ExplosiveConcoction #flags attack area projectile -#baseMod skill("radius", 18) parts = { { name = "No Flasks", @@ -907,7 +897,7 @@ local skills, mod, flag, skill = ... return math.min(damagingAreaRadius * damagingAreaRadius / (areaSpreadRadius * areaSpreadRadius), 1) end local enemyRadius = skillModList:Override(skillCfg, "EnemyRadius") or skillModList:Sum("BASE", skillCfg, "EnemyRadius") - local waveRadius = output.AreaOfEffectRadiusSecondary + local waveRadius = output.AreaOfEffectRadiusTertiary local fullRadius = output.AreaOfEffectRadius local overlapChance = hitChance(enemyRadius, waveRadius, fullRadius) output.OverlapChance = overlapChance * 100 @@ -948,11 +938,13 @@ local skills, mod, flag, skill = ... ["shrapnel_trap_number_of_secondary_explosions"] = { mod("SmallExplosions", "BASE", nil), }, + ["quality_display_explosive_trap_is_gem"] = { + -- Display only + }, }, -#baseMod skill("radius", 12) #baseMod skill("radiusLabel", "Primary Explosion:") -#baseMod skill("radiusSecondary", 7) -#baseMod skill("radiusSecondaryLabel", "Secondary Explosion:") +#baseMod skill("radiusSecondaryLabel", "Secondary Area:") +#baseMod skill("radiusTertiaryLabel", "Secondary Explosion:") #mods #skill FireTrap @@ -1051,6 +1043,12 @@ local skills, mod, flag, skill = ... ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "FrenzyCharge" }), }, + ["quality_display_frenzy_is_gem"] = { + -- Display only + }, + ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"] = { + -- Display only + }, }, #mods @@ -1094,12 +1092,6 @@ local skills, mod, flag, skill = ... ["base_evasion_rating"] = { mod("Evasion", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["avoid_all_elemental_status_%"] = { - mod("AvoidElementalAilments", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["avoid_chaos_damage_%"] = { - mod("AvoidChaosDamageChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, #baseMod skill("radius", 40) #mods @@ -1126,15 +1118,6 @@ local skills, mod, flag, skill = ... ["base_movement_velocity_+%"] = { mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["summon_totem_cast_speed_+%"] = { - mod("TotemPlacementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["base_projectile_speed_+%"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["buff_time_passed_+%_only_buff_category"] = { - mod("BuffExpireFaster", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, #baseMod skill("radius", 40) #mods @@ -1164,13 +1147,6 @@ local skills, mod, flag, skill = ... ["hatred_aura_cold_damage_+%_final"] = { mod("ColdDamage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["chill_and_freeze_duration_+%"] = { - mod("EnemyChillDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - mod("EnemyFreezeDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["movement_velocity_+%_on_chilled_ground"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, {type = "Condition", var = "OnChilledGround"}) - } }, #baseMod skill("radius", 40) #mods @@ -1199,21 +1175,15 @@ local skills, mod, flag, skill = ... ["scorpion_minion_maximum_added_physical_damage"] = { mod("MinionModifier", "LIST", { type = "HeraldOfAgonySpiderPlated", mod = mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "VirulenceStack", limitVar = "VirulenceStacksMax", limitActor = "parent" })}) }, - ["active_skill_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), + ["quality_display_herald_of_agony_is_gem"] = { + -- Display only }, - ["withered_on_hit_for_2_seconds_%_chance"] = { - flag("Condition:CanWither"), - } }, #mods #skill HeraldOfIce #flags cast area statMap = { - ["herald_of_ice_cold_damage_+%"] = { - mod("ColdDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["spell_minimum_added_cold_damage"] = { mod("ColdMin", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -1226,11 +1196,7 @@ local skills, mod, flag, skill = ... ["attack_maximum_added_cold_damage"] = { mod("ColdMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "GlobalEffect", effectType = "Buff" }), }, - ["skill_buff_grants_chance_to_freeze_%"] = { - mod("FreezeChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - } }, -#baseMod skill("radius", 12) #mods #skill IceShot @@ -1255,11 +1221,8 @@ local skills, mod, flag, skill = ... #skill IceTrap #flags spell trap area -#baseMod skill("radius", 18) #baseMod skill("radiusLabel", "First Explosion:") -#baseMod skill("radiusSecondary", 9) #baseMod skill("radiusSecondaryLabel", "Second Explosion:") -#baseMod skill("radiusTertiary", 6) #baseMod skill("radiusTertiaryLabel", "Third Explosion:") #mods @@ -1273,6 +1236,11 @@ local skills, mod, flag, skill = ... name = "Both slashes", }, }, + statMap = { + ["attack_speed_+%_if_changed_stance_recently"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Condition", var = "ChangedStanceRecently" }), + }, + }, #baseMod skill("radius", 38) #baseMod skill("dpsMultiplier", 2, { type = "SkillPart", skillPart = 2 }) #mods @@ -1310,6 +1278,11 @@ local skills, mod, flag, skill = ... #skill LightningArrow #flags attack projectile + statMap = { + ["quality_display_lightning_arrow_is_gem"] = { + -- Display only + }, + }, #baseMod skill("radius", 18) #mods @@ -1333,6 +1306,12 @@ local skills, mod, flag, skill = ... }, ["base_skill_show_average_damage_instead_of_dps"] = { }, + ["quality_display_lightning_arrow_is_gem"] = { + -- Display only + }, + ["quality_display_base_additional_arrows_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 18) #mods @@ -1351,11 +1330,6 @@ local skills, mod, flag, skill = ... projectile = true, }, }, - statMap = { - ["projectile_base_number_of_targets_to_pierce"] = { - mod("PierceCount", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - }, #mods #skill VaalLightningStrike @@ -1382,7 +1356,7 @@ local skills, mod, flag, skill = ... #skill MirrorArrow #flags attack projectile minion duration minionList = { - "Clone", + "ArrowClone", }, #baseMod skill("minionUseBowAndQuiver", true) #mods @@ -1407,12 +1381,6 @@ local skills, mod, flag, skill = ... #skill CorrosiveShroud #flags spell area statMap = { - ["plague_bearer_movement_speed_+%_while_infecting"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerInfecting" }), - }, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"] = { - mod("DotMultiplier", "BASE", nil, 0, KeywordFlag.Poison, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerInfecting" }), - }, ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"] = { mod("Damage", "MORE", nil, 0, KeywordFlag.Poison, { type = "GlobalEffect", effectType = "Buff", modCond = "PlagueBearerIncubating" }), }, @@ -1438,9 +1406,6 @@ local skills, mod, flag, skill = ... ["maximum_added_physical_damage_taken"] = { mod("SelfPhysicalMax", "BASE", nil, ModFlag.Hit, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, }, #baseMod skill("debuff", true) #mods @@ -1454,12 +1419,6 @@ local skills, mod, flag, skill = ... ["skill_buff_grants_critical_strike_chance_+%"] = { mod("CritChance", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["auras_grant_damage_+%_to_you_and_your_allies"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["precision_grants_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, }, #baseMod skill("radius", 40) #mods @@ -1501,6 +1460,12 @@ local skills, mod, flag, skill = ... ["prismatic_rain_beam_frequency_+%"] = { mod("StormRainBeamFrequency", "INC", nil), }, + ["number_of_allowed_storm_arrows"] = { + -- Display only + }, + ["quality_display_storm_rain_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 10, { type = "SkillPart", skillPart = 1 }) #baseMod skill("radiusLabel", "Arrow Explosion:", { type = "SkillPart", skillPart = 1 }) @@ -1511,8 +1476,8 @@ local skills, mod, flag, skill = ... #skill Puncture #flags attack melee projectile duration statMap = { - ["puncture_bleeding_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, KeywordFlag.Bleed), + ["quality_display_active_skill_bleed_damage_final_is_gem"] = { + -- Display only }, }, #baseMod skill("bleedIsSkillEffect", true) @@ -1527,12 +1492,6 @@ local skills, mod, flag, skill = ... ["base_maximum_cold_damage_resistance_%"] = { mod("ColdResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_freeze_%"] = { - mod("AvoidFreeze", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_reduce_enemy_cold_resistance_%"] = { - mod("ColdPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -1802,6 +1761,9 @@ local skills, mod, flag, skill = ... ["seismic_trap_frequency_+%"] = { mod("SeismicPulseFrequency", "INC", nil), }, + ["quality_display_phys_cascade_trap_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 18) #baseMod skill("radiusLabel", "Large Burst:") @@ -1824,6 +1786,11 @@ local skills, mod, flag, skill = ... #skill SiegeBallista #flags attack projectile totem ballista + statMap = { + ["attack_speed_+%_per_maximum_totem"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "ActiveTotemLimit" }), + }, + }, #baseMod flag("ProjectileRain") #mods @@ -1833,9 +1800,6 @@ local skills, mod, flag, skill = ... ["base_movement_velocity_+%"] = { mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["skill_buff_grants_attack_and_cast_speed_+%"] = { - mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, #baseMod skill("radius", 18) #mods @@ -2006,6 +1970,8 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }) +#baseMod skill("radiusLabel", "Orb Explosion:") +#baseMod skill("radiusSecondaryLabel", "Corpse Explosion:") parts = { { name = "Spell", @@ -2018,16 +1984,10 @@ local skills, mod, flag, skill = ... cast = true, }, }, -#baseMod skill("radius", 15) #mods #skill WhirlingBlades #flags attack melee - statMap = { - ["whirling_blades_evasion_rating_+%_while_moving"] = { - mod("Evasion", "INC", nil, 0, 0, { type = "Condition", var = "Moving" } ) - }, - }, #mods #skill WildStrike @@ -2092,6 +2052,9 @@ local skills, mod, flag, skill = ... ["slither_wither_stacks"] = { flag("Condition:CanWither"), }, + ["quality_display_withering_step_is_gem"] = { + -- Display only + }, }, #baseMod flag("Condition:CanBeElusive", { type = "GlobalEffect", effectType = "Buff" }) #baseMod skill("radius", 26) @@ -2121,12 +2084,25 @@ local skills, mod, flag, skill = ... }, #mods +#skill ChannelledSnipe +#flags attack projectile channelRelease + statMap = { + ["snipe_max_stacks"] = { + mod("Multiplier:SnipeStagesMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + ["quality_display_snipe_is_gem"] = { + -- Display only + }, + }, +#mods + +#skill ChannelledSnipeSupport +#baseMod flag("TriggeredBySnipe") +#mods + #skill TemporalRift #flags spell statMap = { - ["chronomancer_buff_cooldown_speed_+%"] = { - mod("CooldownRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) - }, ["debuff_time_passed_+%"] = { mod("SelfDebuffExpirationRate", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) }, @@ -2177,25 +2153,9 @@ local skills, mod, flag, skill = ... mod("MaxLifeLeechRate", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), div = 60, }, - ["remora_link_grants_damage_+%_when_on_full_life"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "FullLife" }) - }, }, #mods -#skill ChannelledSnipe -#flags attack projectile channelRelease - statMap = { - ["snipe_max_stacks"] = { - mod("Multiplier:SnipeStagesMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - }, -#mods - -#skill ChannelledSnipeSupport -#baseMod flag("TriggeredBySnipe") -#mods - #skill QuickstepHardMode #flags movement travel #mods diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index ae65853f42..170f1b65ef 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -42,10 +42,37 @@ local skills, mod, flag, skill = ... #baseMod mod("GuardAbsorbLimit", "BASE", 100, 0, 0, { type = "PercentStat", stat = "ManaUnreserved", percentVar = "ArcaneCloakConsumedMana" }, { type = "GlobalEffect", effectType = "Guard", unscalable = true }) #mods +#skill BrandSupport +#flags spell duration brand + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "Speed", "BrandActivationFrequency") / 100) / activeSkill.skillModList:More(activeSkill.skillCfg, "BrandActivationFrequency") + end, +#mods + +#skill SupportBrandSupport + addFlags = { + brand = true, + }, + statMap = { + ["support_brand_damage_+%_final"] = { + mod("TriggeredDamage", "MORE", nil), + }, + ["support_brand_area_of_effect_+%_final"] = { + mod("AreaOfEffect", "MORE", nil), + }, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"] = { + mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "Condition", var = "TargetingBrandedEnemy"}), + }, + }, + addSkillTypes = { SkillType.Brand, }, +#baseMod skill("triggeredByBrand", true) +#mods + #skill ArcticBreath #flags spell area projectile duration -#baseMod skill("radius", 12) #baseMod skill("dotIsArea", true) +#baseMod skill("radiusLabel", "Projectile Impact:") +#baseMod skill("radiusSecondaryLabel", "DoT Area:") #mods #skill CataclysmSigil @@ -57,7 +84,6 @@ local skills, mod, flag, skill = ... ["base_skill_show_average_damage_instead_of_dps"] = { }, }, -#baseMod skill("radius", 22) #baseMod skill("radiusSecondary", 8) #mods @@ -77,9 +103,6 @@ local skills, mod, flag, skill = ... ["mana_granted_when_killed"] = { mod("SelfManaOnKill", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, }, #baseMod skill("debuff", true) #mods @@ -246,7 +269,6 @@ local skills, mod, flag, skill = ... mod("ProjectileSpeed", "MORE", nil) }, }, -#baseMod skill("radius", 18) #baseMod skill("strikeInterval", 0.15) #baseMod skill("projectileSpeed", 40) #baseMod skill("duration", 2) @@ -284,7 +306,6 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("debuff", true) -#baseMod skill("radius", 21) #mods #skill SupportDarkRitual Bane @@ -399,18 +420,12 @@ local skills, mod, flag, skill = ... #skill BoneOffering #flags spell duration statMap = { - ["cast_speed_+%_granted_from_skill"] = { - mod("Speed", "INC", nil, ModFlag.Cast, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["monster_base_block_%"] = { mod("BlockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, ["base_spell_block_%"] = { mod("SpellBlockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["minion_recover_X_life_on_block"] = { - mod("LifeOnBlock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, #baseMod skill("buffMinions", true) #baseMod skill("buffNotPlayer", true) @@ -432,12 +447,6 @@ local skills, mod, flag, skill = ... mod("ManaRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), div = 60, }, - ["damage_+%_on_full_mana"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "FullMana" }, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["flask_mana_to_recover_+%"] = { - mod("FlaskManaRecovery", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -456,17 +465,18 @@ local skills, mod, flag, skill = ... #skill ColdSnap #flags spell area #baseMod skill("showAverage", false) -#baseMod skill("radius", 16) #baseMod skill("dotIsArea", true) +#baseMod skill("radiusLabel", "Initial Burst:") +#baseMod skill("radiusSecondaryLabel", "Initial Chilled Ground:") +#baseMod skill("radiusTertiaryLabel", "Final Chilled Ground:") #mods #skill VaalColdSnap #flags spell area duration #baseMod skill("dotIsArea", true) -#baseMod skill("radius", 20) -#baseMod skill("radiusLabel", "Initial Area:") -#baseMod skill("radiusSecondary", 36) -#baseMod skill("radiusSecondaryLabel", "Final Area:") +#baseMod skill("radiusLabel", "Initial Burst:") +#baseMod skill("radiusSecondaryLabel", "Initial Chilled Ground:") +#baseMod skill("radiusTertiaryLabel", "Final Chilled Ground:") #mods #skill Conductivity @@ -490,16 +500,10 @@ local skills, mod, flag, skill = ... #skill Contagion #flags spell area duration #baseMod skill("debuff", true) -#baseMod skill("radius", 17) #mods #skill ConversionTrap #flags spell duration trap - statMap = { - ["conversation_trap_converted_enemy_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) } ) - } - }, #mods #skill Convocation @@ -523,6 +527,9 @@ local skills, mod, flag, skill = ... ["disintegrate_base_radius_+_per_intensify"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "Intensity", limitVar = "IntensityLimit" }), }, + ["quality_display_disintegrate_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 10) #mods @@ -562,6 +569,9 @@ local skills, mod, flag, skill = ... ["skeletal_chains_no_minions_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 1 }), }, + ["quality_display_dark_pact_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 26) #mods @@ -569,9 +579,6 @@ local skills, mod, flag, skill = ... #skill Despair #flags spell curse area duration hex statMap = { - ["degen_effect_+%"] = { - mod("DamageTakenOverTime", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, ["base_chaos_damage_resistance_%"] = { mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, @@ -586,17 +593,31 @@ local skills, mod, flag, skill = ... #baseMod skill("radius", 22) #mods +#skill DestructiveLink +#flags spell duration + statMap = { + ["critical_link_grants_base_critical_strike_multiplier_+"] = { + mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["critical_link_grants_accuracy_rating_+%"] = { + mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), + }, + ["display_critical_link_overrides_main_hand_critical_strike_chance"] = { + flag("MainHandCritIsEqualToParent", { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "MainHandAttack" }), + }, + }, +#mods + #skill Discharge #flags spell area statMap = { - ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"] = { + ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"] = { mod("AreaOfEffect", "MORE", nil, ModFlag.Spell, 0, { type = "Multiplier", var = "RemovableTotalCharges" }), }, ["active_skill_ailment_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Ailment), }, }, -#baseMod skill("radius", 30) #mods #skill Discipline @@ -608,12 +629,6 @@ local skills, mod, flag, skill = ... ["base_maximum_energy_shield"] = { mod("EnergyShield", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["damage_+%_on_full_energy_shield"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "FullEnergyShield" }, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["energy_shield_delay_-%"] = { - mod("EnergyShieldRechargeFaster", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - } }, #baseMod skill("radius", 40) #mods @@ -698,15 +713,6 @@ local skills, mod, flag, skill = ... ["storm_blade_maximum_lightning_damage"] = { mod("EnergyBladeMaxLightning", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, - ["storm_blade_quality_local_critical_strike_chance_+%"] = { - mod("EnergyBladeCritChance", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["storm_blade_quality_chance_to_shock_%"] = { - mod("EnergyBladeShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"] = { - mod("EnergyBladeConvertToChaos", "BASE", nil, 0, KeywordFlag.Attack, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, }, #mods @@ -743,6 +749,12 @@ local skills, mod, flag, skill = ... ["freezing_pulse_damage_+%_final_at_long_range"] = { mod("EyeOfWinterRamp", "BASE", nil) }, + ["quality_display_eye_of_winter_is_gem"] = { + -- Display only + }, + ["quality_display_freezing_pulse_damage_at_long_range_is_gem"] = { + -- Display only + }, }, #mods @@ -758,12 +770,6 @@ local skills, mod, flag, skill = ... area = true, }, }, - statMap = { - ["fireball_base_radius_up_to_+_at_longer_ranges"] = { - mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "DistanceRamp", ramp = {{0,0},{50,1}} }) - }, - }, -#baseMod skill("radius", 9) #mods #skill VaalFireballSpiralNova @@ -778,12 +784,6 @@ local skills, mod, flag, skill = ... area = true, }, }, - statMap = { - ["fireball_base_radius_up_to_+_at_longer_ranges"] = { - mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "DistanceRamp", ramp = {{0,0},{50,1}} }) - }, - }, -#baseMod skill("radius", 9) #mods #skill Firestorm @@ -805,10 +805,9 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("showAverage", false, { type = "SkillPart", skillPart = 1 }) -#baseMod skill("radius", 25) -#baseMod skill("radiusLabel", "Area in which fireballs fall:") -#baseMod skill("radiusSecondary", 13) -#baseMod skill("radiusSecondaryLabel", "Area of fireball explosion:") +#baseMod skill("radiusLabel", "Fireball explosion:") +#baseMod skill("radiusSecondary", 25) +#baseMod skill("radiusSecondaryLabel", "Area in which fireballs fall:") #mods #skill VaalFirestorm @@ -820,19 +819,13 @@ local skills, mod, flag, skill = ... }, #baseMod skill("dotIsArea", true) #baseMod flag("dotIsBurningGround") -#baseMod skill("radius", 20) -#baseMod skill("radiusLabel", "Area in which fireballs fall:") -#baseMod skill("radiusSecondary", 13) -#baseMod skill("radiusSecondaryLabel", "Area of fireball explosion:") +#baseMod skill("radiusLabel", "Area of fireball explosion:") +#baseMod skill("radiusSecondary", 20) +#baseMod skill("radiusSecondaryLabel", "Area in which fireballs fall:") #mods #skill FlameDash #flags spell area duration - statMap = { - ["flame_dash_burning_damage_+%_final"] = { - mod("FireDamage", "MORE", nil, 0, KeywordFlag.FireDot), - } - }, #baseMod skill("dotIsArea", true) #baseMod flag("dotIsBurningGround") #mods @@ -861,15 +854,18 @@ local skills, mod, flag, skill = ... ["wall_maximum_length"] = { skill("radius", nil), }, - ["firewall_applies_%_fire_exposure"] = { - mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }), - }, ["flame_wall_minimum_added_fire_damage"] = { mod("FireMin", "BASE", nil, ModFlag.Projectile, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Flame Wall", effectCond = "FlameWallAddedDamage" }), }, ["flame_wall_maximum_added_fire_damage"] = { mod("FireMax", "BASE", nil, ModFlag.Projectile, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Flame Wall", effectCond = "FlameWallAddedDamage" }), - } + }, + ["quality_display_firewall_is_gem"] = { + -- Display only + }, + ["quality_display_alt_flame_wall_is_gem"] = { + -- Display only + }, }, #baseMod skill("radiusLabel", "Flame Wall Length:") #baseMod skill("dotIsArea", true) @@ -888,6 +884,9 @@ local skills, mod, flag, skill = ... ["flame_surge_ignite_damage_as_burning_ground_damage_%"] = { mod("IgniteDpsAsBurningGround", "MAX", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, + ["quality_display_flame_whip_is_gem+"] = { + -- Display only + }, }, #baseMod skill("radius", 30) #mods @@ -915,6 +914,9 @@ local skills, mod, flag, skill = ... ["vaal_flameblast_radius_+_per_stage"] = { mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }), }, + ["quality_display_flameblast_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 2) #baseMod mod("PvpTvalueMultiplier", "MORE", 100, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }) @@ -1054,13 +1056,9 @@ local skills, mod, flag, skill = ... #flags spell projectile preDamageFunc = function(activeSkill, output) activeSkill.skillModList:NewMod("Damage", "MORE", -50, "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,0},{60*output.ProjectileSpeedMod,1}} }) - activeSkill.skillModList:NewMod("Damage", "MORE", activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "FreezingPulseRamp"), "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,0},{60*output.ProjectileSpeedMod,1}} }) activeSkill.skillModList:NewMod("EnemyFreezeChance", "BASE", 25, "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,1},{15*output.ProjectileSpeedMod,0}} }) end, statMap = { - ["freezing_pulse_damage_+%_final_at_long_range"] = { - mod("FreezingPulseRamp", "BASE", nil) - }, ["display_what_freezing_pulse_does"] = { }, }, @@ -1068,26 +1066,15 @@ local skills, mod, flag, skill = ... #skill FrostBomb #flags spell area duration - preDamageFunc = function(activeSkill, output) - local duration = math.floor(activeSkill.skillData.duration * output.DurationMod * 10) - activeSkill.skillModList:NewMod("Damage", "MORE", activeSkill.skillData.frostBombDamagePer100ms * duration, "Skill:FrostBomb", ModFlag.Hit) - end, statMap = { ["base_cold_damage_resistance_%"] = { mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), }, - ["frost_bomb_damage_+%_final_per_100ms_duration"] = { - skill("frostBombDamagePer100ms", nil), - }, ["life_regeneration_rate_+%"] = { mod("LifeRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), }, - ["energy_shield_regeneration_rate_+%"] = { - mod("EnergyShieldRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Frost Bomb" }), - }, }, #baseMod skill("debuffSecondary", true) -#baseMod skill("radius", 24) #mods #skill FrostGlobe @@ -1153,9 +1140,6 @@ local skills, mod, flag, skill = ... } }, statMap = { - ["skill_buff_grants_shock_duration_+%"] = { - mod("EnemyShockDuration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Multiplier", var = "ShockEffect", div = 5, actor = "enemy" }), }, @@ -1170,6 +1154,14 @@ local skills, mod, flag, skill = ... skill("repeatFrequency", nil, { type = "SkillPart", skillPart = 2 }), div = 1000, }, + ["base_chance_to_shock_%_from_skill"] = { + mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Galvanic Field" }), + }, + ["base_skill_show_average_damage_instead_of_dps"] = { + }, + ["quality_display_shock_chance_from_skill_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 19) #mods @@ -1193,11 +1185,6 @@ local skills, mod, flag, skill = ... #skill FrostBolt #flags spell projectile - statMap = { - ["frostbolt_projectile_speed_+%_final"] = { - mod("ProjectileSpeed", "MORE", nil), - }, - }, #mods #skill GlacialCascade @@ -1257,6 +1244,10 @@ local skills, mod, flag, skill = ... mod("HydroSphereFrequency", "INC", nil), }, ["water_sphere_does_weird_conversion_stuff"] = { + -- Display Only + }, + ["quality_display_hydrosphere_is_gem"] = { + -- Display Only }, }, #baseMod skill("radius", 23) @@ -1274,6 +1265,9 @@ local skills, mod, flag, skill = ... ["chaos_damage_resisted_by_lowest_resistance"] = { flag("ChaosDamageUsesLowestResistance"), }, + ["hexblast_display_innate_remove_hex_100%_chance"] = { + -- Display Only + }, }, parts = { { @@ -1285,7 +1279,6 @@ local skills, mod, flag, skill = ... area = true, }, }, -#baseMod skill("radius", 29) #baseMod skill("showAverage", true) #mods @@ -1295,9 +1288,6 @@ local skills, mod, flag, skill = ... activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "HeraldStormFrequency") / 100) end, statMap = { - ["herald_of_thunder_lightning_damage_+%"] = { - mod("LightningDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["spell_minimum_added_lightning_damage"] = { mod("LightningMin", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -1314,11 +1304,11 @@ local skills, mod, flag, skill = ... skill("repeatFrequency", nil), div = 1000, }, - ["skill_buff_grants_damage_+%"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + ["herald_of_thunder_bolt_frequency_+%"] = { + mod("HeraldStormFrequency", "INC", nil), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + ["quality_display_herald_of_thunder_is_gem"] = { + -- Display Only }, }, #baseMod skill("radius", 32) @@ -1327,17 +1317,10 @@ local skills, mod, flag, skill = ... #skill IceNova #flags spell area - statMap = { - ["damage_+%_vs_chilled_enemies"] = { - mod("Damage", "INC", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Chilled" }), - }, - }, -#baseMod skill("radius", 30) #mods #skill VaalIceNova #flags spell area -#baseMod skill("radius", 26) #mods #skill IceSpear @@ -1428,6 +1411,9 @@ local skills, mod, flag, skill = ... ["quality_display_incinerate_is_gem_ingite"] = { --Display Only }, + ["quality_display_incinerate_is_gem_stages"] = { + --Display Only + }, }, #baseMod skill("radius", 25) #baseMod skill("radiusLabel", "Flame Length:") @@ -1447,11 +1433,6 @@ local skills, mod, flag, skill = ... area = true, }, }, - statMap = { - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "StatThreshold", stat = "ForkedCount", threshold = 1 }), - }, - }, #baseMod skill("radius", 14) #mods @@ -1462,12 +1443,8 @@ local skills, mod, flag, skill = ... flag("SpellDamageAppliesToAttacks"), mod("ImprovedSpellDamageAppliesToAttacks", "MAX", nil), }, - ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"] = { - flag("CastSpeedAppliesToAttacks"), - mod("ImprovedCastSpeedAppliesToAttacks", "MAX", nil) - }, - ["mana_gain_per_target"] = { - mod("ManaOnHit", "BASE", nil), + ["quality_display_spell_damage_to_attack_damage_is_gem"] = { + --Display Only }, }, #mods @@ -1625,6 +1602,9 @@ local skills, mod, flag, skill = ... ["lightning_tower_trap_number_of_beams"] = { mod("MaximumWaves", "BASE", nil), }, + ["quality_display_lightning_tower_trap_is_gem"] = { + -- Display Only + }, }, #baseMod skill("radius", 24) #baseMod skill("radiusLabel", "Targeting Area:") @@ -1638,8 +1618,10 @@ local skills, mod, flag, skill = ... ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"] = { mod("Damage", "MORE", nil, 0, KeywordFlag.Hit, { type = "Multiplier", var = "ShockEffect", div = 5, actor = "enemy" }), }, + ["quality_display_lightning_conduit_is_gem"] = { + -- Display Only + }, }, -#baseMod skill("radius", 60) #baseMod skill("radiusLabel", "Targeting range:") #mods @@ -1662,7 +1644,6 @@ local skills, mod, flag, skill = ... base = 100 }, }, -#baseMod skill("radius", 22) #mods #skill LightningTrap @@ -1703,9 +1684,6 @@ local skills, mod, flag, skill = ... ["delirium_skill_effect_duration_+%"] = { mod("Duration", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_ailment_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Ailment, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -1717,6 +1695,9 @@ local skills, mod, flag, skill = ... mod("Multiplier:ManabondUnreservedMana", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaUnreserved" }), div = 100, }, + ["quality_display_manabond_is_gem"] = { + -- Display Only + }, }, #baseMod skill("radius", 18) #baseMod skill("radiusLabel", "Circle area:") @@ -1758,10 +1739,26 @@ local skills, mod, flag, skill = ... #skill PowerSiphon #flags attack projectile + statMap = { + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), + }, + ["power_siphon_base_fire_at_x_targets"] = { + flag("OneShotProj") + }, + }, #mods #skill VaalPowerSiphon #flags attack projectile + statMap = { + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"] = { + mod("CritChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), + }, + ["power_siphon_fire_at_all_targets"] = { + -- Display Only + }, + }, #baseMod flag("OneShotProj") #mods @@ -1779,29 +1776,22 @@ local skills, mod, flag, skill = ... ["sanctify_wave_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, + ["quality_display_sanctify_is_gem"] = { + -- Display Only + }, }, #baseMod skill("radius", 18) +#baseMod skill("radiusLabel", "Initial Hit:") #baseMod skill("radiusSecondary", 50) +#baseMod skill("radiusSecondaryLabel", "Shockwave:") #mods #skill Purity #flags spell aura area statMap = { - ["base_maximum_fire_damage_resistance_%"] = { - mod("FireResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_maximum_cold_damage_resistance_%"] = { - mod("ColdResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_maximum_lightning_damage_resistance_%"] = { - mod("LightningResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, ["base_resist_all_elements_%"] = { mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["reduce_enemy_elemental_resistance_%"] = { - mod("ElementalPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, ["immune_to_status_ailments"] = { flag("ElementalAilmentImmune", { type = "GlobalEffect", effectType = "Aura"}), }, @@ -1818,12 +1808,6 @@ local skills, mod, flag, skill = ... ["base_maximum_lightning_damage_resistance_%"] = { mod("LightningResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_shock_%"] = { - mod("AvoidShock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_reduce_enemy_lightning_resistance_%"] = { - mod("LightningPenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -1858,9 +1842,6 @@ local skills, mod, flag, skill = ... ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), }, - ["damage_+%_if_firing_atleast_7_projectiles"] = { - mod("Damage", "INC", nil, 0, 0, { type = "StatThreshold", stat = "ProjectileCount", threshold = 7 }), - }, }, #baseMod skill("radius", 20) #baseMod skill("radiusLabel", "Area of initial explosion:") @@ -1896,6 +1877,9 @@ local skills, mod, flag, skill = ... ["zombie_slam_area_of_effect_+%"] = { mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillId", skillId = "ZombieSlam" }) }), }, + ["quality_display_raise_zombie_is_gem+%"] = { + -- Display only + }, }, #mods @@ -1933,7 +1917,6 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("dotIsArea", true) -#baseMod skill("radius", 18) #mods #skill VaalRighteousFire @@ -1959,7 +1942,6 @@ local skills, mod, flag, skill = ... } }, #baseMod skill("dotIsArea", true) -#baseMod skill("radius", 30) #mods #skill FireBeam @@ -1984,6 +1966,9 @@ local skills, mod, flag, skill = ... ["display_max_fire_beam_stacks"] = { mod("Multiplier:ScorchingRayMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, + ["quality_display_firebeam_is_gem"] = { + -- Display only + }, }, #baseMod mod("Condition:ScorchingRayMaxStages", "FLAG", true, 0, 0, { type = "MultiplierThreshold", var = "ScorchingRayStageAfterFirst", threshold = 7 }) #baseMod flag("DotCanStackAsTotems") @@ -2003,9 +1988,6 @@ local skills, mod, flag, skill = ... ["shock_nova_ring_chance_to_shock_+%"] = { mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"] = { - mod("ShockAsThoughDealing", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, }, #baseMod skill("radius", 26) #mods @@ -2013,9 +1995,6 @@ local skills, mod, flag, skill = ... #skill CircleOfPower #flags spell area duration statMap = { - ["circle_of_power_skill_cost_mana_cost_+%"] = { - mod("ManaCost", "INC", nil, 0, 0, { type = "MultiplierThreshold", var = "SigilOfPowerStage", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, ["circle_of_power_min_added_lightning_per_stage"] = { mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "SigilOfPowerStage", limitVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), mod("LightningMin", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "SigilOfPowerStage", limitVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), @@ -2027,17 +2006,14 @@ local skills, mod, flag, skill = ... ["circle_of_power_enemy_damage_+%_final_at_max_stages"] = { mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", actor = "enemy", var = "SigilOfPowerStage", thresholdVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Debuff", effectName = "Sigil of Power" }), }, - ["spell_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, - ["base_chance_to_shock_%_from_skill"] = { - mod("EnemyShockChance", "BASE", nil, 0, 0, { type = "MultiplierThreshold", var = "SigilOfPowerStage", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Sigil of Power" }), - }, ["circle_of_power_max_stages"] = { mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, ["quality_display_circle_of_power_is_gem"] = { -- Display Only + }, + ["quality_display_circle_of_power_damage_is_gem"] = { + -- Display Only }, }, #baseMod skill("radius", 30) @@ -2063,10 +2039,6 @@ local skills, mod, flag, skill = ... mod("ManaRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "SiphoningTrapSiphoning" }, { type = "MultiplierThreshold", threshold = 1, var = "EnemyAffectedBySiphoningTrap" }), div = 60, }, - ["skill_energy_shield_regeneration_%_per_minute_per_affected_enemy"] = { - mod("EnergyShieldRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "SiphoningTrapSiphoning" }, { type = "MultiplierThreshold", threshold = 1, var = "EnemyAffectedBySiphoningTrap" }), - div = 60, - }, }, #mods @@ -2088,6 +2060,7 @@ local skills, mod, flag, skill = ... #flags spell statMap = { ["spellslinger_mana_reservation"] = { + -- Display only }, }, #mods @@ -2103,35 +2076,27 @@ local skills, mod, flag, skill = ... ["spellslinger_trigger_on_wand_attack_%"] = { skill("triggeredBySpellSlinger", nil, { type = "SkillType", skillType = SkillType.Triggerable }, { type = "SkillType", skillType = SkillType.Spell }), }, + ["quality_display_wand_damage_as_added_spell_damage_is_gem"] = { + -- Display only + }, }, #baseMod flag("Condition:SupportedBySpellslinger") #baseMod skill("showAverage", true) #mods -#skill BrandSupport -#flags spell duration brand - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "Speed", "BrandActivationFrequency") / 100) / activeSkill.skillModList:More(activeSkill.skillCfg, "BrandActivationFrequency") - end, -#mods - -#skill SupportBrandSupport - addFlags = { - brand = true, - }, +#skill SoulLink +#flags spell duration statMap = { - ["support_brand_damage_+%_final"] = { - mod("TriggeredDamage", "MORE", nil), + ["soul_link_grants_damage_taken_+%_final"] = { + mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["support_brand_area_of_effect_+%_final"] = { - mod("AreaOfEffect", "MORE", nil), + ["soul_link_grants_mana_regeneration_+%"] = { + mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"] = { - mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "Condition", var = "TargetingBrandedEnemy"}), + ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"] = { + mod("TakenFromParentESBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, }, - addSkillTypes = { SkillType.Brand, }, -#baseMod skill("triggeredByBrand", true) #mods #skill SpiritOffering @@ -2166,6 +2131,9 @@ local skills, mod, flag, skill = ... ["lightning_explosion_mine_aura_damage_taken_+%"] = { mod("DamageTaken", "INC", nil, 0, 0, { type = "Limit", limit = 150 }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), }, + ["quality_display_stormblast_mine_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 20) #mods @@ -2196,15 +2164,15 @@ local skills, mod, flag, skill = ... ["rune_paint_area_of_effect_+%_per_rune_level"] = { mod("AreaOfEffect", "INC", nil, 0, 0, { type = "Multiplier", var = "RuneLevel" }), }, - ["active_skill_quality_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, ["quality_display_rune_paint_is_gem"] = { -- Display Only }, ["rune_paint_max_rune_level"] = { -- Display Only }, + ["quality_display_rune_paint_area_is_gem"] = { + -- Display Only + }, }, #baseMod mod("Multiplier:RuneLevel", "BASE", 1, 0, 0, { type = "SkillPart", skillPart = 2 }) #baseMod mod("Multiplier:RuneLevel", "BASE", 2, 0, 0, { type = "SkillPart", skillPart = 3 }) @@ -2212,24 +2180,6 @@ local skills, mod, flag, skill = ... #baseMod skill("radius", 16) #mods -#skill SummonReaper -#flags spell minion - minionList = { - "SummonedReaper", - }, - statMap = { - ["bleed_on_hit_with_attacks_%"] = { - mod("MinionModifier", "LIST", { mod = mod("BleedChance", "BASE", nil, ModFlag.Attack) }) - }, - ["non_reaper_minion_damage_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - ["non_reaper_minion_maximum_life_+%_final"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), - }, - }, -#mods - #skill RuneBlast #flags spell #mods @@ -2254,9 +2204,6 @@ local skills, mod, flag, skill = ... end end, statMap = { - ["storm_burst_zap_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, ["display_storm_burst_jump_time_ms"] = { skill("repeatFrequency", nil), div = 1000, @@ -2328,9 +2275,6 @@ local skills, mod, flag, skill = ... ["base_number_of_relics_allowed"] = { mod("ActiveHolyRelicLimit", "BASE", nil) }, - ["holy_relic_cooldown_recovery_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil) }), - }, ["holy_relic_nova_life_regeneration_rate_per_minute"] = { mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Holy Relic's Boon", effectCond = "HolyRelicBoonActive" }), div = 60, @@ -2362,6 +2306,24 @@ local skills, mod, flag, skill = ... }, #mods +#skill SummonReaper +#flags spell minion + minionList = { + "SummonedReaper", + }, + statMap = { + ["bleed_on_hit_with_attacks_%"] = { + mod("MinionModifier", "LIST", { mod = mod("BleedChance", "BASE", nil, ModFlag.Attack) }) + }, + ["active_skill_non_reaper_minion_damage_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + ["active_skill_non_reaper_minion_maximum_life_+%_final"] = { + mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "SkillName", skillName = "Summon Reaper", neg = true }, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + }, + }, +#mods + #skill SummonSkeletons #flags spell minion duration minionList = { @@ -2370,8 +2332,8 @@ local skills, mod, flag, skill = ... "RaisedSkeletonArcher", }, statMap = { - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) + ["quality_display_summon_skeleton_is_gem"] = { + -- Display only }, }, #mods @@ -2384,28 +2346,10 @@ local skills, mod, flag, skill = ... "RaisedSkeletonArcher", }, statMap = { - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) - }, - }, -#mods - -#skill BlackHole -#flags spell area duration - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency - / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "VoidSphereFrequency") / 100) - end, - statMap = { - ["blackhole_pulse_frequency_+%"] = { - mod("VoidSphereFrequency", "INC", nil), - }, - ["base_blackhole_tick_rate_ms"] = { - skill("repeatFrequency", nil), - div = 1000, + ["quality_display_summon_skeleton_is_gem"] = { + -- Display only }, }, -#baseMod skill("radius", 38) #mods #skill Skitterbots @@ -2430,11 +2374,25 @@ local skills, mod, flag, skill = ... }, ["skill_display_buff_grants_shock_immunity"] = { flag("ShockImmune", { type = "GlobalEffect", effectType = "Buff"}), - } + }, }, #baseMod skill("triggerCounterAttack", 100, { type = "SkillType", skillType = SkillType.Spell }) #mods +#skill BlackHole +#flags spell area duration + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency + / (1 + activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "VoidSphereFrequency") / 100) + end, + statMap = { + ["base_blackhole_tick_rate_ms"] = { + skill("repeatFrequency", nil), + div = 1000, + }, + }, +#mods + #skill VoltaxicBurst #flags spell area nova duration preDamageFunc = function(activeSkill, output) @@ -2445,6 +2403,9 @@ local skills, mod, flag, skill = ... ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "VoltaxicWaitingStages" }), }, + ["quality_display_voltaxic_burst_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 22) #mods @@ -2460,7 +2421,8 @@ local skills, mod, flag, skill = ... }, }, #baseMod skill("dotIsArea", true) -#baseMod skill("radius", 20) +#baseMod skill("radiusLabel", "Initial Hit:") +#baseMod skill("radiusSecondaryLabel", "Ground Degen:") #mods #skill Purge @@ -2515,6 +2477,10 @@ local skills, mod, flag, skill = ... mod("HitRate", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), }, ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"] = { + -- Display only + }, + ["quality_display_winter_orb_is_gem"] = { + -- Display only }, }, #baseMod skill("radius", 16) @@ -2534,11 +2500,12 @@ local skills, mod, flag, skill = ... ["winter_brand_max_number_of_stages"] = { mod("Multiplier:WintertideBrandMaxStages", "BASE", nil), }, - ["active_skill_brands_allowed_on_enemy_+"] = { - mod("BrandsAttachedLimit", "BASE", nil), + ["quality_display_wintertide_brand_is_gem"] = { + -- Display only }, }, #baseMod skill("radius", 20) +#baseMod skill("debuffTertiary", true) #mods #skill Wither @@ -2586,43 +2553,6 @@ local skills, mod, flag, skill = ... ["spell_critical_strike_chance_+%"] = { mod("CritChance", "INC", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["skill_buff_grant_critical_strike_multiplier_+"] = { - mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 60, - }, }, #baseMod skill("radius", 40) -#mods - -#skill SoulLink -#flags spell duration - statMap = { - ["soul_link_grants_damage_taken_+%_final"] = { - mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["soul_link_grants_mana_regeneration_+%"] = { - mod("ManaRegen", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"] = { - mod("TakenFromParentESBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - }, -#mods - -#skill DestructiveLink -#flags spell duration - statMap = { - ["critical_link_grants_base_critical_strike_multiplier_+"] = { - mod("CritMultiplier", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["critical_link_grants_accuracy_rating_+%"] = { - mod("Accuracy", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, - ["display_critical_link_overrides_main_hand_critical_strike_chance"] = { - flag("MainHandCritIsEqualToParent", { type = "GlobalEffect", effectType = "Link" }, { type = "Condition", var = "MainHandAttack" }), - }, - }, #mods \ No newline at end of file diff --git a/src/Export/Skills/act_str.txt b/src/Export/Skills/act_str.txt index 837f566fba..2a58204491 100644 --- a/src/Export/Skills/act_str.txt +++ b/src/Export/Skills/act_str.txt @@ -12,16 +12,10 @@ local skills, mod, flag, skill = ... "AbsolutionTemplarJudgeVaal", }, statMap = { - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - }, ["skill_physical_damage_%_to_convert_to_lightning"] = { mod("SkillPhysicalDamageConvertToLightning", "BASE", nil), mod("MinionModifier", "LIST", { mod = mod("SkillPhysicalDamageConvertToLightning", "BASE", nil, 0, 0) }) }, - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) }) - }, }, #baseMod skill("radius", 25) #mods @@ -38,28 +32,6 @@ local skills, mod, flag, skill = ... }, #mods -#skill AbyssalCry -#flags warcry area duration - statMap = { - ["skill_empowers_next_x_melee_attacks"] = { - mod("InfernalExertedAttacks", "BASE", nil), - }, - ["infernal_cry_covered_in_ash_fire_damage_taken_"] = { - mod("InfernalAshEffectPer5MP", "BASE", nil), - }, - ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"] = { - mod("InfernalFireTakenPer5MP", "BASE", nil), - }, - ["infernal_cry_empowered_attacks_trigger_combust_display"] = { - -- Display only - }, - }, -#baseMod skill("radius", 60) -#baseMod skill("radiusLabel", "Warcry area:") -#baseMod skill("radiusSecondary", 22) -#baseMod skill("radiusSecondaryLabel", "Explosion area:") -#mods - #skill InfernalCryOnHitExplosion #flags attack melee area statMap = { @@ -76,9 +48,6 @@ local skills, mod, flag, skill = ... ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["ancestor_totem_buff_effect_+%"] = { - mod("BuffEffect", "INC", nil) - }, }, #baseMod skill("allowTotemBuff", true) #baseMod skill("thisIsNotABuff", true) @@ -99,9 +68,6 @@ local skills, mod, flag, skill = ... ["ancestral_cry_max_physical_damage_reduction_rating"] = { mod("AncestralArmourMax", "BASE", nil), }, - ["physical_damage_reduction_rating_+%"] = { - mod("AncestralArmourMax", "INC", nil), - }, }, #baseMod skill("radius", 60) #mods @@ -143,12 +109,6 @@ local skills, mod, flag, skill = ... ["spell_maximum_added_fire_damage"] = { mod("FireMax", "BASE", nil, 0, KeywordFlag.Spell, { type = "GlobalEffect", effectType = "Aura" }), }, - ["burn_damage_+%"] = { - mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["base_movement_velocity_+%"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -167,23 +127,6 @@ local skills, mod, flag, skill = ... minionList = { "AnimatedArmour", }, - statMap = { - ["maximum_life_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "INC", nil) }), - }, - ["base_movement_velocity_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("MovementSpeed", "INC", nil) }), - }, - ["melee_physical_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalDamage", "INC", nil, ModFlag.Melee) }), - }, - ["attack_minimum_added_physical_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalMin", "BASE", nil, 0, KeywordFlag.Attack) }), - }, - ["attack_maximum_added_physical_damage"] = { - mod("MinionModifier", "LIST", { mod = mod("PhysicalMax", "BASE", nil, 0, KeywordFlag.Attack) }), - }, - }, #mods #skill BattlemagesCry @@ -231,12 +174,6 @@ local skills, mod, flag, skill = ... ["berserk_base_damage_taken_+%_final"] = { mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["attack_damage_+%"] = { - mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, - ["berserk_spell_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, #mods @@ -254,9 +191,6 @@ local skills, mod, flag, skill = ... ["bladestorm_storm_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, - ["bladestorm_blood_stance_ailment_damage_+%"] = { - mod("Damage", "INC", nil, 0, KeywordFlag.Ailment, { type = "SkillPart", skillPart = 2 }, { type = "Condition", var = "BloodStance" }), - }, ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"] = { mod("Speed", "MORE", nil, ModFlag.Attack, 0, { type = "Condition", var = "BladestormInBloodstorm" }), }, @@ -286,18 +220,6 @@ local skills, mod, flag, skill = ... ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"] = { mod("Damage", "MORE", nil, ModFlag.Area, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}, { type = "SkillType", skillType = SkillType.Melee }) }, - ["projectile_attack_damage_+%_in_blood_stance"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Projectile), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Blood", effectCond = "BloodStance"}) - }, - ["projectile_speed_+%_in_sand_stance"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}) - }, - ["spell_area_damage_+%_in_blood_stance"] = { - mod("Damage", "INC", nil, bit.bor(ModFlag.Area, ModFlag.Spell), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Blood", effectCond = "BloodStance"}) - }, - ["spell_area_of_effect_+%_in_sand_stance"] = { - mod("AreaOfEffect", "INC", nil, bit.bor(ModFlag.Area, ModFlag.Spell), 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Sand", effectCond = "SandStance"}) - }, }, #mods @@ -317,17 +239,16 @@ local skills, mod, flag, skill = ... ["trauma_strike_damage_+%_final_per_trauma"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "TraumaStacks" }), }, - ["attack_speed_+%_per_trauma"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "TraumaStacks" }), - mod("SpeedPerTrauma", "INC", nil, ModFlag.Attack, 0), - }, - ["trauma_strike_self_damage_per_trauma"] = { - mod("TraumaSelfDamageTakenLife", "BASE", nil), - }, ["boneshatter_trauma_base_duration_ms"] = { mod("TraumaDuration", "BASE", nil), div = 1000, }, + ["trauma_strike_self_damage_per_trauma"] = { + -- Display only + }, + ["quality_display_boneshatter_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 14, { type = "SkillPart", skillPart = 2 }) #baseMod flag("HasTrauma") @@ -343,17 +264,30 @@ local skills, mod, flag, skill = ... mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "Rage", div = 5 }), div = 5, }, + ["quality_display_chain_hook_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 24) #mods #skill Cleave #flags attack melee area + statMap = { + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"] = { + skill("radiusExtra", nil, { type = "Multiplier", var = "NearbyEnemies", limit = 10, limitTotal = true }) + }, + }, #baseMod skill("radius", 20) #mods #skill VaalCleave #flags attack area duration melee + statMap = { + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"] = { + skill("radiusExtra", nil, { type = "Multiplier", var = "NearbyEnemies", limit = 10, limitTotal = true }) + }, + }, #mods #skill ConsecratedPath @@ -362,6 +296,9 @@ local skills, mod, flag, skill = ... ["groundslam_damage_to_close_targets_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, + ["quality_display_groundslam_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 23) #mods @@ -403,12 +340,6 @@ local skills, mod, flag, skill = ... ["base_physical_damage_reduction_rating"] = { mod("Armour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_stun_%"] = { - mod("AvoidStun", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, - ["evasion_rating_%_to_add_as_armour"] = { - mod("EvasionGainAsArmour", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -431,14 +362,6 @@ local skills, mod, flag, skill = ... "AxisEliteSoldierDominatingBlow", "AxisEliteSoldierDominatingBlowVaal", }, - statMap = { - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - }, - ["damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil) } ) - } - }, #mods #skill VaalDomination @@ -465,9 +388,6 @@ local skills, mod, flag, skill = ... ["impale_debuff_effect_+%"] = { mod("ImpaleEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["puresteel_banner_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, }, #baseMod skill("radius", 46) #baseMod skill("manaReservationPercent", 0, { type = "Condition", var = "BannerPlanted" }) @@ -492,18 +412,8 @@ local skills, mod, flag, skill = ... ["quake_slam_fully_charged_explosion_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }), }, - ["earthquake_aftershock_minimum_added_physical_damage"] = { - mod("PhysicalMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - ["earthquake_aftershock_maximum_added_physical_damage"] = { - mod("PhysicalMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), - }, - ["earthquake_initial_slam_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 1 }) - }, - ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"] = { - flag("SpellDamageAppliesToAttacks"), - mod("ImprovedSpellDamageAppliesToAttacks", "MAX", nil), + ["quality_display_earthquake_is_gem"] = { + -- Display only }, }, #baseMod skill("showAverage", true, { type = "SkillPart", skillPart = 2 }) @@ -525,6 +435,9 @@ local skills, mod, flag, skill = ... ["quake_slam_fully_charged_explosion_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 }), }, + ["quality_display_earthquake_is_gem"] = { + -- Display only + }, }, #baseMod skill("showAverage", true, { type = "SkillPart", skillPart = 2 }) #baseMod skill("radius", 18, { type = "SkillPart", skillPart = 1 }) @@ -548,12 +461,6 @@ local skills, mod, flag, skill = ... ["active_skill_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil), }, - ["spike_slam_fissure_length_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 1 }) - }, - ["spike_slam_fissure_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, ["spike_slam_spike_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), } @@ -601,9 +508,6 @@ local skills, mod, flag, skill = ... ["flame_link_maximum_fire_damage"] = { mod("FireMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["flame_link_grants_chance_to_ignite_%"] = { - mod("EnemyIgniteChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, ["flame_link_added_fire_damage_from_life_%"] = { mod("FireMin", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "PercentStat", stat = "Life", percent = 1, actor = "parent" }), mod("FireMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }, { type = "PercentStat", stat = "Life", percent = 1, actor = "parent" }), @@ -617,12 +521,6 @@ local skills, mod, flag, skill = ... ["support_maimed_enemies_physical_damage_taken_+%"] = { mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Maim", effectCond = "BloodStance" }, { type = "Condition", var = "Maimed" }), }, - ["evasion_and_physical_damage_reduction_rating_+%"] = { - mod("ArmourAndEvasion", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, - ["damage_+%_if_changed_stances_recently"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff"}, { type = "Condition", var = "ChangedStanceRecently" }) - }, }, #baseMod skill("radius", 28) #baseMod mod("Condition:Maimed", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Flesh", effectCond = "BloodStance" }) @@ -631,11 +529,6 @@ local skills, mod, flag, skill = ... #skill FrozenLegion #flags spell - statMap = { - ["frozen_legion_%_chance_to_summon_additional_statue"] = { - mod("FrozenLegionExtraStatueChance", "BASE", nil) - } - }, #mods #skill FrozenSweep @@ -675,30 +568,15 @@ local skills, mod, flag, skill = ... output.Cooldown = m_ceil(cooldown * data.misc.ServerTickRate) / data.misc.ServerTickRate activeSkill.skillData.hitTimeOverride = output.Cooldown - local extraStatueChance = parentSkill.skillModList:Sum("BASE", parentSkill.skillCfg, "FrozenLegionExtraStatueChance") or 0 local maxStatues = parentSkill.skillData.storedUses + parentSkill.skillModList:Sum("BASE", parentSkill.skillCfg, "AdditionalCooldownUses") - local statuesWaitedFor - local dpsMultiplier = extraStatueChance if activeSkill.skillPart == 1 then statuesWaitedFor = 1 elseif activeSkill.skillPart == 2 then statuesWaitedFor = maxStatues end - activeSkill.skillData.averageBurstHits = statuesWaitedFor + extraStatueChance / 100 - dpsMultiplier = 1 + extraStatueChance / statuesWaitedFor / 100 - if breakdown then - breakdown.SkillDPSMultiplier = {} - t_insert(breakdown.SkillDPSMultiplier, "DPS multiplier") - t_insert(breakdown.SkillDPSMultiplier, "^8= extra statue chance / statues waited for") - t_insert(breakdown.SkillDPSMultiplier, s_format("^8= ^7%d%%^8 / ^7%.2f", extraStatueChance, statuesWaitedFor)) - t_insert(breakdown.SkillDPSMultiplier, s_format("^8= ^7%.3f", dpsMultiplier)) - end - if dpsMultiplier ~= 1 then - activeSkill.skillData.dpsMultiplier = (activeSkill.skillData.dpsMultiplier or 1) * dpsMultiplier - output.SkillDPSMultiplier = (output.SkillDPSMultiplier or 1) * dpsMultiplier - end + activeSkill.skillData.averageBurstHits = statuesWaitedFor end, #baseMod skill("radius", 25) #mods @@ -711,6 +589,9 @@ local skills, mod, flag, skill = ... ["maximum_number_of_spiritual_cry_warriors"] = { mod("GeneralsCryDoubleMaxCount", "BASE", nil), }, + ["quality_display_generals_cry_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 60) #mods @@ -745,6 +626,9 @@ local skills, mod, flag, skill = ... ["groundslam_damage_to_close_targets_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, + ["quality_display_groundslam_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 35) #mods @@ -756,6 +640,10 @@ local skills, mod, flag, skill = ... mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "Condition", var = "AtCloseRange" }) }, ["vaal_skill_exertable"] = { + -- Display only + }, + ["quality_display_groundslam_is_gem"] = { + -- Display only }, }, #baseMod skill("radius", 39) @@ -776,9 +664,6 @@ local skills, mod, flag, skill = ... activeSkill.skillData.FireDot = (activeSkill.skillData.hoaOverkill or 0) * (1 + activeSkill.skillData.hoaMoreBurn / 100) * activeSkill.skillData.hoaOverkillPercent end, statMap = { - ["herald_of_ash_fire_damage_+%"] = { - mod("FireDamage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, ["herald_of_ash_spell_fire_damage_+%_final"] = { mod("FireDamage", "MORE", nil, ModFlag.Spell, 0, { type = "GlobalEffect", effectType = "Buff" }), }, @@ -792,6 +677,9 @@ local skills, mod, flag, skill = ... skill("hoaOverkillPercent", nil), div = 6000, }, + ["quality_display_herald_of_ash_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 10) #mods @@ -808,9 +696,6 @@ local skills, mod, flag, skill = ... ["herald_of_purity_physical_damage_+%_final"] = { mod("PhysicalDamage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, - ["sentinel_minion_cooldown_speed_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("CooldownRecovery", "INC", nil, 0, 0) }) - } }, #mods @@ -833,9 +718,6 @@ local skills, mod, flag, skill = ... }, }, statMap = { - ["ice_crash_first_stage_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 1 }), - }, ["ice_crash_second_hit_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, @@ -846,7 +728,9 @@ local skills, mod, flag, skill = ... -- Display Only }, }, -#baseMod skill("radius", 26) +#baseMod skill("radiusLabel", "First hit:") +#baseMod skill("radiusSecondaryLabel", "Second hit:") +#baseMod skill("radiusTertiaryLabel", "Third hit:") #mods #skill ImmortalCall @@ -862,10 +746,6 @@ local skills, mod, flag, skill = ... mod("PhysicalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }, { type = "Multiplier", var = "RemovableEnduranceCharge", limit = 5 }), div = 100, }, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"] = { - mod("ElementalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }, { type = "Multiplier", var = "RemovableEnduranceCharge", limit = 5 }), - div = 100, - }, ["quality_display_immortal_call_is_gem"] = { -- Display Only }, @@ -877,12 +757,40 @@ local skills, mod, flag, skill = ... #baseMod flag("Condition:CannotDie", { type = "GlobalEffect", effectType = "Guard" }) #mods +#skill AbyssalCry +#flags warcry area duration + statMap = { + ["skill_empowers_next_x_melee_attacks"] = { + mod("InfernalExertedAttacks", "BASE", nil), + }, + ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"] = { + mod("InfernalFireTakenPer5MP", "BASE", nil), + }, + ["infernal_cry_empowered_attacks_trigger_combust_display"] = { + -- Display only + }, + }, +#baseMod skill("radius", 60) +#baseMod skill("radiusLabel", "Warcry area:") +#baseMod skill("radiusSecondary", 22) +#baseMod skill("radiusSecondaryLabel", "Explosion area:") +#mods + #skill InfernalBlow #flags attack melee duration statMap = { ["infernal_blow_explosion_damage_%_of_total_per_stack"] = { mod("DebuffEffect", "BASE", nil) - } + }, + ["quality_display_infernal_blow_is_gem"] = { + -- Display Only + }, + ["active_skill_base_area_of_effect_radius"] = { + skill("radius", nil, { type = "SkillPart", skillPart = 1 }), + }, + ["active_skill_base_secondary_area_of_effect_radius"] = { + skill("radius", nil, { type = "SkillPart", skillPartList = { 2, 3 } }), + }, }, parts = { { @@ -907,9 +815,10 @@ local skills, mod, flag, skill = ... activeSkill.skillData.dpsMultiplier = 1 / 6 end end, -#baseMod skill("radius", 15) #baseMod skill("showAverage", true, { type = "SkillPart", skillPart = 2 }) #baseMod mod("Multiplier:DebuffStack", "BASE", 5, 0, 0, { type = "SkillPart", skillPart = 3 }) +#baseMod skill("radiusLabel", "Hit area:", { type = "SkillPart", skillPart = 1 }) +#baseMod skill("radiusLabel", "Explosion area:", { type = "SkillPart", skillPartList = { 2, 3 } }) #mods #skill IntimidatingCry @@ -921,10 +830,6 @@ local skills, mod, flag, skill = ... ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"] = { mod("IntimidatingPDRPer5MP", "BASE", nil), }, - ["warcry_grant_overwhelm_%_to_exerted_attacks"] = { - -- This is okay not indicating exert because it must be enabled by Intimidating Cry which would exert the attack - mod("EnemyPhysicalDamageReduction", "BASE", nil, ModFlag.Attack, 0) - }, ["intimidating_cry_empowerd_attacks_deal_double_damage_display"] = { }, }, @@ -933,7 +838,11 @@ local skills, mod, flag, skill = ... #skill LeapSlam #flags attack melee area -#baseMod skill("radius", 15) + statMap = { + ["stun_duration_+%_vs_enemies_that_are_on_full_life"] = { + mod("EnemyStunDuration", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "FullLife" }), + }, + }, #mods #skill MoltenShell @@ -960,9 +869,6 @@ local skills, mod, flag, skill = ... ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"] = { skill("moltenShellReflect", nil), }, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"] = { - mod("FirePenetration", "BASE", nil) - } }, #baseMod skill("radius", 15) #mods @@ -1043,6 +949,11 @@ local skills, mod, flag, skill = ... chaining = true, }, }, + statMap = { + ["active_skill_hit_ailment_damage_with_projectile_+%_final"] = { + mod("Damage", "MORE", nil, bit.band(ModFlag.Hit, ModFlag.Ailment), 0, { type = "SkillPart", skillPart = 2 }) + }, + }, #baseMod skill("projectileSpeedAppliesToMSAreaOfEffect", true) #baseMod skill("radius", 9, { type = "SkillPart", skillPart = 2 }) #baseMod skill("radiusLabel", "Ball area:", { type = "SkillPart", skillPart = 2 }) @@ -1070,7 +981,10 @@ local skills, mod, flag, skill = ... }, ["skill_area_of_effect_+%_final_in_sand_stance"] = { mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Condition", var = "SandStance" }), - } + }, + ["quality_display_perforate_is_gem"] = { + -- Display Only + }, }, #baseMod skill("dpsMultiplier", 1, { type = "Multiplier", var = "PerforateSpikeOverlap", limitVar = "PerforateMaxSpikes" }, { type = "Condition", var = "BloodStance" }) #baseMod skill("radius", 11, { type = "Condition", var = "SandStance" }) @@ -1103,12 +1017,6 @@ local skills, mod, flag, skill = ... ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max"] = { mod("PhysicalDamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", modCond = "PrideMaxEffect" }), }, - ["receive_bleeding_chance_%_when_hit_by_attack"] = { - mod("SelfBleedChance", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, - ["base_additional_physical_damage_reduction_%"] = { - mod("PhysicalDamageReduction", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff" }), - }, }, #baseMod skill("radius", 40) #mods @@ -1119,9 +1027,6 @@ local skills, mod, flag, skill = ... ["bulwark_link_grants_recover_X_life_on_block"] = { mod("LifeOnBlock", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), }, - ["bulwark_link_grants_stun_threshold_+%"] = { - mod("StunThreshold", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Link" }), - }, ["display_bulwark_link_overrides_attack_block_and_maximum_attack_block"] = { mod("BlockAttackChanceIsEqualToParent", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Link" }), mod("MaximumBlockAttackChanceIsEqualToParent", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Link" }), @@ -1150,12 +1055,6 @@ local skills, mod, flag, skill = ... ["base_maximum_fire_damage_resistance_%"] = { mod("FireResistMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, - ["base_avoid_ignite_%"] = { - mod("AvoidIgnite", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }) - }, - ["base_reduce_enemy_fire_resistance_%"] = { - mod("FirePenetration", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), - }, }, #baseMod skill("radius", 40) #mods @@ -1187,17 +1086,28 @@ local skills, mod, flag, skill = ... }, statMap = { ["rage_slash_radius_+_per_amount_of_rage_sacrificed"] = { - skill("radiusExtra", nil, { type = "Multiplier", var = "RageSacrificed", limitVar = "MaxRageVortexSacrifice" }), + skill("radiusExtra", nil, { type = "Multiplier", var = "RageSacrificed" }), div = 2 }, + ["rage_slash_rage_sacrifice_per_radius_bonus"] = { + -- Display only + }, + ["rage_slash_rage_sacrifice_per_damage_bonus"] = { + -- Display only + }, ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RageSacrificed", limitVar = "MaxRageVortexSacrifice" }), + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RageSacrificed" }), }, ["rage_slash_vortex_attack_speed_+%_final"] = { mod("Speed", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), }, + ["rage_slash_sacrifice_rage_%"] = { + mod("Multiplier:MaxRageVortexSacrificePercentage", "BASE", nil), + }, + ["quality_display_rage_vortex_is_gem"] = { + -- Display only + }, }, -#baseMod skill("radius", 18) #mods #skill RallyingCry @@ -1225,11 +1135,6 @@ local skills, mod, flag, skill = ... #skill Reckoning #flags attack area melee - statMap = { - ["debilitate_enemies_for_1_second_on_hit_%_chance"] = { - mod("DebilitateChance", "BASE", nil) - }, - }, #baseMod skill("radius", 35) #mods @@ -1276,10 +1181,6 @@ local skills, mod, flag, skill = ... ["seismic_cry_+%_enemy_stun_threshold_per_5_MP"] = { mod("SeismicStunThresholdPer5MP", "BASE", nil), }, - ["warcry_grant_knockback_%_to_exerted_attacks"] = { - -- Not limited to exerted but should be okay because the cry will flag them as exerted - mod("EnemyKnockbackChance", "BASE", nil), - }, }, #baseMod skill("radius", 60) #mods @@ -1296,7 +1197,6 @@ local skills, mod, flag, skill = ... #skill ShockwaveTotem #flags spell totem area duration -#baseMod skill("radius", 24) #mods #skill Smite @@ -1322,11 +1222,12 @@ local skills, mod, flag, skill = ... ["maximum_added_lightning_damage_from_skill"] = { mod("LightningMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", neg = true, var = "AffectedByVaalSmite" }), }, - ["skill_buff_grants_attack_and_cast_speed_+%"] = { - mod("Speed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", neg = true, var = "AffectedByVaalSmite" }) + ["quality_display_active_skill_area_damage_quality_negated_from_gem"] = { + -- Display only }, }, -#baseMod skill("radius", 15) +#baseMod skill("radiusLabel", "Lightning Strike area:") +#baseMod skill("radiusSecondaryLabel", "Aura area:") #mods #skill VaalSmite @@ -1353,7 +1254,8 @@ local skills, mod, flag, skill = ... mod("LightningMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), }, }, -#baseMod skill("radius", 15) +#baseMod skill("radiusLabel", "Lightning Strike area:") +#baseMod skill("radiusSecondaryLabel", "Aura area:") #mods #skill StaticStrike @@ -1376,35 +1278,24 @@ local skills, mod, flag, skill = ... skill("repeatFrequency", nil), div = 1000, }, - ["static_strike_zap_speed_+%"] = { - skill("repeatFrequencyIncrease", nil), - div = 100 - }, }, -preDamageFunc = function(activeSkill, output) - if activeSkill.skillPart == 2 then - activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency / ((activeSkill.skillData.repeatFrequencyIncrease or 0) + 1) - end -end, + preDamageFunc = function(activeSkill, output) + if activeSkill.skillPart == 2 then + activeSkill.skillData.hitTimeOverride = activeSkill.skillData.repeatFrequency + end + end, #baseMod skill("radius", 20) #mods #skill QuickGuard #flags spell duration statMap = { - ["resist_all_%"] = { - mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }), - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard" }), - }, ["quick_guard_damage_absorbed_%"] = { mod("GuardAbsorbRate", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), }, ["quick_guard_damage_absorb_limit"] = { mod("GuardAbsorbLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), }, - ["steelskin_damage_limit_+%"] = { - mod("GuardAbsorbLimit", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Guard", unscalable = true }), - }, }, #baseMod mod("AvoidBleed", "BASE", 100, 0, 0, { type = "GlobalEffect", effectType = "Guard" }) #mods @@ -1423,6 +1314,9 @@ end, skill("FireDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage"}), div = 60, }, + ["quality_display_reap_is_gem"] = { + -- Display only + }, }, #baseMod skill("radius", 25) #baseMod skill("debuff", true) @@ -1457,6 +1351,11 @@ end, name = "2 Overlapping Waves", }, }, + statMap = { + ["shield_crush_damage_+%_final_from_distance"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "MeleeProximity", ramp = {1,0} }), + }, + }, #baseMod skill("radius", 29) #baseMod skill("dpsMultiplier", 2, { type = "SkillPart", skillPart = 2 }) #mods @@ -1513,12 +1412,6 @@ end, ["sunder_wave_radius_+_per_step"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "SunderWaveArea" }), }, - ["sunder_shockwave_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPart = 3 }), - }, - ["sunder_wave_area_of_effect_+%"] = { - mod("AreaOfEffect", "INC", nil, 0, 0, { type = "SkillPart", skillPartList = {1, 2} }), - }, }, #baseMod skill("radius", 12) #baseMod mod("Multiplier:SunderWaveArea", "BASE", 4, 0, 0, { type = "SkillPart", skillPart = 2 }) @@ -1535,10 +1428,6 @@ end, ["active_skill_area_of_effect_+%_final_per_endurance_charge"] = { mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), }, - ["base_life_leech_from_fire_damage_permyriad"] = { - mod("FireDamageLifeLeech", "BASE", nil), - div = 100, - } }, #baseMod skill("radius", 15) #baseMod skill("radiusLabel", "Fissure Length:") @@ -1548,11 +1437,6 @@ end, #skill Vengeance #flags attack melee area - statMap = { - ["gain_rage_on_hit_%_chance"] = { - flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff" }), - } - }, #mods #skill VigilantStrike @@ -1566,13 +1450,6 @@ end, mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }), div = 60, }, - ["damage_+%_when_on_full_life"] = { - mod("Damage", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura" }, { type = "Condition", var = "FullLife" }) - }, - ["life_leech_from_physical_attack_damage_permyriad"] = { - mod("PhysicalDamageLifeLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Aura" }), - div = 100, - }, }, #baseMod skill("radius", 40) #mods @@ -1645,12 +1522,6 @@ end, ["mana_leech_on_any_damage_when_hit_by_attack_permyriad"] = { mod("SelfDamageManaLeech", "BASE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["base_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, - ["enemy_rage_regeneration_on_stun"] = { - flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff" } ), - }, }, #baseMod skill("debuff", true) #mods diff --git a/src/Export/Skills/minion.txt b/src/Export/Skills/minion.txt index e152c47e09..3fd629a2f3 100644 --- a/src/Export/Skills/minion.txt +++ b/src/Export/Skills/minion.txt @@ -372,4 +372,12 @@ skills["GuardianSentinelFireAura"] = { #skill MPWExpeditionSummonedArbalestProjectile Projectile Attack #flags attack projectile +#mods + +#skill BlinkMirrorArrowMelee Projectile Attack +#flags attack projectile +#mods + +#skill SumonRagingSpiritMelee +#flags attack melee #mods \ No newline at end of file diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 7bef5a41e5..6e48958b63 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -10,6 +10,11 @@ local skills, mod, flag, skill = ... fromItem = true, #mods +#skill MinionSacrifice +#flags spell area + fromTree = true, +#mods + #skill AnimateGuardianWeapon #flags spell minion duration fromItem = true, @@ -50,6 +55,26 @@ local skills, mod, flag, skill = ... fromItem = true, #mods +#skill Barkskin +#flags spell + fromTree = true, + statMap = { + ["armour_+%_per_barkskin_stack"] = { + mod("Armour", "INC", nil, 0, 0, { type = "Multiplier", var = "BarkskinStacks", limitVar = "BarkskinMaxStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["physical_attack_damage_taken_+_per_barkskin_stack"] = { + mod("PhysicalDamageTakenFromAttacks", "BASE", nil, 0, 0, { type = "Multiplier", var = "BarkskinStacks", limitVar = "BarkskinMaxStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"] = { + mod("EvadeChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "MissingBarkskinStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), + }, + ["max_barkskin_stacks"] = { + mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + }, +#mods + #skill BirdAspect #flags cast duration fromItem = true, @@ -463,8 +488,9 @@ local skills, mod, flag, skill = ... div = 1000, }, }, -#baseMod skill("radius", 22) -#baseMod skill("radiusSecondary", 16) +#baseMod skill("radiusSecondary", 22) +#baseMod skill("radiusLabel", "Ice projectile:") +#baseMod skill("radiusSecondaryLabel", "Target area:") #mods #skill TriggeredIcicleNova @@ -550,6 +576,12 @@ local skills, mod, flag, skill = ... #baseMod flag("CannotSplit") #mods +#skill PenanceMark +#flags spell curse duration mark + fromTree = true, +#baseMod skill("debuff", true) +#mods + #skill PhysicalAegis #flags spell fromItem = true, @@ -576,6 +608,28 @@ local skills, mod, flag, skill = ... fromTree = true, #mods +#skill Quieten +#flags spell curse area duration hex + fromTree = true, +#baseMod skill("debuff", true) +#mods + +#skill Ravenous +#flags spell + fromTree = true, + statMap = { + ["ravenous_buff_magnitude"] = { + { + mod("DamageTaken", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "RavenousCorpseConsumed" }), + mult = -1, + }, + { + mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectCond = "RavenousCorpseConsumed" }), + }, + }, + }, +#mods + #skill TriggeredSummonSpider #flags spell minion duration fromItem = true, @@ -658,6 +712,8 @@ local skills, mod, flag, skill = ... skill("radius", "BASE", nil), }, }, +#baseMod skill("radiusLabel", "Orb explosion:") +#baseMod skill("radiusSecondaryLabel", "Corpse explosion:") #mods #skill StormCascadeTriggered diff --git a/src/Export/Skills/spectre.txt b/src/Export/Skills/spectre.txt index c13d8258a9..455c232f68 100644 --- a/src/Export/Skills/spectre.txt +++ b/src/Export/Skills/spectre.txt @@ -956,7 +956,7 @@ skills["HarvestRhexScreechDebuff"] = { #mods #skill GSHellscapeDemonElite1Screech Screech -#flags attack hit area triggerable +#flags spell hit area triggerable #mods #skill TBHellscapePaleLightningBoltSpammableLeft Lightning Bolt diff --git a/src/Export/Skills/sup_dex.txt b/src/Export/Skills/sup_dex.txt index efb08d42c4..88b3a4992b 100644 --- a/src/Export/Skills/sup_dex.txt +++ b/src/Export/Skills/sup_dex.txt @@ -12,11 +12,6 @@ local skills, mod, flag, skill = ... #mods #skill SupportAdditionalAccuracy - statMap = { - ["attack_damage_+%_per_1000_accuracy_rating"] = { - mod("Damage", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", div = 1000, stat = "Accuracy"}) - } - }, #mods #skill SupportArrowNova @@ -67,9 +62,6 @@ local skills, mod, flag, skill = ... #skill SupportCastOnCrit statMap = { - ["support_cast_on_crit_quality_attack_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Attack, 0) - }, ["support_cast_on_crit_spell_damage_+%_final"] = { }, }, @@ -106,13 +98,6 @@ local skills, mod, flag, skill = ... ["cast_on_death_damage_+%_final_while_dead"] = { mod("Damage", "MORE", nil), }, - ["additional_critical_strike_chance_permyriad_while_dead"] = { - mod("CritChance", "BASE", nil), - div = 100 - }, - ["skill_effect_duration_+%_while_dead"] = { - mod("Duration", "INC", nil), - }, ["no_cost"] = { }, }, @@ -157,9 +142,6 @@ local skills, mod, flag, skill = ... ["close_combat_damage_to_close_range_+%"] = { mod("Damage", "INC", nil, bit.bor(ModFlag.Attack, ModFlag.Melee), 0, { type = "Condition", var = "AtCloseRange" }), }, - ["combat_rush_effect_+%"] = { - mod("CombatRushEffect", "INC", nil), - }, ["supported_skill_can_only_use_axe_and_sword"] = { }, }, @@ -185,9 +167,6 @@ local skills, mod, flag, skill = ... #skill SupportDeadlyAilments statMap = { - ["support_better_ailments_hit_damage_+%_final"] = { - mod("Damage", "MORE", nil, ModFlag.Hit), - }, ["support_better_ailments_ailment_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Bleed, KeywordFlag.Poison, KeywordFlag.Ignite)), }, @@ -286,9 +265,6 @@ local skills, mod, flag, skill = ... ["support_hypothermia_cold_damage_over_time_+%_final"] = { mod("ColdDamage", "MORE", nil, 0, KeywordFlag.ColdDot), }, - ["freeze_applies_cold_resistance_+"] = { - mod("ColdResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Condition", var = "Frozen" }), - }, }, #mods @@ -333,22 +309,9 @@ local skills, mod, flag, skill = ... #mods #skill SupportManaLeech - statMap = { - ["damage_+%_per_200_mana_spent_recently"] = { - mod("Damage", "INC", nil, 0, 0, {type = "Multiplier", div = 200, var = "ManaSpentRecently"}) - } - }, #mods #skill SupportMarkOnHit - statMap = { - ["mark_skills_curse_effect_+%"] = { - mod("CurseEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Mark }), - }, - ["marked_enemy_damage_taken_+%"] = { - mod("DamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), - }, - }, #mods #skill SupportGemMirageArcher @@ -363,9 +326,6 @@ local skills, mod, flag, skill = ... ["support_mirage_archer_attack_speed_+%_final"] = { mod("MirageArcherLessAttackSpeed", "BASE", nil), }, - ["mirage_archer_number_of_additional_projectiles"] = { - mod("MirageArcherAdditionalProjectileCount", "BASE", nil) - }, ["summon_mirage_archer_on_hit"] = { mod("MirageArcherMaxCount", "BASE", 1), }, @@ -394,9 +354,6 @@ local skills, mod, flag, skill = ... ["support_pierce_projectile_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Projectile), }, - ["projectile_damage_+%_if_pierced_enemy"] = { - mod("Damage", "INC", nil, ModFlag.Projectile, 0, { type = "StatThreshold", stat = "PiercedCount", threshold = 1 }), - }, }, #mods @@ -433,9 +390,6 @@ local skills, mod, flag, skill = ... ["support_slower_projectiles_damage_+%_final"] = { mod("Damage", "MORE", nil, ModFlag.Projectile), }, - ["projectile_damage_+%_vs_nearby_enemies"] = { - mod("Damage", "INC", nil, ModFlag.Projectile) - }, }, #mods diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index 614dfe8f62..61ce138dbd 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -41,11 +41,6 @@ local skills, mod, flag, skill = ... mod("LightningMax", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), div = 100, }, - ["manaweave_added_cold_damage_%_cost_if_payable"] = { - mod("ColdMin", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), - mod("ColdMax", "BASE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), - div = 100, - }, }, #mods @@ -101,14 +96,6 @@ local skills, mod, flag, skill = ... ["support_cast_while_channelling_triggered_skill_damage_+%_final"] = { mod("TriggeredDamage", "MORE", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), }, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"] = { - mod("EnemyChillEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyShockEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyFreezeEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyScorchEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemyBrittleEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - mod("EnemySapEffect", "INC", nil, 0, 0, { type = "SkillType", skillType = SkillType.Triggered }), - }, }, #mods @@ -143,17 +130,6 @@ local skills, mod, flag, skill = ... #mods #skill SupportChargedMines - statMap = { - ["mine_throwing_speed_+%_per_frenzy_charge"] = { - mod("MineLayingSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }), - }, - ["mine_critical_strike_chance_+%_per_power_charge"] = { - mod("CritChance", "INC", nil, 0, KeywordFlag.Mine, { type = "Multiplier", var = "PowerCharge" }), - }, - ["mine_projectile_speed_+%_per_frenzy_charge"] = { - mod("ProjectileSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "FrenzyCharge" }) - }, - }, #mods #skill SupportConcentratedEffect @@ -194,9 +170,6 @@ local skills, mod, flag, skill = ... #skill SupportCurseOnHit statMap = { - ["damage_vs_cursed_enemies_per_enemy_curse_+%"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Multiplier", var = "CurseOnEnemy" }) - }, ["apply_linked_curses_on_hit_%"] = { --Display only. Handled by SupportCurseOnHitCurse }, @@ -247,22 +220,10 @@ local skills, mod, flag, skill = ... ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), }, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"] = { - mod("MinionModifier", "LIST", { mod = mod("CritChance", "INC", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), - }, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"] = { - mod("MinionModifier", "LIST", { mod = mod("CritMultiplier", "BASE", nil) }, 0, 0, { type = "Condition", var = "EnemyHasDeathmark" }), - }, }, #mods #skill MinionFocusFire - statMap = { - ["resist_all_%"] = { - mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectCond = "EnemyHasDeathmark" }), - mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectCond = "EnemyHasDeathmark" }), - }, - }, #mods #skill SupportDecay @@ -307,13 +268,6 @@ local skills, mod, flag, skill = ... #mods #skill SupportElementalProliferation - statMap = { - ["damage_+%_vs_enemies_per_freeze_shock_ignite"] = { - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Ignited" }), - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), - mod("Damage", "INC", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Shocked" }), - } - }, #mods #skill SupportEnergyShieldLeech @@ -324,9 +278,6 @@ local skills, mod, flag, skill = ... ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "LeechingEnergyShield" }), }, - ["maximum_energy_shield_leech_amount_per_leech_+%"] = { - mod("MaxEnergyShieldLeechRate", "INC", nil) - } }, #mods @@ -356,10 +307,6 @@ local skills, mod, flag, skill = ... ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"] = { mod("MinionModifier", "LIST", { mod = mod("CritMultiplier", "BASE", nil) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }), }, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"] = { - mod("MinionModifier", "LIST", { mod = mod("DamageLifeLeech", "BASE", nil) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }), - div = 100, - }, }, #baseMod mod("MinionModifier", "LIST", { mod = mod("Condition:Adrenaline", "FLAG", true) }, 0, 0, { type = "Condition", var = "FreshMeatActive" }) #mods @@ -445,12 +392,6 @@ local skills, mod, flag, skill = ... div = 60, mod("ExtraMinionSkill", "LIST", { skillId = "InfernalLegion" }), }, - ["minion_burning_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamage", "INC", nil, 0, KeywordFlag.FireDot) }), - }, - ["minion_fire_damage_taken_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamageTaken", "INC", nil) }), - } }, #mods @@ -473,17 +414,6 @@ local skills, mod, flag, skill = ... mod("Condition:HaveLightningInfusion", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "LightningInfusion" }), mod("Condition:HaveChaosInfusion", "FLAG", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ChaosInfusion" }), }, - ["infusion_grants_life_regeneration_rate_per_minute_%"] = { - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "PhysicalInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "FireInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ColdInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "LightningInfusion" }), - mod("LifeRegenPercent", "BASE", true, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Infusion", effectCond = "InfusionActive", modCond = "ChaosInfusion" }), - div = 60 - }, - ["infusion_effect_+%"] = { - mod("InfusionEffect", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - }, }, #baseMod flag("Condition:PhysicalInfusion", { type = "SkillType", skillType = SkillType.Physical }) #baseMod flag("Condition:FireInfusion", { type = "SkillType", skillType = SkillType.Fire }) @@ -550,12 +480,6 @@ local skills, mod, flag, skill = ... ["support_minion_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), }, - ["minion_chance_to_deal_double_damage_%"] = { - mod("MinionModifier", "LIST", { mod = mod("DoubleDamageChance", "BASE", nil) }), - }, - ["minion_ailment_damage_+%"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, KeywordFlag.Ailment) }), - }, }, #mods @@ -572,13 +496,6 @@ local skills, mod, flag, skill = ... ["support_minion_maximum_life_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }), }, - ["minion_life_regeneration_rate_per_minute_%"] = { - mod("MinionModifier", "LIST", { mod = mod("LifeRegenPercent", "BASE", nil) }), - div = 60 - }, - ["minion_damage_+%_on_full_life"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, {type = "Condition", var = "FullLife"}) }), - }, }, #mods @@ -590,12 +507,6 @@ local skills, mod, flag, skill = ... ["support_minion_totem_resistance_elemental_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("ElementalDamage", "MORE", nil) }), }, - ["minion_life_leech_from_elemental_damage_permyriad"] = { - mod("MinionModifier", "LIST", { mod = mod("FireDamageLeech", "BASE", nil) }), - mod("MinionModifier", "LIST", { mod = mod("LightningDamageLeech", "BASE", nil) }), - mod("MinionModifier", "LIST", { mod = mod("ColdDamageLeech", "BASE", nil) }), - div = 100 - }, ["minions_inflict_exposure_on_hit_%_chance"] = { }, }, @@ -609,18 +520,10 @@ local skills, mod, flag, skill = ... ["support_pure_shock_damage_+%_final"] = { mod("Damage", "MORE", nil), }, - ["shock_effect_+%_with_critical_strikes"] = { - mod("EnemyShockEffect", "INC", nil), - }, }, #mods #skill SupportPhysicalToLightning - statMap = { - ["enemies_you_shock_take_%_increased_physical_damage"] = { - mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }, { type = "Condition", var = "Shocked" }), - }, - }, #mods #skill SupportPrismaticBurst @@ -651,15 +554,6 @@ local skills, mod, flag, skill = ... mod("LightningDamage", "MORE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), mult = -100, }, - ["spell_damage_+%_per_10_int"] = { - skill("Damage", nil, { type = "PerStat", stat = "Int", div = 10 }), - }, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"] = { - skill("CritMultiplier", nil, { type = "Condition", var = "DexHigherThanInt" }), - }, - ["area_of_effect_+%_per_50_strength"] = { - skill("Area", nil, { type = "PerStat", stat = "Str", div = 50 }), - }, }, #baseMod skill("radius", 13) #mods @@ -718,9 +612,6 @@ local skills, mod, flag, skill = ... ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"] = { mod("OneHandWeaponDamageAppliesToSpells", "MAX", nil), }, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"] = { - mod("OneHandWeaponDamageAppliesToSpellsWithTwoDifferentTypes", "MAX", nil), - }, }, #mods @@ -754,9 +645,6 @@ local skills, mod, flag, skill = ... ["support_multicast_cast_speed_+%_final"] = { mod("Speed", "MORE", nil, ModFlag.Cast), }, - ["support_spell_echo_final_repeat_damage_+%_final"] = { - mod("RepeatFinalDamage", "MORE", nil, 0, 0, { type = "Condition", var = "CastOnFrostbolt", neg = true }, { type = "Condition", varList = {"averageRepeat", "alwaysFinalRepeat"} }), - } }, #baseMod flag("Condition:HaveSpellEcho") #mods @@ -787,9 +675,6 @@ local skills, mod, flag, skill = ... ["base_number_of_support_ghosts_allowed"] = { mod("ActivePhantasmLimit", "BASE", nil), }, - ["damage_+%_for_non_minions"] = { - -- mod("Damage", "INC", nil, 0, 0, {type = "Actor"}) - }, ["phantasm_minimum_added_physical_damage_to_grant"] = { mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" }) }, @@ -810,9 +695,6 @@ local skills, mod, flag, skill = ... ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"] = { mod("SecondaryDuration", "MORE", nil, 0, KeywordFlag.Brand), }, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"] = { - mod("BrandActivationFrequency", "MORE", nil, 0, 0, {type = "Condition", var = "BrandLastQuarter"}) - }, }, #mods @@ -832,9 +714,6 @@ local skills, mod, flag, skill = ... ["support_unbound_ailments_ailment_damage_+%_final"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Bleed, KeywordFlag.Poison, KeywordFlag.Ignite)), }, - ["base_damage_+%_while_an_ailment_on_you"] = { - mod("Damage", "INC", nil, 0, 0, {type = "Condition", varList = { "Frozen","Chilled","Shocked","Ignited","Scorched","Brittle","Sapped","Poisoned","Bleeding" }}) - } }, #mods diff --git a/src/Export/Skills/sup_str.txt b/src/Export/Skills/sup_str.txt index e9de9302d7..c49b6a1a6b 100644 --- a/src/Export/Skills/sup_str.txt +++ b/src/Export/Skills/sup_str.txt @@ -243,9 +243,6 @@ local skills, mod, flag, skill = ... ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), }, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"] = { - mod("Damage", "INC", nil, 0, 0, { type = "Condition", var = "LostEnduranceChargeInPast8Sec" }), - } }, #mods @@ -278,10 +275,6 @@ local skills, mod, flag, skill = ... mod("FistOfWarCooldown", "BASE", nil), div = 1000, }, - ["ancestral_slam_stun_threshold_reduction_+%"] = { - mod("EnemyStunThreshold", "INC", nil, ModFlag.Attack), - mult = -1, - }, }, #mods @@ -329,10 +322,6 @@ local skills, mod, flag, skill = ... ["fortify_effect_+%"] = { mod("FortifyEffectOnSelf", "INC", nil) }, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"] = { - mod("EnemyPhysicalDamageReduction", "BASE", nil, ModFlag.Hit, 0, { type = "Condition", var = "HaveMaximumFortification"}), - mult = -1, - }, }, #mods @@ -405,11 +394,6 @@ local skills, mod, flag, skill = ... #mods #skill SupportLifeLeech - statMap = { - ["maximum_life_leech_amount_per_leech_+%"] = { - mod("MaxLifeLeechRate", "INC", nil) - } - }, #mods #skill SupportLifetap @@ -428,9 +412,6 @@ local skills, mod, flag, skill = ... ["support_maimed_enemies_physical_damage_taken_+%"] = { mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Maim" }, { type = "Condition", var = "Maimed" }), }, - ["chance_to_bleed_on_hit_%_vs_maimed"] = { - mod("BleedChance", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Maimed" }) - } }, #mods @@ -485,9 +466,6 @@ local skills, mod, flag, skill = ... mod("Speed", "MORE", nil, ModFlag.Attack, nil, { type = "ModFlagOr", modFlags = bit.bor(ModFlag.WeaponMelee, ModFlag.Unarmed) }), mod("Speed", "MORE", nil, ModFlag.Attack, nil, { type = "SkillType", skillType = SkillType.RequiresShield }), }, - ["multistrike_area_of_effect_+%_per_repeat"] = { - mod("RepeatPerRepeatAreaOfEffect", "INC", nil) - } }, #baseMod flag("SupportedByMultistrike") #mods @@ -552,9 +530,6 @@ local skills, mod, flag, skill = ... ["attack_maximum_added_physical_damage_per_10_rage"] = { mod("PhysicalMax", "BASE", nil, bit.bor(ModFlag.Attack, ModFlag.Weapon), 0, { type = "Multiplier", var = "Rage", div = 10 }) }, - ["attack_speed_+%_with_atleast_20_rage"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 20 }) - } }, #mods @@ -651,10 +626,6 @@ local skills, mod, flag, skill = ... ["support_trauma_stun_duration_+%_per_trauma"] = { mod("EnemyStunDuration", "INC", nil, 0, 0, { type = "Multiplier", var = "TraumaStacks" }), }, - ["attack_speed_+%_per_trauma"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "TraumaStacks" }), - mod("SpeedPerTrauma", "INC", nil, ModFlag.Attack, 0), - }, ["support_trauma_base_duration_ms"] = { mod("TraumaDuration", "BASE", nil), div = 1000, diff --git a/src/Export/spec.lua b/src/Export/spec.lua index 620c9c4694..0a80c1e433 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -94,7 +94,7 @@ return { actiontypes={ [1]={ list=false, - name="", + name="Name", refTo="", type="String", width=150 @@ -105,6 +105,20 @@ return { refTo="", type="Int", width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 } }, activesettings={ @@ -4388,33 +4402,26 @@ return { }, [8]={ list=false, - name="", + name="SecondarySupportName", refTo="", type="String", width=150 }, [9]={ - list=false, - name="", - refTo="", - type="ShortKey", - width=150 + list=true, + name="Tags", + refTo="GemTags", + type="Key", + width=390 }, [10]={ - list=false, - name="", - refTo="", - type="String", - width=150 - }, - [11]={ list=false, name="HungryLoopMod", refTo="Mods", type="Key", width=280 }, - [12]={ + [11]={ list=false, name="", refTo="", @@ -4542,29 +4549,6 @@ return { width=100 } }, - grantedeffectqualitytypes={ - [1]={ - list=false, - name="AlternateId", - refTo="", - type="Int", - width=150 - }, - [2]={ - list=false, - name="", - refTo="", - type="String", - width=150 - }, - [3]={ - list=false, - name="DisplayString", - refTo="ClientStrings", - type="Key", - width=170 - } - }, grantedeffects={ [1]={ list=false, @@ -4935,14 +4919,14 @@ return { }, [6]={ list=false, - name="IncrementalEffectiveness", + name="", refTo="", - type="Float", + type="Int", width=150 }, [7]={ list=false, - name="", + name="IncrementalEffectiveness", refTo="", type="Float", width=150 diff --git a/src/Modules/CalcActiveSkill.lua b/src/Modules/CalcActiveSkill.lua index 76dbf4c244..42c9643586 100644 --- a/src/Modules/CalcActiveSkill.lua +++ b/src/Modules/CalcActiveSkill.lua @@ -61,8 +61,16 @@ function calcs.mergeSkillInstanceMods(env, modList, skillEffect, extraStats) for stat, statValue in pairs(stats) do local map = grantedEffect.statMap[stat] if map then - for _, mod in ipairs(map) do - mergeLevelMod(modList, mod, map.value or statValue * (map.mult or 1) / (map.div or 1) + (map.base or 0)) + -- Some mods need different scalars for different stats, but the same value. Putting them in a group allows this + for _, modOrGroup in ipairs(map) do + -- Found a mod, since all mods have names + if modOrGroup.name then + mergeLevelMod(modList, modOrGroup, map.value or statValue * (map.mult or 1) / (map.div or 1) + (map.base or 0)) + else + for _, mod in ipairs(modOrGroup) do + mergeLevelMod(modList, mod, modOrGroup.value or statValue * (modOrGroup.mult or 1) / (modOrGroup.div or 1) + (modOrGroup.base or 0)) + end + end end end end diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index 7f0a30cb95..eb530649e3 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -356,7 +356,7 @@ function calcs.offence(env, actor, activeSkill) if breakdown then local incAreaBreakpointSecondary, moreAreaBreakpointSecondary, redAreaBreakpointSecondary, lessAreaBreakpointSecondary if not skillData.projectileSpeedAppliesToMSAreaOfEffect then - local incAreaBreakpointSecondary, moreAreaBreakpointSecondary, redAreaBreakpointSecondary, lessAreaBreakpointSecondary = calcRadiusBreakpoints(baseRadius, incAreaSecondary, moreAreaSecondary) + incAreaBreakpointSecondary, moreAreaBreakpointSecondary, redAreaBreakpointSecondary, lessAreaBreakpointSecondary = calcRadiusBreakpoints(baseRadius, incAreaSecondary, moreAreaSecondary) end breakdown.AreaOfEffectRadiusSecondary = breakdown.area(baseRadius, output.AreaOfEffectModSecondary, output.AreaOfEffectRadiusSecondary, incAreaBreakpointSecondary, moreAreaBreakpointSecondary, redAreaBreakpointSecondary, lessAreaBreakpointSecondary, skillData.radiusSecondaryLabel) end @@ -473,18 +473,13 @@ function calcs.offence(env, actor, activeSkill) if modDB.conditions["AffectedByEnergyBlade"] then local dmgMod = calcLib.mod(skillModList, skillCfg, "EnergyBladeDamage") - local critMod = calcLib.mod(skillModList, skillCfg, "EnergyBladeCritChance") local speedMod = calcLib.mod(skillModList, skillCfg, "EnergyBladeAttackSpeed") - local shockMod = modDB:Sum("BASE", skillCfg, "EnergyBladeShockChance") - local lightningToChaosMod = modDB:Sum("BASE", skillCfg, "EnergyBladeConvertToChaos") for slotName, weaponData in pairs({ ["Weapon 1"] = "weaponData1", ["Weapon 2"] = "weaponData2" }) do if actor.itemList[slotName] and actor.itemList[slotName].weaponData and actor.itemList[slotName].weaponData[1] and actor[weaponData].name and data.itemBases[actor[weaponData].name] then local weaponBaseData = data.itemBases[actor[weaponData].name].weapon - actor[weaponData].CritChance = weaponBaseData.CritChanceBase * critMod + actor[weaponData].CritChance = weaponBaseData.CritChanceBase actor[weaponData].AttackRate = weaponBaseData.AttackRateBase * speedMod actor[weaponData].Range = weaponBaseData.Range - modDB:NewMod("EnemyShockChance", "BASE", shockMod, "Energy Blade", { type = "GlobalEffect", effectType = "Buff" } ) - modDB:NewMod("LightningDamageConvertToChaos", "BASE", lightningToChaosMod, "Energy Blade", { type = "GlobalEffect", effectType = "Buff" } ) for _, damageType in ipairs(dmgTypeList) do actor[weaponData][damageType.."Min"] = (weaponBaseData[damageType.."Min"] or 0) + m_floor(skillModList:Sum("BASE", skillCfg, "EnergyBladeMin"..damageType) * dmgMod) actor[weaponData][damageType.."Max"] = (weaponBaseData[damageType.."Max"] or 0) + m_floor(skillModList:Sum("BASE", skillCfg, "EnergyBladeMax"..damageType) * dmgMod) @@ -508,11 +503,8 @@ function calcs.offence(env, actor, activeSkill) -- -- account for Spellblade -- Note: we check conditions of Main Hand weapon using actor.itemList as actor.weaponData1 is populated with unarmed values when no weapon slotted. local spellbladeMulti = skillModList:Max(skillCfg, "OneHandWeaponDamageAppliesToSpells") - local spellbladeDiffMulti = skillModList:Max(skillCfg, "OneHandWeaponDamageAppliesToSpellsWithTwoDifferentTypes") if spellbladeMulti and actor.itemList["Weapon 1"] and actor.itemList["Weapon 1"].weaponData and actor.itemList["Weapon 1"].weaponData[1] and weapon1info.melee and weapon1info.oneHand then local multiplier = spellbladeMulti / 100 * (weapon2info and 0.6 or 1) - local diffMulti = actor.weaponData1 and actor.weaponData2.type and actor.weaponData1.type ~= actor.weaponData2.type and spellbladeDiffMulti and spellbladeDiffMulti / 100 * 0.6 or 0 - multiplier = multiplier + diffMulti for _, damageType in ipairs(dmgTypeList) do skillModList:NewMod(damageType.."Min", "BASE", m_floor((actor.weaponData1[damageType.."Min"] or 0) * multiplier), "Spellblade Main Hand", ModFlag.Spell) skillModList:NewMod(damageType.."Max", "BASE", m_floor((actor.weaponData1[damageType.."Max"] or 0) * multiplier), "Spellblade Main Hand", ModFlag.Spell) @@ -1381,6 +1373,33 @@ function calcs.offence(env, actor, activeSkill) t_insert(breakdown.DurationSecondary, s_format("= %.3fs", output.DurationSecondary)) end end + durationBase = (skillData.durationTertiary or 0) + skillModList:Sum("BASE", skillCfg, "Duration", "TertiaryDuration") + if durationBase > 0 then + local durationMod = calcLib.mod(skillModList, skillCfg, "Duration", "TertiaryDuration", "SkillAndDamagingAilmentDuration", skillData.mineDurationAppliesToSkill and "MineDuration" or nil) + durationMod = m_max(durationMod, 0) + output.DurationTertiary = durationBase * durationMod + if skillData.debuffTertiary then + output.DurationTertiary = output.DurationTertiary * debuffDurationMult + end + output.DurationTertiary = m_ceil(output.DurationTertiary * data.misc.ServerTickRate) / data.misc.ServerTickRate + if breakdown and output.DurationTertiary ~= durationBase then + breakdown.TertiaryDurationMod = breakdown.mod(skillModList, skillCfg, "Duration", "TertiaryDuration", "SkillAndDamagingAilmentDuration", skillData.mineDurationAppliesToSkill and "MineDuration" or nil) + if breakdown.TertiaryDurationMod then + t_insert(breakdown.TertiaryDurationMod, 1, "Tertiary duration:") + end + breakdown.DurationTertiary = { + s_format("%.2fs ^8(base)", durationBase), + } + if output.DurationMod ~= 1 then + t_insert(breakdown.DurationTertiary, s_format("x %.4f ^8(duration modifier)", durationMod)) + end + if skillData.debuffTertiary and debuffDurationMult ~= 1 then + t_insert(breakdown.DurationTertiary, s_format("/ %.3f ^8(debuff expires slower/faster)", 1 / debuffDurationMult)) + end + t_insert(breakdown.DurationTertiary, s_format("rounded up to nearest server tick")) + t_insert(breakdown.DurationTertiary, s_format("= %.3fs", output.DurationTertiary)) + end + end durationBase = (skillData.auraDuration or 0) if durationBase > 0 then local durationMod = calcLib.mod(skillModList, skillCfg, "Duration", "SkillAndDamagingAilmentDuration") @@ -1447,7 +1466,7 @@ function calcs.offence(env, actor, activeSkill) do if not activeSkill.skillTypes[SkillType.Vaal] then -- exclude vaal skills as we currently don't support soul generation or gain prevention. local cooldown = output.Cooldown or 0 - for _, durationType in pairs({ "Duration", "DurationSecondary", "AuraDuration", "reserveDuration" }) do + for _, durationType in pairs({ "Duration", "DurationSecondary", "DurationTertiary", "AuraDuration", "reserveDuration" }) do local duration = output[durationType] or 0 if (duration ~= 0 and cooldown ~= 0) then local uptime = 1 @@ -2126,7 +2145,7 @@ function calcs.offence(env, actor, activeSkill) output.HitTime = skillData.hitTimeOverride output.HitSpeed = 1 / output.HitTime --Brands always have hitTimeOverride - if skillCfg.skillName and skillCfg.skillName:match("Brand") then + if skillCfg.skillName and skillCfg.skillName:match("Brand") and not skillModList:Flag(nil, "UnlimitedBrandDuration") then output.BrandTicks = m_floor(output.Duration * output.HitSpeed) end elseif skillData.hitTimeMultiplier and output.Time and not skillData.triggeredOnDeath then diff --git a/src/Modules/CalcPerform.lua b/src/Modules/CalcPerform.lua index 2d50761d62..a90599ab5f 100644 --- a/src/Modules/CalcPerform.lua +++ b/src/Modules/CalcPerform.lua @@ -835,7 +835,6 @@ local function doActorMisc(env, actor) end if modDB:Flag(nil, "Condition:CanGainRage") or modDB:Sum("BASE", nil, "RageRegen") > 0 then output.MaximumRage = modDB:Sum("BASE", skillCfg, "MaximumRage") - modDB.multipliers["MaxRageVortexSacrifice"] = output.MaximumRage / 4 modDB:NewMod("Multiplier:Rage", "BASE", 1, "Base", { type = "Multiplier", var = "RageStack", limit = output.MaximumRage }) output.Rage = modDB:Sum("BASE", skillCfg, "Multiplier:Rage") end @@ -1208,7 +1207,7 @@ function calcs.perform(env, fullDPSSkipEHP) seismicStunEffect = m_floor(seismicStunEffect * warcryPowerBonus * buff_inc) / warcryPowerBonus end env.player.modDB:NewMod("NumSeismicExerts", "BASE", activeSkill.skillModList:Sum("BASE", env.player.mainSkill.skillCfg, "SeismicExertedAttacks") + extraExertions) - env.player.modDB:NewMod("SeismicIncAoEPerExert", "BASE", activeSkill.skillModList:Sum("BASE", env.player.mainSkill.skillCfg, "SeismicAoEMultiplier")) + env.player.modDB:NewMod("SeismicIncAoEPerExert", "BASE", activeSkill.skillModList:Sum("BASE", env.player.mainSkill.skillCfg, "SeismicAoEMultiplier")) if env.mode_effective then env.player.modDB:NewMod("EnemyStunThreshold", "INC", -seismicStunEffect * uptime, "Seismic Cry Buff", { type = "Multiplier", var = "WarcryPower", div = 5, limit = 6 }) end diff --git a/src/Modules/CalcSections.lua b/src/Modules/CalcSections.lua index 831697f087..971008b2ca 100644 --- a/src/Modules/CalcSections.lua +++ b/src/Modules/CalcSections.lua @@ -630,19 +630,22 @@ return { }, }, { label = "Duration Mod", flag = "duration", { format = "x {4:output:DurationMod}", { breakdown = "DurationMod" }, - { breakdown = "SecondaryDurationMod" }, - { modName = { "Duration", "PrimaryDuration", "SecondaryDuration", "SkillAndDamagingAilmentDuration" }, cfg = "skill" }, + { breakdown = "SecondaryDurationMod" }, + { breakdown = "TertiaryDurationMod" }, + { modName = { "Duration", "PrimaryDuration", "SecondaryDuration", "TertiaryDuration", "SkillAndDamagingAilmentDuration" }, cfg = "skill" }, }, }, { label = "Skill Duration", flag = "duration", haveOutput = "Duration", { format = "{3:output:Duration}s", { breakdown = "Duration" }, }, }, { label = "Secondary Duration", flag = "duration", haveOutput = "DurationSecondary", { format = "{3:output:DurationSecondary}s", { breakdown = "DurationSecondary" }, }, }, + { label = "Tertiary Duration", flag = "duration", haveOutput = "DurationTertiary", { format = "{3:output:DurationTertiary}s", { breakdown = "DurationTertiary" }, }, }, { label = "Aura Duration", haveOutput = "AuraDuration", { format = "{3:output:AuraDuration}s", { breakdown = "AuraDuration" }, }, }, { label = "Reserve Duration", haveOutput = "ReserveDuration", { format = "{3:output:ReserveDuration}s", { breakdown = "ReserveDuration" }, }, }, { label = "Soul Gain Prevent.", haveOutput = "SoulGainPreventionDuration", { format = "{3:output:SoulGainPreventionDuration}s", { breakdown = "SoulGainPreventionDuration" }, }, }, { label = "Uptime", haveOutput = "DurationUptime", { format = "{2:output:DurationUptime}%", { breakdown = "DurationUptime" }, }, }, { label = "Secondary Uptime", haveOutput = "DurationSecondaryUptime", { format = "{2:output:DurationSecondaryUptime}%", { breakdown = "DurationSecondaryUptime" }, }, }, + { label = "Tertiary Uptime", haveOutput = "DurationTertiaryUptime", { format = "{2:output:DurationTertiaryUptime}%", { breakdown = "DurationTertiaryUptime" }, }, }, { label = "Aura Uptime", haveOutput = "AuraDurationUptime", { format = "{2:output:AuraDurationUptime}%", { breakdown = "AuraDurationUptime" }, }, }, { label = "Reserve Uptime", haveOutput = "ReserveDurationUptime", { format = "{2:output:ReserveDurationUptime}%", { breakdown = "ReserveDurationUptime" }, }, }, - { label = "Sustainable Trauma", haveOutput = "SustainableTrauma", { format = "{0:output:SustainableTrauma}", { breakdown = "SustainableTrauma" }, { modName = { "SpeedPerTrauma", "ExtraTrauma", "RepeatCount", "Duration", "PrimaryDuration", "SecondaryDuration", "SkillAndDamagingAilmentDuration"}, cfg = "skill" }, }, }, + { label = "Sustainable Trauma", haveOutput = "SustainableTrauma", { format = "{0:output:SustainableTrauma}", { breakdown = "SustainableTrauma" }, { modName = { "ExtraTrauma", "RepeatCount", "Duration", "PrimaryDuration", "SecondaryDuration", "SkillAndDamagingAilmentDuration"}, cfg = "skill" }, }, }, { label = "Repeat Count", haveOutput = "RepeatCount", { format = "{output:Repeats}", { modName = { "RepeatCount" }, cfg = "skill" }, }, }, { label = "Projectile Count", flag = "projectile", { format = "{output:ProjectileCount}", { modName = { "NoAdditionalProjectiles" , "ProjectileCount" }, cfg = "skill" }, }, }, { label = "Pierce Count", haveOutput = "PierceCount", { format = "{output:PierceCountString}", { modName = { "CannotPierce", "PierceCount", "PierceAllTargets" }, cfg = "skill" }, }, }, diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index 3d101d7aeb..117bb86c53 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -279,6 +279,11 @@ return { { var = "bannerStages", type = "count", label = "Banner Stages:", ifSkill = { "Dread Banner", "War Banner", "Defiance Banner" }, apply = function(val, modList, enemyModList) modList:NewMod("Multiplier:BannerStage", "BASE", m_min(val, 50), "Config") end }, + { label = "Barkskin:", ifSkill = "Barkskin" }, + { var = "barkskinStacks", type = "count", label = "# of Barkskin Stacks:", ifSkill = "Barkskin", apply = function(val, modList, enemyModList) + modList:NewMod("Multiplier:BarkskinStacks", "BASE", m_min(val, 10), "Config") + modList:NewMod("Multiplier:MissingBarkskinStacks", "BASE", m_max(-val, -10), "Config") + end }, { label = "Bladestorm:", ifSkill = "Bladestorm" }, { var = "bladestormInBloodstorm", type = "check", label = "Are you in a Bloodstorm?", ifSkill = "Bladestorm", apply = function(val, modList, enemyModList) modList:NewMod("Condition:BladestormInBloodstorm", "FLAG", true, "Config", { type = "SkillName", skillName = "Bladestorm" }) @@ -1351,6 +1356,9 @@ Huge sets the radius to 11. modList:NewMod("Multiplier:CorpseConsumedRecently", "BASE", val, "Config", { type = "Condition", var = "Combat" }) modList:NewMod("Condition:ConsumedCorpseRecently", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) end }, + { var = "conditionRavenousCorpseConsumed", type = "check", label = "Has Ravenous consumed a corpse?", ifSkill = "Ravenous", implyCond = "ConsumedCorpseRecently", tooltip = "Corpse must be the same type as the monster you're fighting.\nThis also implies you have 'Consumed a corpse Recently'", apply = function(val, modList, enemyModList) + modList:NewMod("Condition:RavenousCorpseConsumed", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) + end }, { var = "multiplierWarcryUsedRecently", type = "count", label = "# of Warcries Used Recently:", ifMult = "WarcryUsedRecently", implyCondList = {"UsedWarcryRecently", "UsedWarcryInPast8Seconds", "UsedSkillRecently"}, tooltip = "This also implies you have 'Used a Warcry Recently', 'Used a Warcry in the past 8 seconds', and 'Used a Skill Recently'", apply = function(val, modList, enemyModList) modList:NewMod("Multiplier:WarcryUsedRecently", "BASE", m_min(val, 100), "Config", { type = "Condition", var = "Combat" }) modList:NewMod("Condition:UsedWarcryRecently", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) @@ -1508,6 +1516,9 @@ Huge sets the radius to 11. { var = "conditionEnemyDebilitated", type = "check", label = "Is the enemy Debilitated?", ifMod = "DebilitateChance", tooltip = "Debilitated enemies deal 10% less damage.", apply = function(val, modList, enemyModList) enemyModList:NewMod("Condition:Debilitated", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) end }, + { var = "conditionEnemyPacified", type = "check", label = "Is the enemy Pacified?", ifSkill = "Pacify", tooltip = "Enemies are Pacified after 60% of Pacify's duration has expired", apply = function(val, modList, enemyModList) + enemyModList:NewMod("Condition:Pacified", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) + end }, { var = "conditionEnemyBurning", type = "check", label = "Is the enemy ^xB97123Burning?", ifEnemyCond = "Burning", apply = function(val, modList, enemyModList) enemyModList:NewMod("Condition:Burning", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) end }, diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index adb938406d..01f2014176 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -818,8 +818,15 @@ for skillId, grantedEffect in pairs(data.skills) do setmetatable(grantedEffect.statMap, data.skillStatMapMeta) grantedEffect.statMap._grantedEffect = grantedEffect for _, map in pairs(grantedEffect.statMap) do - for _, mod in ipairs(map) do - processMod(grantedEffect, mod) + -- Some mods need different scalars for different stats, but the same value. Putting them in a group allows this + for _, modOrGroup in ipairs(map) do + if modOrGroup.name then + processMod(grantedEffect, modOrGroup) + else + for _, mod in ipairs(modOrGroup) do + processMod(grantedEffect, mod) + end + end end end end diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 6423e166b4..9ea0595026 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -348,6 +348,7 @@ local modNameList = { ["to avoid being frozen"] = "AvoidFreeze", ["to avoid being chilled"] = "AvoidChill", ["to avoid being ignited"] = "AvoidIgnite", + ["to avoid non-damaging ailments on you"] = { "AvoidShock", "AvoidFreeze", "AvoidChill", "AvoidSap", "AvoidBrittle", "AvoidScorch" }, ["to avoid blind"] = "AvoidBlind", ["to avoid elemental ailments"] = "AvoidElementalAilments", ["to avoid elemental status ailments"] = "AvoidElementalAilments", @@ -703,6 +704,7 @@ local modNameList = { ["duration of ailments you inflict"] = "EnemyAilmentDuration", ["duration of ailments inflicted"] = "EnemyAilmentDuration", ["duration of ailments inflicted on you"] = "SelfAilmentDuration", + ["duration of damaging ailments on you"] = { "SelfIgniteDuration" , "SelfBleedDuration", "SelfPoisonDuration" }, -- Other ailments ["to poison"] = "PoisonChance", ["to cause poison"] = "PoisonChance", @@ -1282,6 +1284,8 @@ local modTagList = { ["per animated weapon"] = { tag = { type = "Multiplier", var = "AnimatedWeapon", actor = "parent" } }, ["per grasping vine"] = { tag = { type = "Multiplier", var = "GraspingVinesCount" } }, ["per fragile regrowth"] = { tag = { type = "Multiplier", var = "FragileRegrowthCount" } }, + ["per bark"] = { tag = { type = "Multiplier", var = "BarkskinStacks" } }, + ["per bark below maximum"] = { tag = { type = "Multiplier", var = "MissingBarkskinStacks" } }, ["per allocated mastery passive skill"] = { tag = { type = "Multiplier", var = "AllocatedMastery" } }, ["per allocated notable passive skill"] = { tag = { type = "Multiplier", var = "AllocatedNotable" } }, ["for each different type of mastery you have allocated"] = { tag = { type = "Multiplier", var = "AllocatedMasteryType" } }, From ec6a17e9a7f95b5e57979ff9a8d54f5908a0f3b6 Mon Sep 17 00:00:00 2001 From: Morten Tychsen Clausen <48551928+mortentc@users.noreply.github.com> Date: Mon, 11 Dec 2023 10:48:23 +0100 Subject: [PATCH 12/31] Fix ES Bypass not overriding sources of negative bypass (#6965) * fix es bypass * Revert to using the correct mods, but make them override mods * Satisfy spellchecker * Add tests * Fix spelling --------- Co-authored-by: Wires77 --- spec/System/TestDefence_spec.lua | 41 ++++++++++++++++++++++++++++++++ src/Data/ModCache.lua | 8 +++---- src/Modules/CalcDefence.lua | 2 +- src/Modules/ModParser.lua | 13 +++++----- 4 files changed, 52 insertions(+), 12 deletions(-) diff --git a/spec/System/TestDefence_spec.lua b/spec/System/TestDefence_spec.lua index c9f733a970..e03890fd60 100644 --- a/spec/System/TestDefence_spec.lua +++ b/spec/System/TestDefence_spec.lua @@ -601,4 +601,45 @@ describe("TestDefence", function() assert.are.equals(0, round(poolsRemaining.Life)) assert.are.equals(1000, round(poolsRemaining.Mana)) end) + + it("energy shield bypass tests #pet", function() + -- Negative overrides positive + build.configTab.input.customMods = [[ + +40 to maximum life + +100 to energy shield + Chaos damage does not bypass energy shield + You have no intelligence + +60% to all resistances + ]] + build.configTab:BuildModList() + runCallback("OnFrame") + assert.are.equals(200, build.calcsTab.calcsOutput.FireMaximumHitTaken) + assert.are.equals(200, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + -- Chaos damage should still bypass + build.configTab.input.customMods = build.configTab.input.customMods .. "\nAll damage taken bypasses energy shield" + build.configTab:BuildModList() + runCallback("OnFrame") + assert.are.equals(100, build.calcsTab.calcsOutput.FireMaximumHitTaken) + assert.are.equals(100, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + + -- Make sure we can't reach over 100% bypass + build.configTab.input.customMods = [[ + +40 to maximum life + +100 to energy shield + Chaos damage does not bypass energy shield + 50% of chaos damage taken does not bypass energy shield + You have no intelligence + +60% to all resistances + ]] + build.configTab:BuildModList() + runCallback("OnFrame") + assert.are.equals(200, build.calcsTab.calcsOutput.FireMaximumHitTaken) + assert.are.equals(200, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + -- Chaos damage should still bypass + build.configTab.input.customMods = build.configTab.input.customMods .. "\nAll damage taken bypasses energy shield" + build.configTab:BuildModList() + runCallback("OnFrame") + assert.are.equals(100, build.calcsTab.calcsOutput.FireMaximumHitTaken) + assert.are.equals(100, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + end) end) \ No newline at end of file diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 2cbb3df174..bb06b8c1b8 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -6467,7 +6467,7 @@ c["All Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock", c["All Damage from Hits with This Weapon can Poison"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true},[3]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil} c["All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines"]={{[1]={[1]={threshold=3,type="MultiplierThreshold",var="GraspingVinesAffectingEnemy"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100},[2]={[1]={threshold=3,type="MultiplierThreshold",var="GraspingVinesAffectingEnemy"},flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true},[3]={[1]={threshold=3,type="MultiplierThreshold",var="GraspingVinesAffectingEnemy"},flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true},[4]={[1]={threshold=3,type="MultiplierThreshold",var="GraspingVinesAffectingEnemy"},flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil} c["All Damage inflicts Poison while affected by Glorious Madness"]={{[1]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100},[2]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true},[3]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true},[4]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil} -c["All Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="BASE",value=100},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="BASE",value=100}},nil} +c["All Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="OVERRIDE",value=100},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="OVERRIDE",value=100},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="OVERRIDE",value=100},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="OVERRIDE",value=100},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="OVERRIDE",value=100}},nil} c["All Damage with Hits can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil} c["All Damage with Maces and Sceptres inflicts Chill"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil} c["All Elemental Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToChaos",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=100}},nil} @@ -7389,10 +7389,8 @@ c["Damage of Enemies Hitting you is Unlucky while you are on Full Life"]={nil,"D c["Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped"]={nil,"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped "} c["Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped You are Hexproof if you have a Magic Ring in right slot"]={nil,"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped You are Hexproof if you have a Magic Ring in right slot "} c["Damage of Hits against you is Lucky"]={nil,"Damage of Hits is Lucky "} -c["Damage taken from Blocked Hits cannot bypass Energy Shield"]={nil,"Damage taken from Blocked Hits cannot bypass Energy Shield "} -c["Damage taken from Blocked Hits cannot bypass Energy Shield Damage taken from Unblocked hits always bypasses Energy Shield"]={nil,"Damage taken from Blocked Hits cannot bypass Energy Shield Damage taken from Unblocked hits always bypasses Energy Shield "} -c["Damage taken from Unblocked hits always bypasses Energy Shield"]={nil,"Damage taken from Unblocked hits always bypasses Energy Shield "} -c["Damage taken from Unblocked hits always bypasses Energy Shield Glancing Blows"]={nil,"Damage taken from Unblocked hits always bypasses Energy Shield Glancing Blows "} +c["Damage taken from Blocked Hits cannot bypass Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="EVBypass"},flags=0,keywordFlags=0,name="BlockedDamageDoesntBypassES",type="FLAG",value=true}},nil} +c["Damage taken from Unblocked hits always bypasses Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="EVBypass"},flags=0,keywordFlags=0,name="UnblockedDamageDoesBypassES",type="FLAG",value=true}},nil} c["Damage to Surrounding Targets"]={nil,"Damage to Surrounding Targets "} c["Damage with Hits from Socketed Vaal Skills is Lucky"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}}}},nil} c["Damage with Weapons Penetrates 2% Elemental Resistances"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=2}},nil} diff --git a/src/Modules/CalcDefence.lua b/src/Modules/CalcDefence.lua index f80b8e1019..9602f367da 100644 --- a/src/Modules/CalcDefence.lua +++ b/src/Modules/CalcDefence.lua @@ -1886,7 +1886,7 @@ function calcs.buildDefenceEstimations(env, actor) output[damageType.."EnergyShieldBypass"] = 100 output.AnyBypass = true else - output[damageType.."EnergyShieldBypass"] = modDB:Sum("BASE", nil, damageType.."EnergyShieldBypass") or 0 + output[damageType.."EnergyShieldBypass"] = m_max(modDB:Sum("BASE", nil, damageType.."EnergyShieldBypass") or 0, modDB:Sum("OVERRIDE", nil, damageType.."EnergyShieldBypass") or 0) if output[damageType.."EnergyShieldBypass"] ~= 0 then output.AnyBypass = true end diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 9ea0595026..fb4772ab9c 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -2065,10 +2065,11 @@ local specialModList = { ["gain no inherent bonuses from dexterity"] = { flag("NoDexterityAttributeBonuses") }, ["gain no inherent bonuses from intelligence"] = { flag("NoIntelligenceAttributeBonuses") }, ["all damage taken bypasses energy shield"] = { - mod("PhysicalEnergyShieldBypass", "BASE", 100), - mod("LightningEnergyShieldBypass", "BASE", 100), - mod("ColdEnergyShieldBypass", "BASE", 100), - mod("FireEnergyShieldBypass", "BASE", 100), + mod("PhysicalEnergyShieldBypass", "OVERRIDE", 100), + mod("LightningEnergyShieldBypass", "OVERRIDE", 100), + mod("ColdEnergyShieldBypass", "OVERRIDE", 100), + mod("FireEnergyShieldBypass", "OVERRIDE", 100), + mod("ChaosEnergyShieldBypass", "OVERRIDE", 100), -- Allows override of "chaos damage does not bypass energy shield" and similar mods }, ["physical damage taken bypasses energy shield"] = { mod("PhysicalEnergyShieldBypass", "BASE", 100), @@ -3913,8 +3914,8 @@ local specialModList = { ["cannot block spells"] = { flag("CannotBlockSpells") }, ["cannot block spell damage"] = { flag("CannotBlockSpells") }, ["monsters cannot block your attacks"] = { mod("EnemyModifier", "LIST", { mod = flag("CannotBlockAttacks") }) }, - ["damage from blocked hits cannot bypass energy shield"] = { flag("BlockedDamageDoesntBypassES", { type = "Condition", var = "EVBypass", neg = true }) }, - ["damage from unblocked hits always bypasses energy shield"] = { flag("UnblockedDamageDoesBypassES", { type = "Condition", var = "EVBypass", neg = true }) }, + ["damage t?a?k?e?n? from blocked hits cannot bypass energy shield"] = { flag("BlockedDamageDoesntBypassES", { type = "Condition", var = "EVBypass", neg = true }) }, + ["damage t?a?k?e?n? from unblocked hits always bypasses energy shield"] = { flag("UnblockedDamageDoesBypassES", { type = "Condition", var = "EVBypass", neg = true }) }, ["recover (%d+) life when you block"] = function(num) return { mod("LifeOnBlock", "BASE", num) } end, ["recover (%d+) energy shield when you block spell damage"] = function(num) return { mod("EnergyShieldOnSpellBlock", "BASE", num) } end, ["recover (%d+) energy shield when you suppress spell damage"] = function(num) return { mod("EnergyShieldOnSuppress", "BASE", num) } end, From 6bae0f859fbd95eb45f8c51b1fb22bf5399071fe Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Mon, 11 Dec 2023 23:20:25 +1100 Subject: [PATCH 13/31] Add support for Tincture Implicits --- src/Data/ModCache.lua | 24 ++++++++++++++++++++++++ src/Modules/CalcOffence.lua | 15 ++++++++++++--- src/Modules/ConfigOptions.lua | 3 +++ src/Modules/ModParser.lua | 8 ++++++++ 4 files changed, 47 insertions(+), 3 deletions(-) diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index bb06b8c1b8..f56ececcd6 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -421,6 +421,7 @@ c["+15 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil} c["+15 to maximum Fortification while affected by Glorious Madness"]={{[1]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=15}},nil} c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil} +c["+15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Attack Damage if you have not Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} @@ -860,6 +861,7 @@ c["+30 to maximum Mana per Allocated Journey Tattoo of the Mind"]={{[1]={[1]={ty c["+30% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil} c["+30% Chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil} c["+30% Chaos Resistance against Damage Over Time"]={{[1]={flags=8,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil} +c["+30% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=30}},nil} c["+30% to Brand Critical Strike Multiplier"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil} c["+30% to Chaos Resistance while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil} @@ -1335,6 +1337,7 @@ c["+80% to Critical Strike Multiplier with One Handed Melee Weapons"]={{[1]={fla c["+800 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil} c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil} c["+800 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=800}},nil} +c["+800 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil} c["+800 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=800}},nil} c["+84 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=84}},nil} c["+84 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=84}},nil} @@ -1474,6 +1477,7 @@ c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loot c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil} c["0% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0}},nil} c["0% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0}},nil} +c["0% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-0}},nil} c["0.2% of Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.2}},nil} c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil} c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.2}},nil} @@ -2728,6 +2732,7 @@ c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",typ c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil} c["145% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=145}},nil} c["146% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=146}},nil} +c["15 to 289 Added Lightning Damage with Wand Attacks"]={{[1]={flags=8388612,keywordFlags=0,name="LightningMin",type="BASE",value=15},[2]={flags=8388612,keywordFlags=0,name="LightningMax",type="BASE",value=289}},nil} c["15% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["15% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} @@ -2985,6 +2990,7 @@ c["150% increased Critical Strike Chance against Enemies on Consecrated Ground d c["150% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=150}},nil} +c["150% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=150}}," of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels "} c["150% increased Elemental Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil} c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil} c["150% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=150},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=150},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=150}},nil} @@ -3091,6 +3097,7 @@ c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["175% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=175}},nil} c["175% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=175}},nil} c["175% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=175}},nil} +c["18 to 347 Added Lightning Damage with Wand Attacks"]={{[1]={flags=8388612,keywordFlags=0,name="LightningMin",type="BASE",value=18},[2]={flags=8388612,keywordFlags=0,name="LightningMax",type="BASE",value=347}},nil} c["18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil} c["18% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil} c["18% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil} @@ -3968,6 +3975,7 @@ c["25% increased Raised Zombie Size"]={{}," Size "} c["25% increased Raised Zombie Size Enemies Killed by Zombies' Hits Explode, dealing 20% of their Life as Fire Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}}," Size Enemies Killed by Zombies' Hits Explode, dealing 20% of their as Fire Damage "} c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil} c["25% increased Rarity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil} +c["25% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=25}},nil} c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil} c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={[1]={div=200,limit=2000,limitTotal=true,type="Multiplier",var="ManaSpentRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil} @@ -4800,6 +4808,7 @@ c["40% more Maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="Skill c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil} c["40% of Cold Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=40}},nil} c["40% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=40}},nil} +c["40% of Elemental Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsPhysical",type="BASE",value=40}},nil} c["40% of Fire Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsLightning",type="BASE",value=40}},nil} c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=40}},nil} c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," taken reflected to Attacker "} @@ -5017,6 +5026,7 @@ c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="I c["5% more Damage per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=5}},nil} c["5% more chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=5}},nil} c["5% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=5}},nil} +c["5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{}," Leech is Instant per Enemy Power "} c["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil} c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil} c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil} @@ -7748,6 +7758,7 @@ c["Gain 1 Power Charge on use Gain 3 Endurance Charge on use"]={{}," Power Charg c["Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage on Hit with Attacks, no more than once every 0.3 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy"]={{[1]={[1]={actor="enemy",div=1,type="Multiplier",var="ChillEffect"},flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=1}},nil} +c["Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy"]={{[1]={[1]={actor="enemy",div=2,type="Multiplier",var="ShockEffect"},flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=1}},nil} c["Gain 1% of Physical Damage as Extra Fire Damage per 1 Rage"]={{[1]={[1]={div=1,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=1}},nil} c["Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil} c["Gain 10 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=10}},nil} @@ -8184,6 +8195,7 @@ c["Grants Level 20 Summon Sentinel of Radiance Skill"]={{[1]={flags=0,keywordFla c["Grants Level 20 Thirst for Blood Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="VampiricIcon"}}},nil} c["Grants Level 20 Unhinge Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Unhinge"}}},nil} c["Grants Level 21 Despair Curse Aura during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Despair"}}},nil} +c["Grants Level 21 Vulnerability Curse Aura during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Vulnerability"}}},nil} c["Grants Level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil} c["Grants Level 22 Hatred Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Hatred"}}},nil} c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="AccuracyAndCritsAura"}}},nil} @@ -8325,6 +8337,8 @@ c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[ c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["Hits with this Weapon gain 100% of Physical Damage as Extra Cold or Lightning Damage"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=50},[2]={[1]={neg=true,type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=100}},nil} c["Hits with this Weapon gain 88% of Physical Damage as Extra Cold or Lightning Damage"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=44},[2]={[1]={neg=true,type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=88}},nil} +c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}," per Enemy Power "} +c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power 5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Condition",var="{Hand}Attack"},[4]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}," per Enemy Power 5% of Leech is Instant per Enemy Power "} c["Hollow Palm Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Hollow Palm Technique"}},nil} c["If Amethyst Flask Charges are consumed, 25% of Physical Damage as Extra Chaos Damage"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="UsingAmethystFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil} c["If Bismuth Flask Charges are consumed, Penetrate 20% Elemental Resistances"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="UsingBismuthFlask"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=20}},nil} @@ -8569,11 +8583,16 @@ c["Lose 3% of Mana when you use an Attack Skill"]={{[1]={flags=0,keywordFlags=0, c["Lose 40 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=40}},nil} c["Lose 40 Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-40}}," when you use a Skill "} c["Lose 5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldDegenPercent",type="BASE",value=5}},nil} +c["Lose 500 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeDegen",type="BASE",value=500}},nil} c["Lose 7% of maximum Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=7}},nil} c["Lose 80 Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-80}}," when you use a Skill "} c["Lose 80 Mana when you use a Skill Gain 20 Energy Shield per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-80}}," when you use a Skill Gain 20 Energy Shield per Enemy Killed "} c["Lose Adrenaline when you cease to be Flame-Touched"]={{},nil} c["Lose Souls gained from Soul Eater when you use a Flask"]={nil,"Lose Souls gained from Soul Eater when you use a Flask "} +c["Lose a Frenzy Charge each second"]={nil,"Lose a Frenzy Charge each second "} +c["Lose a Frenzy Charge each second Corrupted"]={nil,"Lose a Frenzy Charge each second Corrupted "} +c["Lose a Power Charge each second"]={nil,"Lose a Power Charge each second "} +c["Lose a Power Charge each second Corrupted"]={nil,"Lose a Power Charge each second Corrupted "} c["Lose a Power Charge each second if you have not Detonated Mines Recently"]={nil,"Lose a Power Charge each second if you have not Detonated Mines Recently "} c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "} c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value "} @@ -8596,6 +8615,8 @@ c["Lose all Power Charges on reaching Maximum Power Charges Shocks you when you c["Lose all Power Charges when you Block"]={nil,"Lose all Power Charges when you Block "} c["Lose an Eaten Soul every 3 seconds while no Unique Enemy is in your Presence"]={nil,"Lose an Eaten Soul every 3 seconds while no Unique Enemy is in your Presence "} c["Lose an Eaten Soul every 3 seconds while no Unique Enemy is in your Presence Maximum 50 Eaten Souls"]={nil,"Lose an Eaten Soul every 3 seconds while no Unique Enemy is in your Presence Maximum 50 Eaten Souls "} +c["Lose an Endurance Charge each second"]={nil,"Lose an Endurance Charge each second "} +c["Lose an Endurance Charge each second Corrupted"]={nil,"Lose an Endurance Charge each second Corrupted "} c["Lose no Experience when you die because a Linked target died"]={nil,"Lose no Experience when you die because a Linked target died "} c["Loses all Charges when you enter a new area"]={nil,"Loses all Charges when you enter a new area "} c["Loses all Charges when you enter a new area Consumes Maximum Charges to use"]={nil,"Loses all Charges when you enter a new area Consumes Maximum Charges to use "} @@ -10532,6 +10553,7 @@ c["Spells Triggered this way have 150% more Cost +28% to Fire Damage over Time M c["Spells Triggered this way have 150% more Cost Attacks with this Weapon deal Double Damage"]={nil,"Spells Triggered this way have 150% more Cost Attacks with this Weapon deal Double Damage "} c["Spells cast by Totems deal 25% increased Damage"]={{[1]={flags=2,keywordFlags=16384,name="Damage",type="INC",value=25}},nil} c["Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it"]={nil,"Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it "} +c["Spells deal added Chaos Damage equal to 20% of your maximum Life"]={nil,"dded Chaos Damage equal to 20% of your maximum Life "} c["Spells fire an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Spells have 10% reduced Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil} c["Spells have 30% increased Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} @@ -11256,6 +11278,8 @@ c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use "} c["You take 10% of your maximum Life as Chaos Damage on use You take 50% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You take 50% of your maximum Life as Chaos Damage on use "} c["You take 10% reduced Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=10}},nil} +c["You take 100% of Elemental Damage from Blocked Hits"]={nil,"You take 100% of Elemental Damage from Blocked Hits "} +c["You take 100% of Elemental Damage from Blocked Hits 40% of Elemental Damage from Hits taken as Physical Damage"]={nil,"You take 100% of Elemental Damage from Blocked Hits 40% of Elemental Damage from Hits taken as Physical Damage "} c["You take 20% of Damage from Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="BlockEffect",type="BASE",value=20}},nil} c["You take 30% reduced Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=30}},nil} c["You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=40}},nil} diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index eb530649e3..c501b7e422 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -3732,15 +3732,24 @@ function calcs.offence(env, actor, activeSkill) bleedStacks = (output.HitChance / 100) * (globalOutput.BleedDuration / (output.HitTime or output.Time) * skillData.dpsMultiplier) * activeTotems / maxStacks end bleedStacks = overrideStackPotential or configStacks > 0 and m_min(bleedStacks, configStacks / maxStacks) or bleedStacks + if bleedStacks < 1 and (env.configInput.overrideBleedStackPotential or 0) <= 1 then + skillModList:NewMod("Condition:SingleBleed", "FLAG", true, "bleed") + end + if skillModList:Flag(nil, "Condition:SingleBleed") then + bleedStacks = m_min(bleedStacks, 1 / maxStacks) + end globalOutput.BleedStackPotential = bleedStacks or 1 - bleedStacks = m_max(bleedStacks, 1) + bleedStacks = m_max(bleedStacks, 1 / maxStacks) + if globalBreakdown then globalBreakdown.BleedStackPotential = { s_format(colorCodes.CUSTOM.."NOTE: Calculation uses a Weighted Avg formula"), s_format(""), } - if overrideStackPotential then - if maxStacks ~= 1 then + if overrideStackPotential or skillModList:Flag(nil, "Condition:SingleBleed") then + if skillModList:Flag(nil, "Condition:SingleBleed") then + t_insert(globalBreakdown.BleedStackPotential, s_format("= %g ^8(can only have 1 Bleed on Enemy)", bleedStacks)) + elseif maxStacks ~= 1 then t_insert(globalBreakdown.BleedStackPotential, s_format("= %d / %d ^8(stack potential override / max bleed stacks)", skillModList:Override(nil, "BleedStackPotentialOverride"), maxStacks)) t_insert(globalBreakdown.BleedStackPotential, s_format("= %g ^8(stack potential)", overrideStackPotential)) else diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index 117bb86c53..ac1d7cb392 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -1466,6 +1466,9 @@ Huge sets the radius to 11. { var = "overrideBleedStackPotential", type = "count", label = "Bleed Stack Potential override:", ifOption = "conditionEnemyBleeding", tooltip = "Allows you to manually set the Stack Potential value for a skill.\nStack Potential equates to the number of times you are able to inflict a Bleed on an enemy before the duration of your first Bleed expires", apply = function(val, modList, enemyModList) modList:NewMod("BleedStackPotentialOverride", "OVERRIDE", val, "Config", { type = "Condition", var = "Effective" }) end }, + { var = "conditionSingleBleed", type = "check", label = "Cap to Single Bleed on enemy?", ifCond = "SingleBleed", tooltip = "This is for Blood Sap Tincture, but will limit you to only applying a single Bleed on the enemy", apply = function(val, modList, enemyModList) + modList:NewMod("Condition:SingleBleed", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) + end }, { var = "multiplierRuptureStacks", type = "count", label = "# of Rupture stacks?", ifFlag = "Condition:CanInflictRupture", tooltip = "Rupture applies 25% more bleed damage and 25% faster bleeds for 3 seconds, up to 3 stacks", apply = function(val, modList, enemyModList) enemyModList:NewMod("Multiplier:RuptureStack", "BASE", val, "Config", { type = "Condition", var = "Effective" }) enemyModList:NewMod("DamageTaken", "MORE", 25, "Rupture", nil, KeywordFlag.Bleed, { type = "Multiplier", var = "RuptureStack", limit = 3 }, { type = "ActorCondition", actor = "enemy", var = "CanInflictRupture" }) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index fb4772ab9c..8c1987c70d 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -3169,6 +3169,9 @@ local specialModList = { ["you have crimson dance while you have cat's stealth"] = { mod("Keystone", "LIST", "Crimson Dance", { type = "Condition", var = "AffectedByCat'sStealth" }) }, ["you have crimson dance if you have dealt a critical strike recently"] = { mod("Keystone", "LIST", "Crimson Dance", { type = "Condition", var = "CritRecently" }) }, ["bleeding you inflict deals damage (%d+)%% faster"] = function(num) return { mod("BleedFaster", "INC", num) } end, + ["bleeding you inflict on non%-bleeding enemies deals (%d+)%% more damage"] = function(num) return { + mod("Damage", "MORE", num, nil, 0, KeywordFlag.Bleed, { type = "Condition", var = "SingleBleed" }), + } end, ["(%d+)%% chance for bleeding inflicted with this weapon to deal (%d+)%% more damage"] = function(num, _, more) return { mod("Damage", "MORE", tonumber(more) * num / 100, nil, 0, KeywordFlag.Bleed, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }), } end, @@ -3201,6 +3204,11 @@ local specialModList = { flag("ColdCanPoison"), flag("LightningCanPoison"), }, + ["all damage can poison"] = { + flag("FireCanPoison"), + flag("ColdCanPoison"), + flag("LightningCanPoison"), + }, ["all damage from hits with this weapon can poison"] = { flag("FireCanPoison", { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }), flag("ColdCanPoison", { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }), From 954b0381d9b0821a30005a2af7ebbacff3697753 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 23:56:53 +1100 Subject: [PATCH 14/31] Release 2.36.0 (#6988) * Prepare release 2.36.0 * Fix changelogs and spelling of Azmeri --------- Co-authored-by: LocalIdentity Co-authored-by: LocalIdentity --- CHANGELOG.md | 28 ++++++++++++++++++ changelog.txt | 22 ++++++++++++++ manifest.xml | 22 +++++++------- src/Classes/PassiveTree.lua | 20 ++++++------- src/Classes/PassiveTreeView.lua | 6 ++-- ...> AzmeriAscendancyFrameLargeAllocated.png} | Bin ...AzmeriAscendancyFrameLargeCanAllocate.png} | Bin ...g => AzmeriAscendancyFrameLargeNormal.png} | Bin ...> AzmeriAscendancyFrameSmallAllocated.png} | Bin ...AzmeriAscendancyFrameSmallCanAllocate.png} | Bin ...g => AzmeriAscendancyFrameSmallNormal.png} | Bin ...yMiddle.png => AzmeriAscendancyMiddle.png} | Bin ...ated.png => AzmeriJewelFrameAllocated.png} | Bin ...te.png => AzmeriJewelFrameCanAllocate.png} | Bin ...ed.png => AzmeriJewelFrameUnallocated.png} | Bin 15 files changed, 74 insertions(+), 24 deletions(-) rename src/TreeData/{AzmiriAscendancyFrameLargeAllocated.png => AzmeriAscendancyFrameLargeAllocated.png} (100%) rename src/TreeData/{AzmiriAscendancyFrameLargeCanAllocate.png => AzmeriAscendancyFrameLargeCanAllocate.png} (100%) rename src/TreeData/{AzmiriAscendancyFrameLargeNormal.png => AzmeriAscendancyFrameLargeNormal.png} (100%) rename src/TreeData/{AzmiriAscendancyFrameSmallAllocated.png => AzmeriAscendancyFrameSmallAllocated.png} (100%) rename src/TreeData/{AzmiriAscendancyFrameSmallCanAllocate.png => AzmeriAscendancyFrameSmallCanAllocate.png} (100%) rename src/TreeData/{AzmiriAscendancyFrameSmallNormal.png => AzmeriAscendancyFrameSmallNormal.png} (100%) rename src/TreeData/{AzmiriAscendancyMiddle.png => AzmeriAscendancyMiddle.png} (100%) rename src/TreeData/{AzmiriJewelFrameAllocated.png => AzmeriJewelFrameAllocated.png} (100%) rename src/TreeData/{AzmiriJewelFrameCanAllocate.png => AzmeriJewelFrameCanAllocate.png} (100%) rename src/TreeData/{AzmiriJewelFrameUnallocated.png => AzmeriJewelFrameUnallocated.png} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf2a4e6a68..0bc9855b3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [v2.36.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.36.0) (2023/12/11) + +[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.35.5...v2.36.0) + + + +## What's Changed +### New to Path of Building +- Update all base skill gems + minions with 3.23 changes [\#6976](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6976) ([LocalIdentity](https://github.com/LocalIdentity), [Wires77](https://github.com/Wires77)) +- Add support for new Ascendancy skills [\#6976](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6976) ([LocalIdentity](https://github.com/LocalIdentity), [Wires77](https://github.com/Wires77)) +- Add support for Charms [\#6977](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6977) ([Regisle](https://github.com/Regisle)) +- Add support for Tinctures [\#6977](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6977) ([Regisle](https://github.com/Regisle), [LocalIdentity](https://github.com/LocalIdentity), [Wires77](https://github.com/Wires77)) +- Adding new 3.23 uniques [\#6983](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6983) ([Wires77](https://github.com/Wires77)) +- Add support for importing new Ascendancies [\#6956](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6956), [\#6987](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6987) ([Wires77](https://github.com/Wires77)) +- Save trade search weights to build file [\#6954](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6954) ([Peechey](https://github.com/Peechey)) +- Remove Pastebin as a build export option [\#6970](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6970) ([LocalIdentity](https://github.com/LocalIdentity)) + +### User Interface +- Add support for search Configuration tab [\#6178](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6178) ([deathbeam](https://github.com/deathbeam)) +- Add support for toggling ineligible configurations in Configuration tab [\#5950](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/5950) ([Peechey](https://github.com/Peechey)) +- Add warning when allocating too many Azmeri Ascendancy nodes [\#6958](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6958) ([Regisle](https://github.com/Regisle)) + +### Fixed Bugs +- Fix ES bypass Mastery overriding Divine Flesh ES bypass [\#6965](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6965) ([mortentc](https://github.com/mortentc), [Wires77](https://github.com/Wires77)) +- Fix Sin Trek and Legacy of Fury disabling life mod on Utula's Hunger [\#6969](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6969) ([Lilylicious](https://github.com/Lilylicious)) +- Fix Eldritch Battery with Replica Covenant cost calculations [\#6964](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6964) ([sida-wang](https://github.com/sida-wang)) + + ## [v2.35.5](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.35.5) (2023/12/07) [Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.35.4...v2.35.5) diff --git a/changelog.txt b/changelog.txt index cd277a4c86..e7fb1c5e02 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,25 @@ +VERSION[2.36.0][2023/12/11] + +--- New to Path of Building --- +* Update all base skill gems + minions with 3.23 changes by (Wires77, LocalIdentity) +* Add support for new Ascendancy skills by (Wires77, LocalIdentity) +* Add support for Charms (Regisle) +* Add support for Tinctures by (Regisle, LocalIdentity, Wires77) +* Adding new 3.23 uniques (Wires77) +* Add support for importing new Ascendancies (Wires77) +* Save trade search weights to build file (Peechey) +* Remove Pastebin as a build export option (LocalIdentity) + +--- User Interface --- +* Add support for search Configuration tab (deathbeam) +* Add support for toggling ineligible configurations in Configuration tab (Peechey) +* Add warning when allocating too many Azmeri Ascendancy nodes (Regisle) + +--- Fixed Bugs --- +* Fix ES bypass Mastery overriding Divine Flesh ES bypass (mortentc, Wires77) +* Fix Sin Trek and Legacy of Fury disabling life mod on Utula's Hunger (Lilylicious) +* Fix Eldritch Battery with Replica Covenant cost calculations (sida-wang) + VERSION[2.35.5][2023/12/07] --- Fixed Bugs --- diff --git a/manifest.xml b/manifest.xml index 4e169e4375..7736b8eb12 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,6 +1,6 @@ - + @@ -472,16 +472,16 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 8c0959ce9b..6cea843edd 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -164,17 +164,17 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) self.assets["ClassesWarlock"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/ClassesWarlock.png"} self.assets["ClassesWarden"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/ClassesWarden.png"} -- ascendancy nodes - self.assets["AzmiriAscendancyMiddle"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyMiddle.png"} - self.assets["AzmiriAscendancyFrameLargeNormal"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameLargeNormal.png"} - self.assets["AzmiriAscendancyFrameLargeCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameLargeCanAllocate.png"} - self.assets["AzmiriAscendancyFrameLargeAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameLargeAllocated.png"} - self.assets["AzmiriAscendancyFrameSmallNormal"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameSmallNormal.png"} - self.assets["AzmiriAscendancyFrameSmallCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameSmallCanAllocate.png"} - self.assets["AzmiriAscendancyFrameSmallAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriAscendancyFrameSmallAllocated.png"} + self.assets["AzmeriAscendancyMiddle"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyMiddle.png"} + self.assets["AzmeriAscendancyFrameLargeNormal"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameLargeNormal.png"} + self.assets["AzmeriAscendancyFrameLargeCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameLargeCanAllocate.png"} + self.assets["AzmeriAscendancyFrameLargeAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameLargeAllocated.png"} + self.assets["AzmeriAscendancyFrameSmallNormal"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameSmallNormal.png"} + self.assets["AzmeriAscendancyFrameSmallCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameSmallCanAllocate.png"} + self.assets["AzmeriAscendancyFrameSmallAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriAscendancyFrameSmallAllocated.png"} -- jewel sockets - self.assets["AzmiriJewelFrameUnallocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriJewelFrameUnallocated.png"} - self.assets["AzmiriJewelFrameCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriJewelFrameCanAllocate.png"} - self.assets["AzmiriJewelFrameAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmiriJewelFrameAllocated.png"} + self.assets["AzmeriJewelFrameUnallocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriJewelFrameUnallocated.png"} + self.assets["AzmeriJewelFrameCanAllocate"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriJewelFrameCanAllocate.png"} + self.assets["AzmeriJewelFrameAllocated"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/AzmeriJewelFrameAllocated.png"} self.assets["CharmSocketActiveStr"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/CharmSocketActiveStr.png"} self.assets["CharmSocketActiveInt"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/CharmSocketActiveInt.png"} self.assets["CharmSocketActiveDex"] = {[0.3835]="https://web.poecdn.com/gen/image/WzIyLCJlMzIwYTYwYmNiZTY4ZmQ5YTc2NmE1ZmY4MzhjMDMyNCIseyJ0IjoyNywic3AiOjAuMzgzNX1d/3d68393250/CharmSocketActiveDex.png"} diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 294e65dff1..9e153e5faf 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -475,7 +475,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) elseif node.type == "AscendClassStart" then overlay = treeVersions[tree.treeVersion].num >= 3.10 and "AscendancyMiddle" or "PassiveSkillScreenAscendancyMiddle" if node.ascendancyName and tree.secondaryAscendNameMap and tree.secondaryAscendNameMap[node.ascendancyName] then - overlay = "Azmiri"..overlay + overlay = "Azmeri"..overlay end else local state @@ -490,7 +490,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) end if node.type == "Socket" then -- Node is a jewel socket, retrieve the socketed jewel (if present) so we can display the correct art - base = tree.assets[(node.name == "Charm Socket" and "Azmiri" or "" ) .. node.overlay[state .. (node.expansionJewel and "Alt" or "")]] + base = tree.assets[(node.name == "Charm Socket" and "Azmeri" or "" ) .. node.overlay[state .. (node.expansionJewel and "Alt" or "")]] local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(nodeId) if isAlloc and jewel then if jewel.baseName == "Crimson Jewel" then @@ -544,7 +544,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) base = node.sprites[node.type:lower()..(isAlloc and "Active" or "Inactive")] overlay = node.overlay[state .. (node.ascendancyName and "Ascend" or "") .. (node.isBlighted and "Blighted" or "")] if node.ascendancyName and tree.secondaryAscendNameMap and tree.secondaryAscendNameMap[node.ascendancyName] then - overlay = "Azmiri"..overlay + overlay = "Azmeri"..overlay end end end diff --git a/src/TreeData/AzmiriAscendancyFrameLargeAllocated.png b/src/TreeData/AzmeriAscendancyFrameLargeAllocated.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameLargeAllocated.png rename to src/TreeData/AzmeriAscendancyFrameLargeAllocated.png diff --git a/src/TreeData/AzmiriAscendancyFrameLargeCanAllocate.png b/src/TreeData/AzmeriAscendancyFrameLargeCanAllocate.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameLargeCanAllocate.png rename to src/TreeData/AzmeriAscendancyFrameLargeCanAllocate.png diff --git a/src/TreeData/AzmiriAscendancyFrameLargeNormal.png b/src/TreeData/AzmeriAscendancyFrameLargeNormal.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameLargeNormal.png rename to src/TreeData/AzmeriAscendancyFrameLargeNormal.png diff --git a/src/TreeData/AzmiriAscendancyFrameSmallAllocated.png b/src/TreeData/AzmeriAscendancyFrameSmallAllocated.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameSmallAllocated.png rename to src/TreeData/AzmeriAscendancyFrameSmallAllocated.png diff --git a/src/TreeData/AzmiriAscendancyFrameSmallCanAllocate.png b/src/TreeData/AzmeriAscendancyFrameSmallCanAllocate.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameSmallCanAllocate.png rename to src/TreeData/AzmeriAscendancyFrameSmallCanAllocate.png diff --git a/src/TreeData/AzmiriAscendancyFrameSmallNormal.png b/src/TreeData/AzmeriAscendancyFrameSmallNormal.png similarity index 100% rename from src/TreeData/AzmiriAscendancyFrameSmallNormal.png rename to src/TreeData/AzmeriAscendancyFrameSmallNormal.png diff --git a/src/TreeData/AzmiriAscendancyMiddle.png b/src/TreeData/AzmeriAscendancyMiddle.png similarity index 100% rename from src/TreeData/AzmiriAscendancyMiddle.png rename to src/TreeData/AzmeriAscendancyMiddle.png diff --git a/src/TreeData/AzmiriJewelFrameAllocated.png b/src/TreeData/AzmeriJewelFrameAllocated.png similarity index 100% rename from src/TreeData/AzmiriJewelFrameAllocated.png rename to src/TreeData/AzmeriJewelFrameAllocated.png diff --git a/src/TreeData/AzmiriJewelFrameCanAllocate.png b/src/TreeData/AzmeriJewelFrameCanAllocate.png similarity index 100% rename from src/TreeData/AzmiriJewelFrameCanAllocate.png rename to src/TreeData/AzmeriJewelFrameCanAllocate.png diff --git a/src/TreeData/AzmiriJewelFrameUnallocated.png b/src/TreeData/AzmeriJewelFrameUnallocated.png similarity index 100% rename from src/TreeData/AzmiriJewelFrameUnallocated.png rename to src/TreeData/AzmeriJewelFrameUnallocated.png From 7040c23457a0fcfbf0784a48a96d174918ddb8b7 Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Tue, 12 Dec 2023 00:01:02 +1100 Subject: [PATCH 15/31] Release 2.36.0 --- New to Path of Building --- * Update all base skill gems + minions with 3.23 changes by (Wires77, LocalIdentity) * Add support for new Ascendancy skills by (Wires77, LocalIdentity) * Add support for Charms (Regisle) * Add support for Tinctures by (Regisle, LocalIdentity, Wires77) * Adding new 3.23 uniques (Wires77) * Add support for importing new Ascendancies (Wires77) * Save trade search weights to build file (Peechey) * Remove Pastebin as a build export option (LocalIdentity) --- User Interface --- * Add support for search Configuration tab (deathbeam) * Add support for toggling ineligible configurations in Configuration tab (Peechey) * Add warning when allocating too many Azmeri Ascendancy nodes (Regisle) --- Fixed Bugs --- * Fix ES bypass Mastery overriding Divine Flesh ES bypass (mortentc, Wires77) * Fix Sin Trek and Legacy of Fury disabling life mod on Utula's Hunger (Lilylicious) * Fix Eldritch Battery with Replica Covenant cost calculations (sida-wang) --- manifest.xml | 127 ++++++++++++++++++++++++++------------------------- 1 file changed, 66 insertions(+), 61 deletions(-) diff --git a/manifest.xml b/manifest.xml index 7736b8eb12..d7606a17c4 100644 --- a/manifest.xml +++ b/manifest.xml @@ -5,7 +5,7 @@ - + @@ -38,20 +38,20 @@ - + - + - + @@ -62,10 +62,10 @@ - + - - + + @@ -84,32 +84,33 @@ - + - + - - + + - + - - + + - - + + - + + @@ -124,53 +125,56 @@ - - - + + + - - - - - - + + + + + + + - + + - - - + + + - - - - - - - - - + + + + + + + + + - - - - - - + + + + + + - + - + - - + + + @@ -202,35 +206,36 @@ - + - + + - + - - + + - + - - + + - + - - + + - + From a9959c0bdfd72981b5a5d4c7bfa625fb0eb771d2 Mon Sep 17 00:00:00 2001 From: Morten Tychsen Clausen <48551928+mortentc@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:43:43 +0100 Subject: [PATCH 16/31] Fix negative bypass being ignored (#6992) * changed bypass override * Add test case --------- Co-authored-by: Wires77 --- spec/System/TestDefence_spec.lua | 13 +++++++++++++ src/Modules/CalcDefence.lua | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/spec/System/TestDefence_spec.lua b/spec/System/TestDefence_spec.lua index e03890fd60..265e035b35 100644 --- a/spec/System/TestDefence_spec.lua +++ b/spec/System/TestDefence_spec.lua @@ -603,6 +603,19 @@ describe("TestDefence", function() end) it("energy shield bypass tests #pet", function() + -- Mastery + build.configTab.input.customMods = [[ + +40 to maximum life + +200 to energy shield + 50% of chaos damage taken does not bypass energy shield + You have no intelligence + +60% to all resistances + ]] + build.configTab:BuildModList() + runCallback("OnFrame") + assert.are.equals(300, build.calcsTab.calcsOutput.FireMaximumHitTaken) + assert.are.equals(200, build.calcsTab.calcsOutput.ChaosMaximumHitTaken) + -- Negative overrides positive build.configTab.input.customMods = [[ +40 to maximum life diff --git a/src/Modules/CalcDefence.lua b/src/Modules/CalcDefence.lua index 9602f367da..241372e3b8 100644 --- a/src/Modules/CalcDefence.lua +++ b/src/Modules/CalcDefence.lua @@ -1886,7 +1886,7 @@ function calcs.buildDefenceEstimations(env, actor) output[damageType.."EnergyShieldBypass"] = 100 output.AnyBypass = true else - output[damageType.."EnergyShieldBypass"] = m_max(modDB:Sum("BASE", nil, damageType.."EnergyShieldBypass") or 0, modDB:Sum("OVERRIDE", nil, damageType.."EnergyShieldBypass") or 0) + output[damageType.."EnergyShieldBypass"] = modDB:Override(nil, damageType.."EnergyShieldBypass") or modDB:Sum("BASE", nil, damageType.."EnergyShieldBypass") or 0 if output[damageType.."EnergyShieldBypass"] ~= 0 then output.AnyBypass = true end From 1981fc82dd8dfd57846792394efb09a351789d37 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Tue, 12 Dec 2023 01:47:59 +1100 Subject: [PATCH 17/31] Fix Crash when opening Timeless Jewel search (#6995) Co-authored-by: LocalIdentity --- src/Classes/TreeTab.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/TreeTab.lua b/src/Classes/TreeTab.lua index 5b96a41ec2..257feb9356 100644 --- a/src/Classes/TreeTab.lua +++ b/src/Classes/TreeTab.lua @@ -1014,7 +1014,7 @@ function TreeTabClass:FindTimelessJewel() } local jewelSockets = { } for socketId, socketData in pairs(self.build.spec.nodes) do - if socketData.isJewelSocket then + if socketData.isJewelSocket and socketData.name ~= "Charm Socket"then local keystone = "Unknown" if socketId == 26725 then keystone = "Marauder" From 8573e6cb22869f1ffe0c3623fcb4d87d72526aa4 Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Tue, 12 Dec 2023 01:53:27 +1100 Subject: [PATCH 18/31] Export from game files --- src/Data/Bases/jewel.lua | 6 +- src/Data/ClusterJewels.lua | 598 +- src/Data/Crucible.lua | 4938 ++++++++--------- src/Data/EnchantmentHelmet.lua | 16 +- src/Data/Misc.lua | 11 + src/Data/ModMaster.lua | 1442 ++--- src/Data/Pantheons.lua | 26 +- src/Data/TattooPassives.lua | 86 +- src/Data/TimelessJewelData/LegionPassives.lua | 560 +- 9 files changed, 3847 insertions(+), 3836 deletions(-) diff --git a/src/Data/Bases/jewel.lua b/src/Data/Bases/jewel.lua index cce038fd26..78f327e9df 100644 --- a/src/Data/Bases/jewel.lua +++ b/src/Data/Bases/jewel.lua @@ -89,21 +89,21 @@ itemBases["Timeless Jewel"] = { itemBases["Ursine Charm"] = { type = "Jewel", subType = "Charm", - tags = { str_animal_charm = true, }, + tags = { animal_charm = true, str_animal_charm = true, default = true, }, implicitModTypes = { }, req = { }, } itemBases["Lupine Charm"] = { type = "Jewel", subType = "Charm", - tags = { dex_animal_charm = true, }, + tags = { animal_charm = true, dex_animal_charm = true, default = true, }, implicitModTypes = { }, req = { }, } itemBases["Corvine Charm"] = { type = "Jewel", subType = "Charm", - tags = { int_animal_charm = true, }, + tags = { animal_charm = true, int_animal_charm = true, default = true, }, implicitModTypes = { }, req = { }, } diff --git a/src/Data/ClusterJewels.lua b/src/Data/ClusterJewels.lua index 607a81a377..2bb891bfc5 100644 --- a/src/Data/ClusterJewels.lua +++ b/src/Data/ClusterJewels.lua @@ -580,305 +580,305 @@ return { }, }, notableSortOrder = { - ["Prodigious Defence"] = 11108, - ["Advance Guard"] = 11109, - ["Gladiatorial Combat"] = 11110, - ["Strike Leader"] = 11111, - ["Powerful Ward"] = 11112, - ["Enduring Ward"] = 11113, - ["Gladiator's Fortitude"] = 11114, - ["Precise Retaliation"] = 11115, - ["Veteran Defender"] = 11116, - ["Iron Breaker"] = 11117, - ["Deep Cuts"] = 11118, - ["Master the Fundamentals"] = 11119, - ["Force Multiplier"] = 11120, - ["Furious Assault"] = 11121, - ["Vicious Skewering"] = 11122, - ["Grim Oath"] = 11123, - ["Battle-Hardened"] = 11124, - ["Replenishing Presence"] = 11125, - ["Master of Command"] = 11126, - ["Spiteful Presence"] = 11127, - ["Purposeful Harbinger"] = 11128, - ["Destructive Aspect"] = 11129, - ["Electric Presence"] = 11130, - ["Volatile Presence"] = 11131, - ["Righteous Path"] = 11132, - ["Skullbreaker"] = 11133, - ["Pressure Points"] = 11134, - ["Overwhelming Malice"] = 11135, - ["Magnifier"] = 11136, - ["Savage Response"] = 11137, - ["Eye of the Storm"] = 11138, - ["Basics of Pain"] = 11139, - ["Quick Getaway"] = 11140, - ["Assert Dominance"] = 11141, - ["Vast Power"] = 11142, - ["Powerful Assault"] = 11143, - ["Intensity"] = 11144, - ["Titanic Swings"] = 11145, - ["Towering Threat"] = 11146, - ["Ancestral Echo"] = 11147, - ["Ancestral Reach"] = 11148, - ["Ancestral Might"] = 11149, - ["Ancestral Preservation"] = 11150, - ["Snaring Spirits"] = 11151, - ["Sleepless Sentries"] = 11152, - ["Ancestral Guidance"] = 11153, - ["Ancestral Inspiration"] = 11154, - ["Vital Focus"] = 11155, - ["Rapid Infusion"] = 11156, - ["Unwavering Focus"] = 11157, - ["Enduring Focus"] = 11158, - ["Precise Focus"] = 11159, - ["Stoic Focus"] = 11160, - ["Hex Breaker"] = 11161, - ["Arcane Adept"] = 11162, - ["Distilled Perfection"] = 11163, - ["Spiked Concoction"] = 11164, - ["Fasting"] = 11165, - ["Mender's Wellspring"] = 11166, - ["Special Reserve"] = 11167, - ["Numbing Elixir"] = 11168, - ["Mob Mentality"] = 11169, - ["Cry Wolf"] = 11170, - ["Haunting Shout"] = 11171, - ["Lead By Example"] = 11172, - ["Provocateur"] = 11173, - ["Warning Call"] = 11174, - ["Rattling Bellow"] = 11175, - ["Bloodscent"] = 11176, - ["Run Through"] = 11177, - ["Wound Aggravation"] = 11178, - ["Overlord"] = 11179, - ["Expansive Might"] = 11180, - ["Weight Advantage"] = 11181, - ["Wind-up"] = 11182, - ["Fan of Blades"] = 11183, - ["Disease Vector"] = 11184, - ["Arcing Shot"] = 11185, - ["Tempered Arrowheads"] = 11186, - ["Broadside"] = 11187, - ["Explosive Force"] = 11188, - ["Opportunistic Fusilade"] = 11189, - ["Storm's Hand"] = 11190, - ["Battlefield Dominator"] = 11191, - ["Martial Mastery"] = 11192, - ["Surefooted Striker"] = 11193, - ["Graceful Execution"] = 11194, - ["Brutal Infamy"] = 11195, - ["Fearsome Warrior"] = 11196, - ["Combat Rhythm"] = 11197, - ["Hit and Run"] = 11198, - ["Insatiable Killer"] = 11199, - ["Mage Bane"] = 11200, - ["Martial Momentum"] = 11201, - ["Deadly Repartee"] = 11202, - ["Quick and Deadly"] = 11203, - ["Smite the Weak"] = 11204, - ["Heavy Hitter"] = 11205, - ["Martial Prowess"] = 11206, - ["Calamitous"] = 11207, - ["Devastator"] = 11208, - ["Fuel the Fight"] = 11209, - ["Drive the Destruction"] = 11210, - ["Feed the Fury"] = 11211, - ["Seal Mender"] = 11212, - ["Conjured Wall"] = 11213, - ["Arcane Heroism"] = 11214, - ["Practiced Caster"] = 11215, - ["Burden Projection"] = 11216, - ["Thaumophage"] = 11217, - ["Essence Rush"] = 11218, - ["Sap Psyche"] = 11219, - ["Sadist"] = 11220, - ["Corrosive Elements"] = 11221, - ["Doryani's Lesson"] = 11222, - ["Disorienting Display"] = 11223, - ["Prismatic Heart"] = 11224, - ["Widespread Destruction"] = 11225, - ["Master of Fire"] = 11226, - ["Smoking Remains"] = 11227, - ["Cremator"] = 11228, - ["Snowstorm"] = 11229, - ["Storm Drinker"] = 11230, - ["Paralysis"] = 11231, - ["Supercharge"] = 11232, - ["Blanketed Snow"] = 11233, - ["Cold to the Core"] = 11234, - ["Cold-Blooded Killer"] = 11235, - ["Touch of Cruelty"] = 11236, - ["Unwaveringly Evil"] = 11237, - ["Unspeakable Gifts"] = 11238, - ["Dark Ideation"] = 11239, - ["Unholy Grace"] = 11240, - ["Wicked Pall"] = 11241, - ["Renewal"] = 11242, - ["Raze and Pillage"] = 11243, - ["Rotten Claws"] = 11244, - ["Call to the Slaughter"] = 11245, - ["Skeletal Atrophy"] = 11532, - ["Hulking Corpses"] = 11246, - ["Vicious Bite"] = 11247, - ["Primordial Bond"] = 11248, - ["Blowback"] = 11249, - ["Fan the Flames"] = 11250, - ["Cooked Alive"] = 11251, - ["Burning Bright"] = 11252, - ["Wrapped in Flame"] = 11253, - ["Vivid Hues"] = 11254, - ["Rend"] = 11255, - ["Disorienting Wounds"] = 11256, - ["Compound Injury"] = 11257, - ["Blood Artist"] = 13921, - ["Phlebotomist"] = 13922, - ["Septic Spells"] = 11258, - ["Low Tolerance"] = 11259, - ["Steady Torment"] = 11260, - ["Eternal Suffering"] = 11261, - ["Eldritch Inspiration"] = 11262, - ["Wasting Affliction"] = 11263, - ["Haemorrhage"] = 11264, - ["Flow of Life"] = 11265, - ["Exposure Therapy"] = 11266, - ["Brush with Death"] = 11267, - ["Vile Reinvigoration"] = 11268, - ["Circling Oblivion"] = 11269, - ["Brewed for Potency"] = 11270, - ["Astonishing Affliction"] = 11271, - ["Cold Conduction"] = 11272, - ["Inspired Oppression"] = 11273, - ["Chilling Presence"] = 11274, - ["Deep Chill"] = 11275, - ["Blast-Freeze"] = 11276, - ["Thunderstruck"] = 11277, - ["Stormrider"] = 11278, - ["Overshock"] = 11279, - ["Evil Eye"] = 11280, - ["Evil Eye"] = 11281, - ["Forbidden Words"] = 11282, - ["Doedre's Spite"] = 11283, - ["Victim Maker"] = 11284, - ["Master of Fear"] = 11285, - ["Wish for Death"] = 11286, - ["Heraldry"] = 11287, - ["Endbringer"] = 11288, - ["Cult-Leader"] = 11289, - ["Empowered Envoy"] = 11290, - ["Dark Messenger"] = 11291, - ["Agent of Destruction"] = 11292, - ["Lasting Impression"] = 11293, - ["Self-Fulfilling Prophecy"] = 11294, - ["Invigorating Portents"] = 11295, - ["Pure Agony"] = 11296, - ["Disciples"] = 11297, - ["Dread March"] = 11298, - ["Blessed Rebirth"] = 11299, - ["Life from Death"] = 11300, - ["Feasting Fiends"] = 11301, - ["Bodyguards"] = 11302, - ["Follow-Through"] = 11303, - ["Streamlined"] = 11304, - ["Shrieking Bolts"] = 11305, - ["Eye to Eye"] = 11306, - ["Repeater"] = 11307, - ["Aerodynamics"] = 11308, - ["Chip Away"] = 11309, - ["Seeker Runes"] = 11310, - ["Remarkable"] = 11311, - ["Brand Loyalty"] = 11312, - ["Holy Conquest"] = 11313, - ["Grand Design"] = 11314, - ["Set and Forget"] = 11315, - ["Expert Sabotage"] = 11316, - ["Guerilla Tactics"] = 11317, - ["Expendability"] = 11318, - ["Arcane Pyrotechnics"] = 11319, - ["Surprise Sabotage"] = 11320, - ["Careful Handling"] = 11321, - ["Peak Vigour"] = 11322, - ["Fettle"] = 11323, - ["Feast of Flesh"] = 11324, - ["Sublime Sensation"] = 11325, - ["Surging Vitality"] = 11326, - ["Peace Amidst Chaos"] = 11327, - ["Adrenaline"] = 11328, - ["Wall of Muscle"] = 11329, - ["Mindfulness"] = 11330, - ["Liquid Inspiration"] = 11331, - ["Openness"] = 11332, - ["Daring Ideas"] = 11333, - ["Clarity of Purpose"] = 11334, - ["Scintillating Idea"] = 11335, - ["Holistic Health"] = 11336, - ["Genius"] = 11337, - ["Improvisor"] = 11338, - ["Stubborn Student"] = 11339, - ["Savour the Moment"] = 11340, - ["Energy From Naught"] = 11341, - ["Will Shaper"] = 11342, - ["Spring Back"] = 11343, - ["Conservation of Energy"] = 11344, - ["Heart of Iron"] = 11345, - ["Prismatic Carapace"] = 11346, - ["Militarism"] = 11347, - ["Second Skin"] = 11348, - ["Dragon Hunter"] = 11349, - ["Enduring Composure"] = 11350, - ["Prismatic Dance"] = 11351, - ["Natural Vigour"] = 11352, - ["Untouchable"] = 11353, - ["Shifting Shadow"] = 11354, - ["Readiness"] = 11355, - ["Confident Combatant"] = 11356, - ["Flexible Sentry"] = 11357, - ["Vicious Guard"] = 11358, - ["Mystical Ward"] = 11359, - ["Rote Reinforcement"] = 11360, - ["Mage Hunter"] = 11361, - ["Riot Queller"] = 11362, - ["One with the Shield"] = 11363, - ["Aerialist"] = 11364, - ["Elegant Form"] = 11365, - ["Darting Movements"] = 11366, - ["No Witnesses"] = 11367, - ["Molten One's Mark"] = 11368, - ["Fire Attunement"] = 11369, - ["Pure Might"] = 11370, - ["Blacksmith"] = 11371, - ["Non-Flammable"] = 11372, - ["Winter Prowler"] = 11373, - ["Hibernator"] = 11374, - ["Pure Guile"] = 11375, - ["Alchemist"] = 11376, - ["Antifreeze"] = 11377, - ["Wizardry"] = 11378, - ["Capacitor"] = 11379, - ["Pure Aptitude"] = 11380, - ["Sage"] = 11381, - ["Insulated"] = 11382, - ["Born of Chaos"] = 11383, - ["Antivenom"] = 11384, - ["Rot-Resistant"] = 11385, - ["Blessed"] = 11386, - ["Student of Decay"] = 11387, - ["Lord of Drought"] = 12229, - ["Blizzard Caller"] = 12230, - ["Tempt the Storm"] = 12231, - ["Misery Everlasting"] = 12232, - ["Exploit Weakness"] = 12233, - ["Self-Control"] = 12238, - ["Uncompromising"] = 12239, - ["Sublime Form"] = 12240, - ["Mortifying Aspect"] = 12296, - ["Frantic Aspect"] = 12297, - ["Introspection"] = 12298, - ["Hound's Mark"] = 12234, - ["Doedre's Gluttony"] = 12235, - ["Doedre's Apathy"] = 12236, - ["Master of the Maelstrom"] = 12237, - ["Aggressive Defence"] = 15385, + ["Prodigious Defence"] = 11105, + ["Advance Guard"] = 11106, + ["Gladiatorial Combat"] = 11107, + ["Strike Leader"] = 11108, + ["Powerful Ward"] = 11109, + ["Enduring Ward"] = 11110, + ["Gladiator's Fortitude"] = 11111, + ["Precise Retaliation"] = 11112, + ["Veteran Defender"] = 11113, + ["Iron Breaker"] = 11114, + ["Deep Cuts"] = 11115, + ["Master the Fundamentals"] = 11116, + ["Force Multiplier"] = 11117, + ["Furious Assault"] = 11118, + ["Vicious Skewering"] = 11119, + ["Grim Oath"] = 11120, + ["Battle-Hardened"] = 11121, + ["Replenishing Presence"] = 11122, + ["Master of Command"] = 11123, + ["Spiteful Presence"] = 11124, + ["Purposeful Harbinger"] = 11125, + ["Destructive Aspect"] = 11126, + ["Electric Presence"] = 11127, + ["Volatile Presence"] = 11128, + ["Righteous Path"] = 11129, + ["Skullbreaker"] = 11130, + ["Pressure Points"] = 11131, + ["Overwhelming Malice"] = 11132, + ["Magnifier"] = 11133, + ["Savage Response"] = 11134, + ["Eye of the Storm"] = 11135, + ["Basics of Pain"] = 11136, + ["Quick Getaway"] = 11137, + ["Assert Dominance"] = 11138, + ["Vast Power"] = 11139, + ["Powerful Assault"] = 11140, + ["Intensity"] = 11141, + ["Titanic Swings"] = 11142, + ["Towering Threat"] = 11143, + ["Ancestral Echo"] = 11144, + ["Ancestral Reach"] = 11145, + ["Ancestral Might"] = 11146, + ["Ancestral Preservation"] = 11147, + ["Snaring Spirits"] = 11148, + ["Sleepless Sentries"] = 11149, + ["Ancestral Guidance"] = 11150, + ["Ancestral Inspiration"] = 11151, + ["Vital Focus"] = 11152, + ["Rapid Infusion"] = 11153, + ["Unwavering Focus"] = 11154, + ["Enduring Focus"] = 11155, + ["Precise Focus"] = 11156, + ["Stoic Focus"] = 11157, + ["Hex Breaker"] = 11158, + ["Arcane Adept"] = 11159, + ["Distilled Perfection"] = 11160, + ["Spiked Concoction"] = 11161, + ["Fasting"] = 11162, + ["Mender's Wellspring"] = 11163, + ["Special Reserve"] = 11164, + ["Numbing Elixir"] = 11165, + ["Mob Mentality"] = 11166, + ["Cry Wolf"] = 11167, + ["Haunting Shout"] = 11168, + ["Lead By Example"] = 11169, + ["Provocateur"] = 11170, + ["Warning Call"] = 11171, + ["Rattling Bellow"] = 11172, + ["Bloodscent"] = 11173, + ["Run Through"] = 11174, + ["Wound Aggravation"] = 11175, + ["Overlord"] = 11176, + ["Expansive Might"] = 11177, + ["Weight Advantage"] = 11178, + ["Wind-up"] = 11179, + ["Fan of Blades"] = 11180, + ["Disease Vector"] = 11181, + ["Arcing Shot"] = 11182, + ["Tempered Arrowheads"] = 11183, + ["Broadside"] = 11184, + ["Explosive Force"] = 11185, + ["Opportunistic Fusilade"] = 11186, + ["Storm's Hand"] = 11187, + ["Battlefield Dominator"] = 11188, + ["Martial Mastery"] = 11189, + ["Surefooted Striker"] = 11190, + ["Graceful Execution"] = 11191, + ["Brutal Infamy"] = 11192, + ["Fearsome Warrior"] = 11193, + ["Combat Rhythm"] = 11194, + ["Hit and Run"] = 11195, + ["Insatiable Killer"] = 11196, + ["Mage Bane"] = 11197, + ["Martial Momentum"] = 11198, + ["Deadly Repartee"] = 11199, + ["Quick and Deadly"] = 11200, + ["Smite the Weak"] = 11201, + ["Heavy Hitter"] = 11202, + ["Martial Prowess"] = 11203, + ["Calamitous"] = 11204, + ["Devastator"] = 11205, + ["Fuel the Fight"] = 11206, + ["Drive the Destruction"] = 11207, + ["Feed the Fury"] = 11208, + ["Seal Mender"] = 11209, + ["Conjured Wall"] = 11210, + ["Arcane Heroism"] = 11211, + ["Practiced Caster"] = 11212, + ["Burden Projection"] = 11213, + ["Thaumophage"] = 11214, + ["Essence Rush"] = 11215, + ["Sap Psyche"] = 11216, + ["Sadist"] = 11217, + ["Corrosive Elements"] = 11218, + ["Doryani's Lesson"] = 11219, + ["Disorienting Display"] = 11220, + ["Prismatic Heart"] = 11221, + ["Widespread Destruction"] = 11222, + ["Master of Fire"] = 11223, + ["Smoking Remains"] = 11224, + ["Cremator"] = 11225, + ["Snowstorm"] = 11226, + ["Storm Drinker"] = 11227, + ["Paralysis"] = 11228, + ["Supercharge"] = 11229, + ["Blanketed Snow"] = 11230, + ["Cold to the Core"] = 11231, + ["Cold-Blooded Killer"] = 11232, + ["Touch of Cruelty"] = 11233, + ["Unwaveringly Evil"] = 11234, + ["Unspeakable Gifts"] = 11235, + ["Dark Ideation"] = 11236, + ["Unholy Grace"] = 11237, + ["Wicked Pall"] = 11238, + ["Renewal"] = 11239, + ["Raze and Pillage"] = 11240, + ["Rotten Claws"] = 11241, + ["Call to the Slaughter"] = 11242, + ["Skeletal Atrophy"] = 11529, + ["Hulking Corpses"] = 11243, + ["Vicious Bite"] = 11244, + ["Primordial Bond"] = 11245, + ["Blowback"] = 11246, + ["Fan the Flames"] = 11247, + ["Cooked Alive"] = 11248, + ["Burning Bright"] = 11249, + ["Wrapped in Flame"] = 11250, + ["Vivid Hues"] = 11251, + ["Rend"] = 11252, + ["Disorienting Wounds"] = 11253, + ["Compound Injury"] = 11254, + ["Blood Artist"] = 13918, + ["Phlebotomist"] = 13919, + ["Septic Spells"] = 11255, + ["Low Tolerance"] = 11256, + ["Steady Torment"] = 11257, + ["Eternal Suffering"] = 11258, + ["Eldritch Inspiration"] = 11259, + ["Wasting Affliction"] = 11260, + ["Haemorrhage"] = 11261, + ["Flow of Life"] = 11262, + ["Exposure Therapy"] = 11263, + ["Brush with Death"] = 11264, + ["Vile Reinvigoration"] = 11265, + ["Circling Oblivion"] = 11266, + ["Brewed for Potency"] = 11267, + ["Astonishing Affliction"] = 11268, + ["Cold Conduction"] = 11269, + ["Inspired Oppression"] = 11270, + ["Chilling Presence"] = 11271, + ["Deep Chill"] = 11272, + ["Blast-Freeze"] = 11273, + ["Thunderstruck"] = 11274, + ["Stormrider"] = 11275, + ["Overshock"] = 11276, + ["Evil Eye"] = 11277, + ["Evil Eye"] = 11278, + ["Forbidden Words"] = 11279, + ["Doedre's Spite"] = 11280, + ["Victim Maker"] = 11281, + ["Master of Fear"] = 11282, + ["Wish for Death"] = 11283, + ["Heraldry"] = 11284, + ["Endbringer"] = 11285, + ["Cult-Leader"] = 11286, + ["Empowered Envoy"] = 11287, + ["Dark Messenger"] = 11288, + ["Agent of Destruction"] = 11289, + ["Lasting Impression"] = 11290, + ["Self-Fulfilling Prophecy"] = 11291, + ["Invigorating Portents"] = 11292, + ["Pure Agony"] = 11293, + ["Disciples"] = 11294, + ["Dread March"] = 11295, + ["Blessed Rebirth"] = 11296, + ["Life from Death"] = 11297, + ["Feasting Fiends"] = 11298, + ["Bodyguards"] = 11299, + ["Follow-Through"] = 11300, + ["Streamlined"] = 11301, + ["Shrieking Bolts"] = 11302, + ["Eye to Eye"] = 11303, + ["Repeater"] = 11304, + ["Aerodynamics"] = 11305, + ["Chip Away"] = 11306, + ["Seeker Runes"] = 11307, + ["Remarkable"] = 11308, + ["Brand Loyalty"] = 11309, + ["Holy Conquest"] = 11310, + ["Grand Design"] = 11311, + ["Set and Forget"] = 11312, + ["Expert Sabotage"] = 11313, + ["Guerilla Tactics"] = 11314, + ["Expendability"] = 11315, + ["Arcane Pyrotechnics"] = 11316, + ["Surprise Sabotage"] = 11317, + ["Careful Handling"] = 11318, + ["Peak Vigour"] = 11319, + ["Fettle"] = 11320, + ["Feast of Flesh"] = 11321, + ["Sublime Sensation"] = 11322, + ["Surging Vitality"] = 11323, + ["Peace Amidst Chaos"] = 11324, + ["Adrenaline"] = 11325, + ["Wall of Muscle"] = 11326, + ["Mindfulness"] = 11327, + ["Liquid Inspiration"] = 11328, + ["Openness"] = 11329, + ["Daring Ideas"] = 11330, + ["Clarity of Purpose"] = 11331, + ["Scintillating Idea"] = 11332, + ["Holistic Health"] = 11333, + ["Genius"] = 11334, + ["Improvisor"] = 11335, + ["Stubborn Student"] = 11336, + ["Savour the Moment"] = 11337, + ["Energy From Naught"] = 11338, + ["Will Shaper"] = 11339, + ["Spring Back"] = 11340, + ["Conservation of Energy"] = 11341, + ["Heart of Iron"] = 11342, + ["Prismatic Carapace"] = 11343, + ["Militarism"] = 11344, + ["Second Skin"] = 11345, + ["Dragon Hunter"] = 11346, + ["Enduring Composure"] = 11347, + ["Prismatic Dance"] = 11348, + ["Natural Vigour"] = 11349, + ["Untouchable"] = 11350, + ["Shifting Shadow"] = 11351, + ["Readiness"] = 11352, + ["Confident Combatant"] = 11353, + ["Flexible Sentry"] = 11354, + ["Vicious Guard"] = 11355, + ["Mystical Ward"] = 11356, + ["Rote Reinforcement"] = 11357, + ["Mage Hunter"] = 11358, + ["Riot Queller"] = 11359, + ["One with the Shield"] = 11360, + ["Aerialist"] = 11361, + ["Elegant Form"] = 11362, + ["Darting Movements"] = 11363, + ["No Witnesses"] = 11364, + ["Molten One's Mark"] = 11365, + ["Fire Attunement"] = 11366, + ["Pure Might"] = 11367, + ["Blacksmith"] = 11368, + ["Non-Flammable"] = 11369, + ["Winter Prowler"] = 11370, + ["Hibernator"] = 11371, + ["Pure Guile"] = 11372, + ["Alchemist"] = 11373, + ["Antifreeze"] = 11374, + ["Wizardry"] = 11375, + ["Capacitor"] = 11376, + ["Pure Aptitude"] = 11377, + ["Sage"] = 11378, + ["Insulated"] = 11379, + ["Born of Chaos"] = 11380, + ["Antivenom"] = 11381, + ["Rot-Resistant"] = 11382, + ["Blessed"] = 11383, + ["Student of Decay"] = 11384, + ["Lord of Drought"] = 12226, + ["Blizzard Caller"] = 12227, + ["Tempt the Storm"] = 12228, + ["Misery Everlasting"] = 12229, + ["Exploit Weakness"] = 12230, + ["Self-Control"] = 12235, + ["Uncompromising"] = 12236, + ["Sublime Form"] = 12237, + ["Mortifying Aspect"] = 12293, + ["Frantic Aspect"] = 12294, + ["Introspection"] = 12295, + ["Hound's Mark"] = 12231, + ["Doedre's Gluttony"] = 12232, + ["Doedre's Apathy"] = 12233, + ["Master of the Maelstrom"] = 12234, + ["Aggressive Defence"] = 15372, }, keystones = { "Disciple of Kitava", diff --git a/src/Data/Crucible.lua b/src/Data/Crucible.lua index 1f0c4e4527..e7708c0ad4 100644 --- a/src/Data/Crucible.lua +++ b/src/Data/Crucible.lua @@ -2,1747 +2,1747 @@ -- Item data (c) Grinding Gear Games return { - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1088,1224", statOrder = { 1088, 1224 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrderKey = "1088", statOrder = { 1088 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1088,1759", statOrder = { 1088, 1759 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1088,1761", statOrder = { 1088, 1761 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1088,1763", statOrder = { 1088, 1763 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1088,1766", statOrder = { 1088, 1766 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1088,1765", statOrder = { 1088, 1765 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1088,2274", statOrder = { 1088, 2274 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1088,7058", statOrder = { 1088, 7058 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1174,1224", statOrder = { 1174, 1224 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrderKey = "1174", statOrder = { 1174 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrderKey = "1174,1827", statOrder = { 1174, 1827 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrderKey = "42,1174", statOrder = { 42, 1174 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1183,2670", statOrder = { 1183, 2670 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrderKey = "1183,1830", statOrder = { 1183, 1830 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrderKey = "1183,1224", statOrder = { 1183, 1224 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1194,3165", statOrder = { 1194, 3165 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrderKey = "1194", statOrder = { 1194 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrderKey = "1194,1834", statOrder = { 1194, 1834 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1194,1274", statOrder = { 1194, 1274 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1201,1379", statOrder = { 1201, 1379 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrderKey = "1201", statOrder = { 1201 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1201,7170", statOrder = { 1201, 7170 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1201,9277", statOrder = { 1201, 9277 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrderKey = "1174,1183,1194", statOrder = { 1174, 1183, 1194 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1214,1256", statOrder = { 1214, 1256 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrderKey = "1214", statOrder = { 1214 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1214,1759", statOrder = { 1214, 1759 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1214,1761", statOrder = { 1214, 1761 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1214,1763", statOrder = { 1214, 1763 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1214,1766", statOrder = { 1214, 1766 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1214,2760", statOrder = { 1214, 2760 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1215,1256", statOrder = { 1215, 1256 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrderKey = "1215", statOrder = { 1215 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1215,1827", statOrder = { 1215, 1827 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrderKey = "42,1215", statOrder = { 42, 1215 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1216,2670", statOrder = { 1216, 2670 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrderKey = "1216", statOrder = { 1216 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1216,1830", statOrder = { 1216, 1830 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1216,1256", statOrder = { 1216, 1256 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1217,3165", statOrder = { 1217, 3165 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrderKey = "1217", statOrder = { 1217 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1217,1834", statOrder = { 1217, 1834 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1217,1268", statOrder = { 1217, 1268 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1218,1379", statOrder = { 1218, 1379 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrderKey = "1218", statOrder = { 1218 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1218,8898", statOrder = { 1218, 8898 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1218,9277", statOrder = { 1218, 9277 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1038,1268", statOrder = { 1038, 1268 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrderKey = "1038", statOrder = { 1038 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1038,1388", statOrder = { 1038, 1388 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1038,1369", statOrder = { 1038, 1369 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1025,1386", statOrder = { 1025, 1386 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrderKey = "1025", statOrder = { 1025 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1025,1701", statOrder = { 1025, 1701 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1025,4578", statOrder = { 1025, 4578 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3543,8149", statOrder = { 3543, 8149 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrderKey = "3543", statOrder = { 3543 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1760,3543", statOrder = { 1760, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1762,3543", statOrder = { 1762, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1764,3543", statOrder = { 1764, 3543 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1767,3543", statOrder = { 1767, 3543 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3543,8211", statOrder = { 3543, 8211 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3541,8149", statOrder = { 3541, 8149 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3541,8162", statOrder = { 3541, 8162 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrderKey = "42,3541", statOrder = { 42, 3541 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3540,8166", statOrder = { 3540, 8166 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrderKey = "3540", statOrder = { 3540 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3540,8159", statOrder = { 3540, 8159 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3540,8149", statOrder = { 3540, 8149 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrderKey = "3165,3542", statOrder = { 3165, 3542 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrderKey = "3542", statOrder = { 3542 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3542,8164", statOrder = { 3542, 8164 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3542,8166", statOrder = { 3542, 8166 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrderKey = "1379,3539", statOrder = { 1379, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrderKey = "3539", statOrder = { 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrderKey = "2950,3539", statOrder = { 2950, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrderKey = "1448,3539", statOrder = { 1448, 3539 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1777,8166", statOrder = { 1777, 8166 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrderKey = "1777", statOrder = { 1777 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrderKey = "1388,1777", statOrder = { 1388, 1777 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrderKey = "1369,1777", statOrder = { 1369, 1777 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrderKey = "146", statOrder = { 146 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrderKey = "147", statOrder = { 147 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrderKey = "147", statOrder = { 147 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrderKey = "142", statOrder = { 142 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrderKey = "142", statOrder = { 142 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrderKey = "148", statOrder = { 148 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrderKey = "148", statOrder = { 148 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrderKey = "130", statOrder = { 130 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrderKey = "129", statOrder = { 129 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrderKey = "131", statOrder = { 131 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "4538", statOrder = { 4538 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "4538", statOrder = { 4538 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "4492", statOrder = { 4492 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "4492", statOrder = { 4492 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "4495", statOrder = { 4495 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "4495", statOrder = { 4495 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrderKey = "4537", statOrder = { 4537 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrderKey = "4537", statOrder = { 4537 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1007,1687", statOrder = { 1007, 1687 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrderKey = "998,1007", statOrder = { 998, 1007 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrderKey = "1377", statOrder = { 1377 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrderKey = "1377", statOrder = { 1377 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrderKey = "1377", statOrder = { 1377 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrderKey = "1377", statOrder = { 1377 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrderKey = "1377", statOrder = { 1377 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrderKey = "1006,1377", statOrder = { 1006, 1377 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrderKey = "1006,1377", statOrder = { 1006, 1377 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrderKey = "1006,1377", statOrder = { 1006, 1377 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1377,1427", statOrder = { 1377, 1427 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1377,1427", statOrder = { 1377, 1427 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1377,1427", statOrder = { 1377, 1427 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrderKey = "1364,1377", statOrder = { 1364, 1377 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrderKey = "1364,1377", statOrder = { 1364, 1377 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrderKey = "1364,1377", statOrder = { 1364, 1377 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1377,1748", statOrder = { 1377, 1748 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1377,1748", statOrder = { 1377, 1748 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1377,1748", statOrder = { 1377, 1748 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1377,3050", statOrder = { 1377, 3050 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1377,3050", statOrder = { 1377, 3050 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1377,3050", statOrder = { 1377, 3050 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1377,1556", statOrder = { 1377, 1556 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1377,1556", statOrder = { 1377, 1556 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1377,1556", statOrder = { 1377, 1556 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrderKey = "1349", statOrder = { 1349 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrderKey = "1349", statOrder = { 1349 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrderKey = "1349", statOrder = { 1349 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrderKey = "1349", statOrder = { 1349 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrderKey = "1349", statOrder = { 1349 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1349,2045", statOrder = { 1349, 2045 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1349,2045", statOrder = { 1349, 2045 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1349,2045", statOrder = { 1349, 2045 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrderKey = "1321,1349", statOrder = { 1321, 1349 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrderKey = "1321,1349", statOrder = { 1321, 1349 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrderKey = "1321,1349", statOrder = { 1321, 1349 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrderKey = "999,1349", statOrder = { 999, 1349 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrderKey = "999,1349", statOrder = { 999, 1349 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrderKey = "999,1349", statOrder = { 999, 1349 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrderKey = "42,1349", statOrder = { 42, 1349 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrderKey = "42,1349", statOrder = { 42, 1349 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrderKey = "42,1349", statOrder = { 42, 1349 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrderKey = "1349,2049", statOrder = { 1349, 2049 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrderKey = "1349,2049", statOrder = { 1349, 2049 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrderKey = "1349,2049", statOrder = { 1349, 2049 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrderKey = "1357", statOrder = { 1357 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrderKey = "1357", statOrder = { 1357 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrderKey = "1357", statOrder = { 1357 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrderKey = "1357", statOrder = { 1357 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrderKey = "1357", statOrder = { 1357 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1357,4578", statOrder = { 1357, 4578 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1357,4578", statOrder = { 1357, 4578 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1357,4578", statOrder = { 1357, 4578 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1357,1706", statOrder = { 1357, 1706 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1357,1706", statOrder = { 1357, 1706 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1357,1706", statOrder = { 1357, 1706 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrderKey = "1000,1357", statOrder = { 1000, 1357 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrderKey = "1000,1357", statOrder = { 1000, 1357 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrderKey = "1000,1357", statOrder = { 1000, 1357 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrderKey = "42,1357", statOrder = { 42, 1357 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrderKey = "42,1357", statOrder = { 42, 1357 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrderKey = "42,1357", statOrder = { 42, 1357 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrderKey = "962,1357", statOrder = { 962, 1357 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrderKey = "962,1357", statOrder = { 962, 1357 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrderKey = "962,1357", statOrder = { 962, 1357 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrderKey = "1367", statOrder = { 1367 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrderKey = "1367", statOrder = { 1367 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrderKey = "1367", statOrder = { 1367 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrderKey = "1367", statOrder = { 1367 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrderKey = "1367", statOrder = { 1367 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1367,1373", statOrder = { 1367, 1373 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1367,1373", statOrder = { 1367, 1373 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1367,1373", statOrder = { 1367, 1373 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1367,1392", statOrder = { 1367, 1392 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1367,1392", statOrder = { 1367, 1392 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1367,1392", statOrder = { 1367, 1392 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrderKey = "1001,1367", statOrder = { 1001, 1367 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrderKey = "1001,1367", statOrder = { 1001, 1367 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrderKey = "1001,1367", statOrder = { 1001, 1367 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrderKey = "42,1367", statOrder = { 42, 1367 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrderKey = "42,1367", statOrder = { 42, 1367 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrderKey = "42,1367", statOrder = { 42, 1367 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1367,1388", statOrder = { 1367, 1388 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1367,1388", statOrder = { 1367, 1388 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1367,1388", statOrder = { 1367, 1388 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1169,1433", statOrder = { 1169, 1433 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1169,1433", statOrder = { 1169, 1433 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1169,1433", statOrder = { 1169, 1433 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrderKey = "1169", statOrder = { 1169 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrderKey = "1169", statOrder = { 1169 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrderKey = "1169", statOrder = { 1169 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1169,2238", statOrder = { 1169, 2238 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1169,2238", statOrder = { 1169, 2238 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1169,2238", statOrder = { 1169, 2238 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1178,1439", statOrder = { 1178, 1439 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1178,1439", statOrder = { 1178, 1439 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1178,1439", statOrder = { 1178, 1439 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrderKey = "1178", statOrder = { 1178 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrderKey = "1178", statOrder = { 1178 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1178,2239", statOrder = { 1178, 2239 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1178,2239", statOrder = { 1178, 2239 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1178,2239", statOrder = { 1178, 2239 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1189,1444", statOrder = { 1189, 1444 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1189,1444", statOrder = { 1189, 1444 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1189,1444", statOrder = { 1189, 1444 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1189,2240", statOrder = { 1189, 2240 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1189,2240", statOrder = { 1189, 2240 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1189,2240", statOrder = { 1189, 2240 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1197,1448", statOrder = { 1197, 1448 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1197,1448", statOrder = { 1197, 1448 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1197,1448", statOrder = { 1197, 1448 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrderKey = "1197", statOrder = { 1197 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrderKey = "1197", statOrder = { 1197 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrderKey = "1197", statOrder = { 1197 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1197,2242", statOrder = { 1197, 2242 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1197,2242", statOrder = { 1197, 2242 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1197,2242", statOrder = { 1197, 2242 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1045,1385", statOrder = { 1045, 1385 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1045,1385", statOrder = { 1045, 1385 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1045,1385", statOrder = { 1045, 1385 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrderKey = "1045", statOrder = { 1045 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrderKey = "1045", statOrder = { 1045 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrderKey = "1045", statOrder = { 1045 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1045,2072", statOrder = { 1045, 2072 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1045,2072", statOrder = { 1045, 2072 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1045,2072", statOrder = { 1045, 2072 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1273,2461", statOrder = { 1273, 2461 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1273,2461", statOrder = { 1273, 2461 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1273,2461", statOrder = { 1273, 2461 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrderKey = "1273,1298", statOrder = { 1273, 1298 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrderKey = "1273", statOrder = { 1273 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrderKey = "1273", statOrder = { 1273 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrderKey = "1273", statOrder = { 1273 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrderKey = "1224,1273", statOrder = { 1224, 1273 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrderKey = "1224,1273", statOrder = { 1224, 1273 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrderKey = "1224,1273", statOrder = { 1224, 1273 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1273,1825", statOrder = { 1273, 1825 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1273,1825", statOrder = { 1273, 1825 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1273,1825", statOrder = { 1273, 1825 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrderKey = "1224,9240", statOrder = { 1224, 9240 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrderKey = "1224", statOrder = { 1224 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1224,2774", statOrder = { 1224, 2774 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1224,2416", statOrder = { 1224, 2416 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrderKey = "1224,7111", statOrder = { 1224, 7111 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrderKey = "1224,1844", statOrder = { 1224, 1844 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrderKey = "1273,1844", statOrder = { 1273, 1844 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrderKey = "1825", statOrder = { 1825 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrderKey = "1825", statOrder = { 1825 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrderKey = "1825", statOrder = { 1825 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrderKey = "1000,1825", statOrder = { 1000, 1825 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrderKey = "1358,1825", statOrder = { 1358, 1825 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrderKey = "2461,8843", statOrder = { 2461, 8843 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrderKey = "8843", statOrder = { 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.3% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrderKey = "1301,8843", statOrder = { 1301, 8843 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrderKey = "2030,8843", statOrder = { 2030, 8843 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrderKey = "9238,9240", statOrder = { 9238, 9240 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrderKey = "9238", statOrder = { 9238 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrderKey = "1687,9238", statOrder = { 1687, 9238 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "8900,9238", statOrder = { 8900, 9238 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1389,2030", statOrder = { 1389, 2030 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrderKey = "1389", statOrder = { 1389 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrderKey = "1389,9262", statOrder = { 1389, 9262 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1389,1689", statOrder = { 1389, 1689 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8147,8149", statOrder = { 8147, 8149 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrderKey = "8147", statOrder = { 8147 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8147,8168", statOrder = { 8147, 8168 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrderKey = "1947,8147", statOrder = { 1947, 8147 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8149,8196", statOrder = { 8149, 8196 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrderKey = "8149", statOrder = { 8149 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8149,8174", statOrder = { 8149, 8174 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrderKey = "1947,8144", statOrder = { 1947, 8144 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrderKey = "8144", statOrder = { 8144 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8144,8178", statOrder = { 8144, 8178 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minion hits can't be Evaded", statOrderKey = "8156,8181", statOrder = { 8156, 8181 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "976,3044", statOrder = { 976, 3044 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "976,3044", statOrder = { 976, 3044 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "976,3044", statOrder = { 976, 3044 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "976,2049", statOrder = { 976, 2049 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "976,2049", statOrder = { 976, 2049 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "976,2049", statOrder = { 976, 2049 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "976,4587", statOrder = { 976, 4587 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "976,4587", statOrder = { 976, 4587 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "976,4587", statOrder = { 976, 4587 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrderKey = "976", statOrder = { 976 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrderKey = "976", statOrder = { 976 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrderKey = "976", statOrder = { 976 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrderKey = "976,9262", statOrder = { 976, 9262 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrderKey = "976,9262", statOrder = { 976, 9262 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2049,4902", statOrder = { 2049, 4902 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2049,4902", statOrder = { 2049, 4902 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2049,4902", statOrder = { 2049, 4902 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2049,4587", statOrder = { 2049, 4587 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2049,4587", statOrder = { 2049, 4587 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2049,4587", statOrder = { 2049, 4587 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrderKey = "2049", statOrder = { 2049 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrderKey = "2049", statOrder = { 2049 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrderKey = "2049", statOrder = { 2049 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrderKey = "1564,2049", statOrder = { 1564, 2049 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrderKey = "1564,2049", statOrder = { 1564, 2049 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrderKey = "982,2049", statOrder = { 982, 2049 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrderKey = "982,2049", statOrder = { 982, 2049 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1364,1379", statOrder = { 1364, 1379 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1364,1379", statOrder = { 1364, 1379 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1364,1379", statOrder = { 1364, 1379 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1364,2049", statOrder = { 1364, 2049 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrderKey = "1364", statOrder = { 1364 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrderKey = "1364", statOrder = { 1364 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrderKey = "1364", statOrder = { 1364 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "15% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1364,4036", statOrder = { 1364, 4036 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "20% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1364,4036", statOrder = { 1364, 4036 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "25% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1364,4036", statOrder = { 1364, 4036 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrderKey = "1095,1364", statOrder = { 1095, 1364 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrderKey = "1095,1364", statOrder = { 1095, 1364 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrderKey = "1095,1364", statOrder = { 1095, 1364 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrderKey = "1433,1439", statOrder = { 1433, 1439 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrderKey = "1439,1444", statOrder = { 1439, 1444 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrderKey = "1433,1444", statOrder = { 1433, 1444 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1427,1448", statOrder = { 1427, 1448 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrderKey = "1364,1427", statOrder = { 1364, 1427 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrderKey = "1364,1427", statOrder = { 1364, 1427 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrderKey = "1364,1427", statOrder = { 1364, 1427 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1427,2049", statOrder = { 1427, 2049 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1427,2049", statOrder = { 1427, 2049 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1427,2049", statOrder = { 1427, 2049 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrderKey = "1379,1448", statOrder = { 1379, 1448 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrderKey = "1379,1448", statOrder = { 1379, 1448 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrderKey = "1379,1448", statOrder = { 1379, 1448 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrderKey = "1431,1437", statOrder = { 1431, 1437 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrderKey = "1431,1437", statOrder = { 1431, 1437 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1431,1442", statOrder = { 1431, 1442 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1431,1442", statOrder = { 1431, 1442 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrderKey = "1431,1437", statOrder = { 1431, 1437 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrderKey = "1431,1437", statOrder = { 1431, 1437 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1437,1442", statOrder = { 1437, 1442 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1437,1442", statOrder = { 1437, 1442 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrderKey = "1437,1442", statOrder = { 1437, 1442 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrderKey = "1437,1442", statOrder = { 1437, 1442 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrderKey = "1431,1442", statOrder = { 1431, 1442 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrderKey = "1431,1442", statOrder = { 1431, 1442 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrderKey = "1447,1450", statOrder = { 1447, 1450 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrderKey = "1447,1450", statOrder = { 1447, 1450 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrderKey = "1447,1450", statOrder = { 1447, 1450 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrderKey = "1447,1450", statOrder = { 1447, 1450 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrderKey = "9400", statOrder = { 9400 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrderKey = "9423", statOrder = { 9423 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrderKey = "9376", statOrder = { 9376 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrderKey = "9402", statOrder = { 9402 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrderKey = "9385", statOrder = { 9385 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrderKey = "9414", statOrder = { 9414 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrderKey = "9403", statOrder = { 9403 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrderKey = "9371", statOrder = { 9371 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrderKey = "9391", statOrder = { 9391 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrderKey = "9417", statOrder = { 9417 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrderKey = "9386", statOrder = { 9386 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrderKey = "9374", statOrder = { 9374 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrderKey = "9384", statOrder = { 9384 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrderKey = "9373", statOrder = { 9373 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrderKey = "9381", statOrder = { 9381 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrderKey = "9372", statOrder = { 9372 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrderKey = "9408", statOrder = { 9408 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrderKey = "9392", statOrder = { 9392 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrderKey = "9377", statOrder = { 9377 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrderKey = "9401", statOrder = { 9401 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrderKey = "9415", statOrder = { 9415 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrderKey = "9395", statOrder = { 9395 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrderKey = "9393", statOrder = { 9393 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrderKey = "9397", statOrder = { 9397 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrderKey = "9390", statOrder = { 9390 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrderKey = "9418", statOrder = { 9418 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrderKey = "9398", statOrder = { 9398 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrderKey = "9412", statOrder = { 9412 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrderKey = "9383", statOrder = { 9383 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrderKey = "9424", statOrder = { 9424 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrderKey = "9419", statOrder = { 9419 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrderKey = "9420", statOrder = { 9420 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrderKey = "9379", statOrder = { 9379 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrderKey = "9405", statOrder = { 9405 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrderKey = "9404", statOrder = { 9404 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrderKey = "9396", statOrder = { 9396 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrderKey = "9416", statOrder = { 9416 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrderKey = "9409", statOrder = { 9409 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrderKey = "9388", statOrder = { 9388 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrderKey = "9399", statOrder = { 9399 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrderKey = "9407", statOrder = { 9407 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrderKey = "7263", statOrder = { 7263 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrderKey = "1224,7263", statOrder = { 1224, 7263 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrderKey = "1273,7263", statOrder = { 1273, 7263 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrderKey = "2049,7263", statOrder = { 2049, 7263 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrderKey = "7126", statOrder = { 7126 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrderKey = "7126", statOrder = { 7126 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrderKey = "7126", statOrder = { 7126 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrderKey = "1064,1433", statOrder = { 1064, 1433 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrderKey = "1064,1433", statOrder = { 1064, 1433 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrderKey = "1064,1433", statOrder = { 1064, 1433 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrderKey = "1064,1433", statOrder = { 1064, 1433 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrderKey = "1069,1439", statOrder = { 1069, 1439 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrderKey = "1069,1439", statOrder = { 1069, 1439 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrderKey = "1069,1439", statOrder = { 1069, 1439 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrderKey = "1069,1439", statOrder = { 1069, 1439 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrderKey = "1072,1448", statOrder = { 1072, 1448 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrderKey = "1072,1448", statOrder = { 1072, 1448 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrderKey = "1072,1448", statOrder = { 1072, 1448 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrderKey = "1072,1448", statOrder = { 1072, 1448 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrderKey = "1060,6402", statOrder = { 1060, 6402 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrderKey = "1060,6402", statOrder = { 1060, 6402 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrderKey = "1060,6402", statOrder = { 1060, 6402 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrderKey = "1060,6402", statOrder = { 1060, 6402 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrderKey = "1427,3531", statOrder = { 1427, 3531 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrderKey = "1427,3531", statOrder = { 1427, 3531 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrderKey = "1448,7070", statOrder = { 1448, 7070 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrderKey = "1448,7070", statOrder = { 1448, 7070 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1686,4365", statOrder = { 1686, 4365 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1686,4365", statOrder = { 1686, 4365 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1686,4365", statOrder = { 1686, 4365 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1686,4365", statOrder = { 1686, 4365 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrderKey = "1686,3986", statOrder = { 1686, 3986 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrderKey = "1686,3986", statOrder = { 1686, 3986 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrderKey = "1686,3986", statOrder = { 1686, 3986 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrderKey = "1686,3986", statOrder = { 1686, 3986 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrderKey = "1602,1797", statOrder = { 1602, 1797 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrderKey = "1602,1797", statOrder = { 1602, 1797 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrderKey = "1602,1797", statOrder = { 1602, 1797 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrderKey = "1602,1797", statOrder = { 1602, 1797 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrderKey = "1594,4954", statOrder = { 1594, 4954 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrderKey = "4954", statOrder = { 4954 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrderKey = "4954", statOrder = { 4954 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrderKey = "4954", statOrder = { 4954 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrderKey = "4954", statOrder = { 4954 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrderKey = "1596", statOrder = { 1596 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrderKey = "1596", statOrder = { 1596 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrderKey = "1596", statOrder = { 1596 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrderKey = "5098", statOrder = { 5098 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrderKey = "5098", statOrder = { 5098 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrderKey = "5098", statOrder = { 5098 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrderKey = "5098", statOrder = { 5098 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrderKey = "2389,8016", statOrder = { 2389, 8016 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrderKey = "2389,8016", statOrder = { 2389, 8016 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrderKey = "2389,8016", statOrder = { 2389, 8016 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrderKey = "2389,8016", statOrder = { 2389, 8016 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2389,6065", statOrder = { 2389, 6065 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2389,6065", statOrder = { 2389, 6065 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2389,6065", statOrder = { 2389, 6065 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2389,6065", statOrder = { 2389, 6065 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% reduced Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrderKey = "4210,5388", statOrder = { 4210, 5388 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% reduced Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrderKey = "4210,5388", statOrder = { 4210, 5388 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrderKey = "2530", statOrder = { 2530 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrderKey = "2530", statOrder = { 2530 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrderKey = "1959,7158", statOrder = { 1959, 7158 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrderKey = "1959,7158", statOrder = { 1959, 7158 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrderKey = "1959,7158", statOrder = { 1959, 7158 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrderKey = "1959,7158", statOrder = { 1959, 7158 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrderKey = "1960,7161", statOrder = { 1960, 7161 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrderKey = "1960,7161", statOrder = { 1960, 7161 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrderKey = "1960,7161", statOrder = { 1960, 7161 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrderKey = "1960,7161", statOrder = { 1960, 7161 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1529,1961", statOrder = { 1529, 1961 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1529,1961", statOrder = { 1529, 1961 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1529,1961", statOrder = { 1529, 1961 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1529,1961", statOrder = { 1529, 1961 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrderKey = "1538", statOrder = { 1538 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrderKey = "1538", statOrder = { 1538 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrderKey = "1540", statOrder = { 1540 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrderKey = "1540", statOrder = { 1540 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrderKey = "1541", statOrder = { 1541 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrderKey = "1541", statOrder = { 1541 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrderKey = "1545,1552", statOrder = { 1545, 1552 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrderKey = "1545,1552", statOrder = { 1545, 1552 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrderKey = "1545,1552", statOrder = { 1545, 1552 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrderKey = "1545,1552", statOrder = { 1545, 1552 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1604,4148", statOrder = { 1604, 4148 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1604,4148", statOrder = { 1604, 4148 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1604,4148", statOrder = { 1604, 4148 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1604,4148", statOrder = { 1604, 4148 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1604,9333", statOrder = { 1604, 9333 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1604,9333", statOrder = { 1604, 9333 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1604,9333", statOrder = { 1604, 9333 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1604,9333", statOrder = { 1604, 9333 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3066,6033", statOrder = { 3066, 6033 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3066,6033", statOrder = { 3066, 6033 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3066,6033", statOrder = { 3066, 6033 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3066,6033", statOrder = { 3066, 6033 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrderKey = "3066,4857", statOrder = { 3066, 4857 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrderKey = "3066,4857", statOrder = { 3066, 4857 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrderKey = "3066,4857", statOrder = { 3066, 4857 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrderKey = "3066,4857", statOrder = { 3066, 4857 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrderKey = "3068,4857", statOrder = { 3068, 4857 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrderKey = "3068,4857", statOrder = { 3068, 4857 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrderKey = "3068,4857", statOrder = { 3068, 4857 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrderKey = "3068,4857", statOrder = { 3068, 4857 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3068,3157", statOrder = { 3068, 3157 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3068,3157", statOrder = { 3068, 3157 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3068,3157", statOrder = { 3068, 3157 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3068,3157", statOrder = { 3068, 3157 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3155,4857", statOrder = { 3155, 4857 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3155,4857", statOrder = { 3155, 4857 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3155,4857", statOrder = { 3155, 4857 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3155,4857", statOrder = { 3155, 4857 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3239,4857", statOrder = { 3239, 4857 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3239,4857", statOrder = { 3239, 4857 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3239,4857", statOrder = { 3239, 4857 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3239,4857", statOrder = { 3239, 4857 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrderKey = "2288,2554", statOrder = { 2288, 2554 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrderKey = "2288,2554", statOrder = { 2288, 2554 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrderKey = "1326,3337", statOrder = { 1326, 3337 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrderKey = "1326,3337", statOrder = { 1326, 3337 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrderKey = "1326,3337", statOrder = { 1326, 3337 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrderKey = "1326,3337", statOrder = { 1326, 3337 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrderKey = "2064,5099", statOrder = { 2064, 5099 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrderKey = "2064,5099", statOrder = { 2064, 5099 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrderKey = "2064,5099", statOrder = { 2064, 5099 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrderKey = "2064,5099", statOrder = { 2064, 5099 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrderKey = "1701,4595", statOrder = { 1701, 4595 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2527,3168", statOrder = { 2527, 3168 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2527,3168", statOrder = { 2527, 3168 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2527,3168", statOrder = { 2527, 3168 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2527,3168", statOrder = { 2527, 3168 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrderKey = "1984,2527", statOrder = { 1984, 2527 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrderKey = "1984,2527", statOrder = { 1984, 2527 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrderKey = "1984,2527", statOrder = { 1984, 2527 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrderKey = "1984,2527", statOrder = { 1984, 2527 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrderKey = "2387,9266", statOrder = { 2387, 9266 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrderKey = "2387,9266", statOrder = { 2387, 9266 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrderKey = "2387,9266", statOrder = { 2387, 9266 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrderKey = "2387,9266", statOrder = { 2387, 9266 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrderKey = "1972,2387", statOrder = { 1972, 2387 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrderKey = "1972,2387", statOrder = { 1972, 2387 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrderKey = "1972,2387", statOrder = { 1972, 2387 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrderKey = "1972,2387", statOrder = { 1972, 2387 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrderKey = "2025,6378", statOrder = { 2025, 6378 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrderKey = "2025,6378", statOrder = { 2025, 6378 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrderKey = "2025,6378", statOrder = { 2025, 6378 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrderKey = "2025,6378", statOrder = { 2025, 6378 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrderKey = "8552", statOrder = { 8552 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrderKey = "8552", statOrder = { 8552 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrderKey = "7338,8105", statOrder = { 7338, 8105 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrderKey = "7338,8105", statOrder = { 7338, 8105 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrderKey = "7338,8105", statOrder = { 7338, 8105 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrderKey = "7338,8105", statOrder = { 7338, 8105 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrderKey = "8101,8103", statOrder = { 8101, 8103 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrderKey = "8101,8103", statOrder = { 8101, 8103 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrderKey = "8101,8103", statOrder = { 8101, 8103 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrderKey = "8101,8103", statOrder = { 8101, 8103 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrderKey = "1729,1731", statOrder = { 1729, 1731 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrderKey = "1729,1731", statOrder = { 1729, 1731 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrderKey = "1729,1731", statOrder = { 1729, 1731 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrderKey = "1729,1731", statOrder = { 1729, 1731 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrderKey = "9099,9263", statOrder = { 9099, 9263 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrderKey = "9099,9263", statOrder = { 9099, 9263 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrderKey = "4838,8767", statOrder = { 4838, 8767 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrderKey = "4838,8767", statOrder = { 4838, 8767 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrderKey = "4838,8767", statOrder = { 4838, 8767 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrderKey = "4838,8767", statOrder = { 4838, 8767 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrderKey = "8768,8772", statOrder = { 8768, 8772 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrderKey = "8768,8772", statOrder = { 8768, 8772 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrderKey = "8768,8772", statOrder = { 8768, 8772 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrderKey = "8768,8772", statOrder = { 8768, 8772 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that would Summon a Totem have 25% chance to Summon two Totems instead", statOrderKey = "2369,5141", statOrder = { 2369, 5141 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that would Summon a Totem have 40% chance to Summon two Totems instead", statOrderKey = "2369,5141", statOrder = { 2369, 5141 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that would Summon a Totem have 50% chance to Summon two Totems instead", statOrderKey = "2369,5141", statOrder = { 2369, 5141 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that would Summon a Totem have 70% chance to Summon two Totems instead", statOrderKey = "2369,5141", statOrder = { 2369, 5141 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrderKey = "1580,9087", statOrder = { 1580, 9087 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrderKey = "1580,9087", statOrder = { 1580, 9087 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrderKey = "1580,9087", statOrder = { 1580, 9087 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrderKey = "1580,9087", statOrder = { 1580, 9087 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrderKey = "1452,9133", statOrder = { 1452, 9133 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrderKey = "8748,9153", statOrder = { 8748, 9153 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrderKey = "9227,9234", statOrder = { 9227, 9234 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrderKey = "9227,9234", statOrder = { 9227, 9234 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrderKey = "9227,9234", statOrder = { 9227, 9234 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrderKey = "9227,9234", statOrder = { 9227, 9234 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrderKey = "1006,5460", statOrder = { 1006, 5460 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrderKey = "1006,5460", statOrder = { 1006, 5460 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrderKey = "1006,5460", statOrder = { 1006, 5460 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrderKey = "1006,5460", statOrder = { 1006, 5460 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1828,2351", statOrder = { 1828, 2351 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1828,2351", statOrder = { 1828, 2351 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1828,2351", statOrder = { 1828, 2351 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1828,2351", statOrder = { 1828, 2351 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1831,2353", statOrder = { 1831, 2353 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1831,2353", statOrder = { 1831, 2353 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1831,2353", statOrder = { 1831, 2353 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1831,2353", statOrder = { 1831, 2353 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1835,2354", statOrder = { 1835, 2354 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1835,2354", statOrder = { 1835, 2354 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1835,2354", statOrder = { 1835, 2354 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1835,2354", statOrder = { 1835, 2354 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrderKey = "4613,6504", statOrder = { 4613, 6504 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrderKey = "4612,6503", statOrder = { 4612, 6503 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrderKey = "4614,6505", statOrder = { 4614, 6505 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrderKey = "6495,6506", statOrder = { 6495, 6506 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4162,6507", statOrder = { 4162, 6507 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4162,6507", statOrder = { 4162, 6507 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4162,6507", statOrder = { 4162, 6507 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4162,6507", statOrder = { 4162, 6507 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrderKey = "2760,6402", statOrder = { 2760, 6402 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrderKey = "2760,6402", statOrder = { 2760, 6402 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrderKey = "2760,6402", statOrder = { 2760, 6402 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrderKey = "2760,6402", statOrder = { 2760, 6402 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrderKey = "1669,3941", statOrder = { 1669, 3941 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrderKey = "1669,3941", statOrder = { 1669, 3941 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrderKey = "1669,3941", statOrder = { 1669, 3941 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrderKey = "1669,3941", statOrder = { 1669, 3941 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrderKey = "1664,1680", statOrder = { 1664, 1680 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrderKey = "1664,1680", statOrder = { 1664, 1680 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrderKey = "1664,1680", statOrder = { 1664, 1680 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrderKey = "1664,1680", statOrder = { 1664, 1680 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrderKey = "1665,1681", statOrder = { 1665, 1681 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrderKey = "1665,1681", statOrder = { 1665, 1681 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrderKey = "1665,1681", statOrder = { 1665, 1681 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrderKey = "1665,1681", statOrder = { 1665, 1681 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrderKey = "4586,8702", statOrder = { 4586, 8702 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrderKey = "4586,8702", statOrder = { 4586, 8702 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrderKey = "4586,8702", statOrder = { 4586, 8702 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrderKey = "4586,8702", statOrder = { 4586, 8702 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrderKey = "2946,8709", statOrder = { 2946, 8709 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrderKey = "2946,8709", statOrder = { 2946, 8709 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrderKey = "2946,8709", statOrder = { 2946, 8709 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrderKey = "2946,8709", statOrder = { 2946, 8709 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrderKey = "1452,5182", statOrder = { 1452, 5182 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrderKey = "1452,5182", statOrder = { 1452, 5182 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrderKey = "1452,5182", statOrder = { 1452, 5182 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrderKey = "1452,5182", statOrder = { 1452, 5182 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrderKey = "8737,8748", statOrder = { 8737, 8748 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrderKey = "8737,8748", statOrder = { 8737, 8748 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrderKey = "8737,8748", statOrder = { 8737, 8748 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrderKey = "8737,8748", statOrder = { 8737, 8748 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrderKey = "6473,8594", statOrder = { 6473, 8594 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrderKey = "6473,8594", statOrder = { 6473, 8594 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrderKey = "6473,8594", statOrder = { 6473, 8594 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrderKey = "6473,8594", statOrder = { 6473, 8594 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrderKey = "898", statOrder = { 898 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrderKey = "898", statOrder = { 898 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "993,1816", statOrder = { 993, 1816 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "993,1816", statOrder = { 993, 1816 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "993,1816", statOrder = { 993, 1816 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "993,1816", statOrder = { 993, 1816 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "994,1817", statOrder = { 994, 1817 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "994,1817", statOrder = { 994, 1817 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "994,1817", statOrder = { 994, 1817 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "994,1817", statOrder = { 994, 1817 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "992,1818", statOrder = { 992, 1818 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "992,1818", statOrder = { 992, 1818 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "992,1818", statOrder = { 992, 1818 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "992,1818", statOrder = { 992, 1818 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrderKey = "1000,1001", statOrder = { 1000, 1001 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrderKey = "1000,1001", statOrder = { 1000, 1001 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrderKey = "1000,1001", statOrder = { 1000, 1001 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrderKey = "1000,1001", statOrder = { 1000, 1001 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrderKey = "999,1000", statOrder = { 999, 1000 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrderKey = "999,1000", statOrder = { 999, 1000 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrderKey = "999,1000", statOrder = { 999, 1000 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrderKey = "999,1000", statOrder = { 999, 1000 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrderKey = "999,1001", statOrder = { 999, 1001 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrderKey = "999,1001", statOrder = { 999, 1001 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrderKey = "999,1001", statOrder = { 999, 1001 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrderKey = "999,1001", statOrder = { 999, 1001 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrderKey = "8250", statOrder = { 8250 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrderKey = "8250", statOrder = { 8250 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrderKey = "8250", statOrder = { 8250 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrderKey = "8250", statOrder = { 8250 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrderKey = "4359", statOrder = { 4359 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrderKey = "4359", statOrder = { 4359 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrderKey = "4359", statOrder = { 4359 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrderKey = "4359", statOrder = { 4359 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrderKey = "5634", statOrder = { 5634 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrderKey = "5634", statOrder = { 5634 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrderKey = "5634", statOrder = { 5634 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrderKey = "5634", statOrder = { 5634 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrderKey = "1123,1259", statOrder = { 1123, 1259 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrderKey = "1123", statOrder = { 1123 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1123,1794", statOrder = { 1123, 1794 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1123,1796", statOrder = { 1123, 1796 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1123,1798", statOrder = { 1123, 1798 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1123,1801", statOrder = { 1123, 1801 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrderKey = "1123,1800", statOrder = { 1123, 1800 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrderKey = "1123,2316", statOrder = { 1123, 2316 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrderKey = "1123,7131", statOrder = { 1123, 7131 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrderKey = "1209,1259", statOrder = { 1209, 1259 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrderKey = "1209", statOrder = { 1209 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrderKey = "1209,1862", statOrder = { 1209, 1862 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrderKey = "42,1209", statOrder = { 42, 1209 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrderKey = "1218,2716", statOrder = { 1218, 2716 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrderKey = "1218", statOrder = { 1218 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrderKey = "1218,1865", statOrder = { 1218, 1865 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrderKey = "1218,1259", statOrder = { 1218, 1259 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrderKey = "1229,3211", statOrder = { 1229, 3211 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrderKey = "1229", statOrder = { 1229 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrderKey = "1229,1869", statOrder = { 1229, 1869 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrderKey = "1229,1309", statOrder = { 1229, 1309 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrderKey = "1236,1414", statOrder = { 1236, 1414 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrderKey = "1236", statOrder = { 1236 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrderKey = "1236,7245", statOrder = { 1236, 7245 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrderKey = "1236,9466", statOrder = { 1236, 9466 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrderKey = "1209,1218,1229", statOrder = { 1209, 1218, 1229 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1249,1291", statOrder = { 1249, 1291 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrderKey = "1249", statOrder = { 1249 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "1249,1794", statOrder = { 1249, 1794 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "1249,1796", statOrder = { 1249, 1796 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "1249,1798", statOrder = { 1249, 1798 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrderKey = "1249,1801", statOrder = { 1249, 1801 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrderKey = "1249,2806", statOrder = { 1249, 2806 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrderKey = "1250,1291", statOrder = { 1250, 1291 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrderKey = "1250", statOrder = { 1250 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrderKey = "1250,1862", statOrder = { 1250, 1862 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrderKey = "42,1250", statOrder = { 42, 1250 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrderKey = "1251,2716", statOrder = { 1251, 2716 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrderKey = "1251", statOrder = { 1251 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrderKey = "1251,1865", statOrder = { 1251, 1865 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrderKey = "1251,1291", statOrder = { 1251, 1291 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrderKey = "1252,3211", statOrder = { 1252, 3211 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrderKey = "1252", statOrder = { 1252 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrderKey = "1252,1869", statOrder = { 1252, 1869 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Critical Strike Chance for Spells", statOrderKey = "1252,1303", statOrder = { 1252, 1303 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrderKey = "1253,1414", statOrder = { 1253, 1414 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrderKey = "1253", statOrder = { 1253 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrderKey = "1253,9084", statOrder = { 1253, 9084 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrderKey = "1253,9466", statOrder = { 1253, 9466 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Critical Strike Chance for Spells", statOrderKey = "1073,1303", statOrder = { 1073, 1303 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrderKey = "1073,1423", statOrder = { 1073, 1423 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrderKey = "1073,1404", statOrder = { 1073, 1404 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrderKey = "1060,1421", statOrder = { 1060, 1421 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrderKey = "1060", statOrder = { 1060 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrderKey = "1060,1736", statOrder = { 1060, 1736 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrderKey = "1060,4637", statOrder = { 1060, 4637 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3589,8315", statOrder = { 3589, 8315 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrderKey = "3589", statOrder = { 3589 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1795,3589", statOrder = { 1795, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1797,3589", statOrder = { 1797, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1799,3589", statOrder = { 1799, 3589 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrderKey = "1802,3589", statOrder = { 1802, 3589 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrderKey = "3589,8378", statOrder = { 3589, 8378 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "3587,8315", statOrder = { 3587, 8315 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrderKey = "3587", statOrder = { 3587 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrderKey = "3587,8328", statOrder = { 3587, 8328 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrderKey = "42,3587", statOrder = { 42, 3587 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "3586,8332", statOrder = { 3586, 8332 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrderKey = "3586", statOrder = { 3586 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrderKey = "3586,8325", statOrder = { 3586, 8325 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrderKey = "3586,8315", statOrder = { 3586, 8315 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrderKey = "3211,3588", statOrder = { 3211, 3588 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrderKey = "3588", statOrder = { 3588 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrderKey = "3588,8330", statOrder = { 3588, 8330 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrderKey = "3588,8332", statOrder = { 3588, 8332 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrderKey = "1414,3585", statOrder = { 1414, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrderKey = "3585", statOrder = { 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrderKey = "2996,3585", statOrder = { 2996, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrderKey = "1483,3585", statOrder = { 1483, 3585 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrderKey = "1812,8332", statOrder = { 1812, 8332 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrderKey = "1812", statOrder = { 1812 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrderKey = "1423,1812", statOrder = { 1423, 1812 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrderKey = "1404,1812", statOrder = { 1404, 1812 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrderKey = "153", statOrder = { 153 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrderKey = "154", statOrder = { 154 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrderKey = "154", statOrder = { 154 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrderKey = "149", statOrder = { 149 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrderKey = "149", statOrder = { 149 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrderKey = "155", statOrder = { 155 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrderKey = "155", statOrder = { 155 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrderKey = "135", statOrder = { 135 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrderKey = "134", statOrder = { 134 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrderKey = "136", statOrder = { 136 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "4593", statOrder = { 4593 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "4593", statOrder = { 4593 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "4547", statOrder = { 4547 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "4547", statOrder = { 4547 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "4550", statOrder = { 4550 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "4550", statOrder = { 4550 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrderKey = "4592", statOrder = { 4592 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrderKey = "4592", statOrder = { 4592 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrderKey = "1042,1722", statOrder = { 1042, 1722 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrderKey = "1042", statOrder = { 1042 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrderKey = "1033,1042", statOrder = { 1033, 1042 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrderKey = "1412", statOrder = { 1412 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrderKey = "1412", statOrder = { 1412 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrderKey = "1412", statOrder = { 1412 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrderKey = "1412", statOrder = { 1412 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrderKey = "1412", statOrder = { 1412 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrderKey = "1041,1412", statOrder = { 1041, 1412 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrderKey = "1041,1412", statOrder = { 1041, 1412 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrderKey = "1041,1412", statOrder = { 1041, 1412 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1412,1462", statOrder = { 1412, 1462 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1412,1462", statOrder = { 1412, 1462 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrderKey = "1412,1462", statOrder = { 1412, 1462 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrderKey = "1399,1412", statOrder = { 1399, 1412 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrderKey = "1399,1412", statOrder = { 1399, 1412 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrderKey = "1399,1412", statOrder = { 1399, 1412 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1412,1783", statOrder = { 1412, 1783 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1412,1783", statOrder = { 1412, 1783 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrderKey = "1412,1783", statOrder = { 1412, 1783 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1412,3096", statOrder = { 1412, 3096 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1412,3096", statOrder = { 1412, 3096 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrderKey = "1412,3096", statOrder = { 1412, 3096 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1412,1591", statOrder = { 1412, 1591 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1412,1591", statOrder = { 1412, 1591 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrderKey = "1412,1591", statOrder = { 1412, 1591 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrderKey = "1384", statOrder = { 1384 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrderKey = "1384", statOrder = { 1384 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrderKey = "1384", statOrder = { 1384 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrderKey = "1384", statOrder = { 1384 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrderKey = "1384", statOrder = { 1384 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1384,2081", statOrder = { 1384, 2081 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1384,2081", statOrder = { 1384, 2081 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrderKey = "1384,2081", statOrder = { 1384, 2081 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrderKey = "1356,1384", statOrder = { 1356, 1384 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrderKey = "1356,1384", statOrder = { 1356, 1384 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrderKey = "1356,1384", statOrder = { 1356, 1384 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrderKey = "1034,1384", statOrder = { 1034, 1384 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrderKey = "1034,1384", statOrder = { 1034, 1384 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrderKey = "1034,1384", statOrder = { 1034, 1384 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrderKey = "42,1384", statOrder = { 42, 1384 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrderKey = "42,1384", statOrder = { 42, 1384 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrderKey = "42,1384", statOrder = { 42, 1384 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrderKey = "1384,2085", statOrder = { 1384, 2085 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrderKey = "1384,2085", statOrder = { 1384, 2085 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrderKey = "1384,2085", statOrder = { 1384, 2085 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrderKey = "1392", statOrder = { 1392 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrderKey = "1392", statOrder = { 1392 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrderKey = "1392", statOrder = { 1392 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrderKey = "1392", statOrder = { 1392 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrderKey = "1392", statOrder = { 1392 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1392,4637", statOrder = { 1392, 4637 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1392,4637", statOrder = { 1392, 4637 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrderKey = "1392,4637", statOrder = { 1392, 4637 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1392,1741", statOrder = { 1392, 1741 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1392,1741", statOrder = { 1392, 1741 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrderKey = "1392,1741", statOrder = { 1392, 1741 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrderKey = "1035,1392", statOrder = { 1035, 1392 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrderKey = "1035,1392", statOrder = { 1035, 1392 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrderKey = "1035,1392", statOrder = { 1035, 1392 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrderKey = "42,1392", statOrder = { 42, 1392 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrderKey = "42,1392", statOrder = { 42, 1392 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrderKey = "42,1392", statOrder = { 42, 1392 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrderKey = "997,1392", statOrder = { 997, 1392 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrderKey = "997,1392", statOrder = { 997, 1392 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrderKey = "997,1392", statOrder = { 997, 1392 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrderKey = "1402", statOrder = { 1402 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrderKey = "1402", statOrder = { 1402 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrderKey = "1402", statOrder = { 1402 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrderKey = "1402", statOrder = { 1402 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrderKey = "1402", statOrder = { 1402 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1402,1408", statOrder = { 1402, 1408 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1402,1408", statOrder = { 1402, 1408 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrderKey = "1402,1408", statOrder = { 1402, 1408 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1402,1427", statOrder = { 1402, 1427 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1402,1427", statOrder = { 1402, 1427 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrderKey = "1402,1427", statOrder = { 1402, 1427 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrderKey = "1036,1402", statOrder = { 1036, 1402 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrderKey = "1036,1402", statOrder = { 1036, 1402 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrderKey = "1036,1402", statOrder = { 1036, 1402 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrderKey = "42,1402", statOrder = { 42, 1402 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrderKey = "42,1402", statOrder = { 42, 1402 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrderKey = "42,1402", statOrder = { 42, 1402 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1402,1423", statOrder = { 1402, 1423 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1402,1423", statOrder = { 1402, 1423 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrderKey = "1402,1423", statOrder = { 1402, 1423 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1204,1468", statOrder = { 1204, 1468 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1204,1468", statOrder = { 1204, 1468 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrderKey = "1204,1468", statOrder = { 1204, 1468 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrderKey = "1204", statOrder = { 1204 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrderKey = "1204", statOrder = { 1204 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrderKey = "1204", statOrder = { 1204 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1204,2280", statOrder = { 1204, 2280 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1204,2280", statOrder = { 1204, 2280 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1204,2280", statOrder = { 1204, 2280 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1213,1474", statOrder = { 1213, 1474 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1213,1474", statOrder = { 1213, 1474 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrderKey = "1213,1474", statOrder = { 1213, 1474 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrderKey = "1213", statOrder = { 1213 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrderKey = "1213", statOrder = { 1213 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrderKey = "1213", statOrder = { 1213 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1213,2281", statOrder = { 1213, 2281 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1213,2281", statOrder = { 1213, 2281 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1213,2281", statOrder = { 1213, 2281 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1224,1479", statOrder = { 1224, 1479 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1224,1479", statOrder = { 1224, 1479 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrderKey = "1224,1479", statOrder = { 1224, 1479 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrderKey = "1224", statOrder = { 1224 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrderKey = "1224", statOrder = { 1224 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrderKey = "1224", statOrder = { 1224 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1224,2282", statOrder = { 1224, 2282 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1224,2282", statOrder = { 1224, 2282 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1224,2282", statOrder = { 1224, 2282 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1232,1483", statOrder = { 1232, 1483 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1232,1483", statOrder = { 1232, 1483 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrderKey = "1232,1483", statOrder = { 1232, 1483 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrderKey = "1232", statOrder = { 1232 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrderKey = "1232", statOrder = { 1232 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrderKey = "1232", statOrder = { 1232 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1232,2284", statOrder = { 1232, 2284 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1232,2284", statOrder = { 1232, 2284 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1232,2284", statOrder = { 1232, 2284 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1080,1420", statOrder = { 1080, 1420 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1080,1420", statOrder = { 1080, 1420 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrderKey = "1080,1420", statOrder = { 1080, 1420 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrderKey = "1080", statOrder = { 1080 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrderKey = "1080", statOrder = { 1080 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrderKey = "1080", statOrder = { 1080 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1080,2108", statOrder = { 1080, 2108 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1080,2108", statOrder = { 1080, 2108 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrderKey = "1080,2108", statOrder = { 1080, 2108 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1308,2507", statOrder = { 1308, 2507 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1308,2507", statOrder = { 1308, 2507 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrderKey = "1308,2507", statOrder = { 1308, 2507 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrderKey = "1308,1333", statOrder = { 1308, 1333 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrderKey = "1308", statOrder = { 1308 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrderKey = "1308", statOrder = { 1308 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrderKey = "1308", statOrder = { 1308 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrderKey = "1259,1308", statOrder = { 1259, 1308 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrderKey = "1259,1308", statOrder = { 1259, 1308 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrderKey = "1259,1308", statOrder = { 1259, 1308 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1308,1860", statOrder = { 1308, 1860 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1308,1860", statOrder = { 1308, 1860 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrderKey = "1308,1860", statOrder = { 1308, 1860 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrderKey = "1259,9429", statOrder = { 1259, 9429 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrderKey = "1259", statOrder = { 1259 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1259,2820", statOrder = { 1259, 2820 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrderKey = "1259,2462", statOrder = { 1259, 2462 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrderKey = "1259,7185", statOrder = { 1259, 7185 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrderKey = "1259,1879", statOrder = { 1259, 1879 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrderKey = "1308,1879", statOrder = { 1308, 1879 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrderKey = "1860", statOrder = { 1860 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrderKey = "1860", statOrder = { 1860 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrderKey = "1860", statOrder = { 1860 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrderKey = "1035,1860", statOrder = { 1035, 1860 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrderKey = "1393,1860", statOrder = { 1393, 1860 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrderKey = "2507,9028", statOrder = { 2507, 9028 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrderKey = "9028", statOrder = { 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.3% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrderKey = "1336,9028", statOrder = { 1336, 9028 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrderKey = "2066,9028", statOrder = { 2066, 9028 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrderKey = "9427,9429", statOrder = { 9427, 9429 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrderKey = "9427", statOrder = { 9427 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrderKey = "1722,9427", statOrder = { 1722, 9427 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrderKey = "9086,9427", statOrder = { 9086, 9427 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrderKey = "1424,2066", statOrder = { 1424, 2066 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrderKey = "1424", statOrder = { 1424 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrderKey = "1424,9451", statOrder = { 1424, 9451 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrderKey = "1424,1724", statOrder = { 1424, 1724 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrderKey = "8313,8315", statOrder = { 8313, 8315 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrderKey = "8313", statOrder = { 8313 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrderKey = "8313,8334", statOrder = { 8313, 8334 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrderKey = "1982,8313", statOrder = { 1982, 8313 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrderKey = "8315,8362", statOrder = { 8315, 8362 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrderKey = "8315", statOrder = { 8315 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrderKey = "8315,8340", statOrder = { 8315, 8340 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrderKey = "1982,8310", statOrder = { 1982, 8310 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrderKey = "8310", statOrder = { 8310 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrderKey = "8310,8344", statOrder = { 8310, 8344 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrderKey = "8322,8347", statOrder = { 8322, 8347 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "1011,3090", statOrder = { 1011, 3090 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "1011,3090", statOrder = { 1011, 3090 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrderKey = "1011,3090", statOrder = { 1011, 3090 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "1011,2085", statOrder = { 1011, 2085 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "1011,2085", statOrder = { 1011, 2085 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrderKey = "1011,2085", statOrder = { 1011, 2085 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "1011,4646", statOrder = { 1011, 4646 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "1011,4646", statOrder = { 1011, 4646 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrderKey = "1011,4646", statOrder = { 1011, 4646 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrderKey = "1011,9451", statOrder = { 1011, 9451 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrderKey = "1011,9451", statOrder = { 1011, 9451 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2085,4956", statOrder = { 2085, 4956 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2085,4956", statOrder = { 2085, 4956 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrderKey = "2085,4956", statOrder = { 2085, 4956 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2085,4646", statOrder = { 2085, 4646 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2085,4646", statOrder = { 2085, 4646 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrderKey = "2085,4646", statOrder = { 2085, 4646 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrderKey = "2085", statOrder = { 2085 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrderKey = "2085", statOrder = { 2085 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrderKey = "2085", statOrder = { 2085 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrderKey = "1599,2085", statOrder = { 1599, 2085 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrderKey = "1599,2085", statOrder = { 1599, 2085 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrderKey = "1017,2085", statOrder = { 1017, 2085 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrderKey = "1017,2085", statOrder = { 1017, 2085 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1399,1414", statOrder = { 1399, 1414 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1399,1414", statOrder = { 1399, 1414 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrderKey = "1399,1414", statOrder = { 1399, 1414 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrderKey = "1399,2085", statOrder = { 1399, 2085 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrderKey = "1399", statOrder = { 1399 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrderKey = "1399", statOrder = { 1399 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrderKey = "1399", statOrder = { 1399 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "15% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1399,4082", statOrder = { 1399, 4082 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "20% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1399,4082", statOrder = { 1399, 4082 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "25% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrderKey = "1399,4082", statOrder = { 1399, 4082 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrderKey = "1130,1399", statOrder = { 1130, 1399 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrderKey = "1130,1399", statOrder = { 1130, 1399 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrderKey = "1130,1399", statOrder = { 1130, 1399 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrderKey = "1468,1474", statOrder = { 1468, 1474 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrderKey = "1474,1479", statOrder = { 1474, 1479 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrderKey = "1468,1479", statOrder = { 1468, 1479 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrderKey = "1462,1483", statOrder = { 1462, 1483 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrderKey = "1399,1462", statOrder = { 1399, 1462 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrderKey = "1399,1462", statOrder = { 1399, 1462 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrderKey = "1399,1462", statOrder = { 1399, 1462 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1462,2085", statOrder = { 1462, 2085 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1462,2085", statOrder = { 1462, 2085 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrderKey = "1462,2085", statOrder = { 1462, 2085 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrderKey = "1414,1483", statOrder = { 1414, 1483 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrderKey = "1414,1483", statOrder = { 1414, 1483 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrderKey = "1414,1483", statOrder = { 1414, 1483 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrderKey = "1466,1472", statOrder = { 1466, 1472 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrderKey = "1466,1472", statOrder = { 1466, 1472 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1466,1477", statOrder = { 1466, 1477 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1466,1477", statOrder = { 1466, 1477 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrderKey = "1466,1472", statOrder = { 1466, 1472 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrderKey = "1466,1472", statOrder = { 1466, 1472 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1472,1477", statOrder = { 1472, 1477 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrderKey = "1472,1477", statOrder = { 1472, 1477 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrderKey = "1472,1477", statOrder = { 1472, 1477 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrderKey = "1472,1477", statOrder = { 1472, 1477 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrderKey = "1466,1477", statOrder = { 1466, 1477 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrderKey = "1466,1477", statOrder = { 1466, 1477 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrderKey = "1482,1485", statOrder = { 1482, 1485 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrderKey = "1482,1485", statOrder = { 1482, 1485 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrderKey = "1482,1485", statOrder = { 1482, 1485 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrderKey = "1482,1485", statOrder = { 1482, 1485 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrderKey = "9590", statOrder = { 9590 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrderKey = "9613", statOrder = { 9613 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrderKey = "9566", statOrder = { 9566 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrderKey = "9592", statOrder = { 9592 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrderKey = "9575", statOrder = { 9575 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrderKey = "9604", statOrder = { 9604 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrderKey = "9593", statOrder = { 9593 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrderKey = "9561", statOrder = { 9561 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrderKey = "9581", statOrder = { 9581 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrderKey = "9607", statOrder = { 9607 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrderKey = "9576", statOrder = { 9576 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrderKey = "9564", statOrder = { 9564 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrderKey = "9574", statOrder = { 9574 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrderKey = "9563", statOrder = { 9563 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrderKey = "9571", statOrder = { 9571 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrderKey = "9562", statOrder = { 9562 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrderKey = "9598", statOrder = { 9598 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrderKey = "9582", statOrder = { 9582 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrderKey = "9567", statOrder = { 9567 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrderKey = "9591", statOrder = { 9591 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrderKey = "9605", statOrder = { 9605 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrderKey = "9585", statOrder = { 9585 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrderKey = "9583", statOrder = { 9583 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrderKey = "9587", statOrder = { 9587 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrderKey = "9580", statOrder = { 9580 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrderKey = "9608", statOrder = { 9608 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrderKey = "9588", statOrder = { 9588 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrderKey = "9602", statOrder = { 9602 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrderKey = "9573", statOrder = { 9573 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrderKey = "9614", statOrder = { 9614 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrderKey = "9609", statOrder = { 9609 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrderKey = "9610", statOrder = { 9610 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrderKey = "9569", statOrder = { 9569 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrderKey = "9595", statOrder = { 9595 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrderKey = "9594", statOrder = { 9594 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrderKey = "9586", statOrder = { 9586 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrderKey = "9606", statOrder = { 9606 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrderKey = "9599", statOrder = { 9599 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrderKey = "9578", statOrder = { 9578 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrderKey = "9589", statOrder = { 9589 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrderKey = "9597", statOrder = { 9597 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrderKey = "7342", statOrder = { 7342 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrderKey = "1259,7342", statOrder = { 1259, 7342 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrderKey = "1308,7342", statOrder = { 1308, 7342 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrderKey = "2085,7342", statOrder = { 2085, 7342 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrderKey = "7200", statOrder = { 7200 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrderKey = "7200", statOrder = { 7200 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrderKey = "7200", statOrder = { 7200 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrderKey = "1099,1468", statOrder = { 1099, 1468 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrderKey = "1099,1468", statOrder = { 1099, 1468 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrderKey = "1099,1468", statOrder = { 1099, 1468 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrderKey = "1099,1468", statOrder = { 1099, 1468 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrderKey = "1104,1474", statOrder = { 1104, 1474 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrderKey = "1104,1474", statOrder = { 1104, 1474 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrderKey = "1104,1474", statOrder = { 1104, 1474 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrderKey = "1104,1474", statOrder = { 1104, 1474 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrderKey = "1107,1483", statOrder = { 1107, 1483 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrderKey = "1107,1483", statOrder = { 1107, 1483 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrderKey = "1107,1483", statOrder = { 1107, 1483 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrderKey = "1107,1483", statOrder = { 1107, 1483 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrderKey = "1095,6472", statOrder = { 1095, 6472 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrderKey = "1095,6472", statOrder = { 1095, 6472 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrderKey = "1095,6472", statOrder = { 1095, 6472 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrderKey = "1095,6472", statOrder = { 1095, 6472 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrderKey = "1462,3577", statOrder = { 1462, 3577 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrderKey = "1462,3577", statOrder = { 1462, 3577 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrderKey = "1483,7143", statOrder = { 1483, 7143 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrderKey = "1483,7143", statOrder = { 1483, 7143 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1721,4420", statOrder = { 1721, 4420 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1721,4420", statOrder = { 1721, 4420 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1721,4420", statOrder = { 1721, 4420 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrderKey = "1721,4420", statOrder = { 1721, 4420 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrderKey = "1721,4032", statOrder = { 1721, 4032 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrderKey = "1721,4032", statOrder = { 1721, 4032 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrderKey = "1721,4032", statOrder = { 1721, 4032 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrderKey = "1721,4032", statOrder = { 1721, 4032 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrderKey = "1637,1832", statOrder = { 1637, 1832 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrderKey = "1637,1832", statOrder = { 1637, 1832 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrderKey = "1637,1832", statOrder = { 1637, 1832 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrderKey = "1637,1832", statOrder = { 1637, 1832 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrderKey = "1629,5007", statOrder = { 1629, 5007 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrderKey = "5007", statOrder = { 5007 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrderKey = "5007", statOrder = { 5007 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrderKey = "5007", statOrder = { 5007 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrderKey = "5007", statOrder = { 5007 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrderKey = "1631", statOrder = { 1631 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrderKey = "1631", statOrder = { 1631 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrderKey = "1631", statOrder = { 1631 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrderKey = "5151", statOrder = { 5151 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrderKey = "5151", statOrder = { 5151 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrderKey = "5151", statOrder = { 5151 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrderKey = "5151", statOrder = { 5151 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrderKey = "2431,8187", statOrder = { 2431, 8187 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrderKey = "2431,8187", statOrder = { 2431, 8187 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrderKey = "2431,8187", statOrder = { 2431, 8187 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrderKey = "2431,8187", statOrder = { 2431, 8187 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2431,6133", statOrder = { 2431, 6133 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2431,6133", statOrder = { 2431, 6133 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2431,6133", statOrder = { 2431, 6133 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrderKey = "2431,6133", statOrder = { 2431, 6133 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrderKey = "4262,5445", statOrder = { 4262, 5445 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrderKey = "4262,5445", statOrder = { 4262, 5445 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrderKey = "2576", statOrder = { 2576 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrderKey = "2576", statOrder = { 2576 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrderKey = "1994,7232", statOrder = { 1994, 7232 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrderKey = "1994,7232", statOrder = { 1994, 7232 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrderKey = "1994,7232", statOrder = { 1994, 7232 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrderKey = "1994,7232", statOrder = { 1994, 7232 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrderKey = "1995,7235", statOrder = { 1995, 7235 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrderKey = "1995,7235", statOrder = { 1995, 7235 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrderKey = "1995,7235", statOrder = { 1995, 7235 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrderKey = "1995,7235", statOrder = { 1995, 7235 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1564,1996", statOrder = { 1564, 1996 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1564,1996", statOrder = { 1564, 1996 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1564,1996", statOrder = { 1564, 1996 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrderKey = "1564,1996", statOrder = { 1564, 1996 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrderKey = "1573", statOrder = { 1573 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrderKey = "1573", statOrder = { 1573 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrderKey = "1575", statOrder = { 1575 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrderKey = "1575", statOrder = { 1575 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrderKey = "1576", statOrder = { 1576 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrderKey = "1576", statOrder = { 1576 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrderKey = "1580,1587", statOrder = { 1580, 1587 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrderKey = "1580,1587", statOrder = { 1580, 1587 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrderKey = "1580,1587", statOrder = { 1580, 1587 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrderKey = "1580,1587", statOrder = { 1580, 1587 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1639,4194", statOrder = { 1639, 4194 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1639,4194", statOrder = { 1639, 4194 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1639,4194", statOrder = { 1639, 4194 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrderKey = "1639,4194", statOrder = { 1639, 4194 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1639,9523", statOrder = { 1639, 9523 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1639,9523", statOrder = { 1639, 9523 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1639,9523", statOrder = { 1639, 9523 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrderKey = "1639,9523", statOrder = { 1639, 9523 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3112,6101", statOrder = { 3112, 6101 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3112,6101", statOrder = { 3112, 6101 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3112,6101", statOrder = { 3112, 6101 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "3112,6101", statOrder = { 3112, 6101 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrderKey = "3112,4909", statOrder = { 3112, 4909 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrderKey = "3112,4909", statOrder = { 3112, 4909 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrderKey = "3112,4909", statOrder = { 3112, 4909 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrderKey = "3112,4909", statOrder = { 3112, 4909 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrderKey = "3114,4909", statOrder = { 3114, 4909 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrderKey = "3114,4909", statOrder = { 3114, 4909 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrderKey = "3114,4909", statOrder = { 3114, 4909 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrderKey = "3114,4909", statOrder = { 3114, 4909 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3114,3203", statOrder = { 3114, 3203 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3114,3203", statOrder = { 3114, 3203 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3114,3203", statOrder = { 3114, 3203 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "3114,3203", statOrder = { 3114, 3203 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3201,4909", statOrder = { 3201, 4909 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3201,4909", statOrder = { 3201, 4909 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3201,4909", statOrder = { 3201, 4909 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3201,4909", statOrder = { 3201, 4909 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3285,4909", statOrder = { 3285, 4909 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrderKey = "3285,4909", statOrder = { 3285, 4909 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3285,4909", statOrder = { 3285, 4909 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrderKey = "3285,4909", statOrder = { 3285, 4909 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrderKey = "2330,2600", statOrder = { 2330, 2600 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrderKey = "2330,2600", statOrder = { 2330, 2600 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrderKey = "1361,3383", statOrder = { 1361, 3383 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrderKey = "1361,3383", statOrder = { 1361, 3383 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrderKey = "1361,3383", statOrder = { 1361, 3383 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrderKey = "1361,3383", statOrder = { 1361, 3383 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrderKey = "2100,5152", statOrder = { 2100, 5152 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrderKey = "2100,5152", statOrder = { 2100, 5152 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrderKey = "2100,5152", statOrder = { 2100, 5152 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrderKey = "2100,5152", statOrder = { 2100, 5152 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrderKey = "1736,4654", statOrder = { 1736, 4654 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2573,3214", statOrder = { 2573, 3214 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2573,3214", statOrder = { 2573, 3214 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2573,3214", statOrder = { 2573, 3214 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2573,3214", statOrder = { 2573, 3214 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrderKey = "2020,2573", statOrder = { 2020, 2573 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrderKey = "2020,2573", statOrder = { 2020, 2573 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrderKey = "2020,2573", statOrder = { 2020, 2573 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrderKey = "2020,2573", statOrder = { 2020, 2573 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrderKey = "2429,9455", statOrder = { 2429, 9455 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrderKey = "2429,9455", statOrder = { 2429, 9455 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrderKey = "2429,9455", statOrder = { 2429, 9455 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrderKey = "2429,9455", statOrder = { 2429, 9455 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrderKey = "2007,2429", statOrder = { 2007, 2429 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrderKey = "2007,2429", statOrder = { 2007, 2429 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrderKey = "2007,2429", statOrder = { 2007, 2429 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrderKey = "2007,2429", statOrder = { 2007, 2429 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrderKey = "2061,6447", statOrder = { 2061, 6447 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrderKey = "2061,6447", statOrder = { 2061, 6447 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrderKey = "2061,6447", statOrder = { 2061, 6447 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrderKey = "2061,6447", statOrder = { 2061, 6447 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrderKey = "8735", statOrder = { 8735 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrderKey = "8735", statOrder = { 8735 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrderKey = "7417,8270", statOrder = { 7417, 8270 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrderKey = "7417,8270", statOrder = { 7417, 8270 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrderKey = "7417,8270", statOrder = { 7417, 8270 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrderKey = "7417,8270", statOrder = { 7417, 8270 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrderKey = "8266,8268", statOrder = { 8266, 8268 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrderKey = "8266,8268", statOrder = { 8266, 8268 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrderKey = "8266,8268", statOrder = { 8266, 8268 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrderKey = "8266,8268", statOrder = { 8266, 8268 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrderKey = "1764,1766", statOrder = { 1764, 1766 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrderKey = "1764,1766", statOrder = { 1764, 1766 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrderKey = "1764,1766", statOrder = { 1764, 1766 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrderKey = "1764,1766", statOrder = { 1764, 1766 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrderKey = "9288,9452", statOrder = { 9288, 9452 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrderKey = "9288,9452", statOrder = { 9288, 9452 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrderKey = "4900,8952", statOrder = { 4900, 8952 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrderKey = "4900,8952", statOrder = { 4900, 8952 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrderKey = "4900,8952", statOrder = { 4900, 8952 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrderKey = "4900,8952", statOrder = { 4900, 8952 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrderKey = "8953,8957", statOrder = { 8953, 8957 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrderKey = "8953,8957", statOrder = { 8953, 8957 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrderKey = "8953,8957", statOrder = { 8953, 8957 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrderKey = "8953,8957", statOrder = { 8953, 8957 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that would Summon a Totem have 25% chance to Summon two Totems instead", statOrderKey = "2411,5194", statOrder = { 2411, 5194 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that would Summon a Totem have 40% chance to Summon two Totems instead", statOrderKey = "2411,5194", statOrder = { 2411, 5194 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that would Summon a Totem have 50% chance to Summon two Totems instead", statOrderKey = "2411,5194", statOrder = { 2411, 5194 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that would Summon a Totem have 70% chance to Summon two Totems instead", statOrderKey = "2411,5194", statOrder = { 2411, 5194 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrderKey = "1615,9276", statOrder = { 1615, 9276 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrderKey = "1615,9276", statOrder = { 1615, 9276 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrderKey = "1615,9276", statOrder = { 1615, 9276 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrderKey = "1615,9276", statOrder = { 1615, 9276 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrderKey = "1487,9322", statOrder = { 1487, 9322 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrderKey = "8933,9342", statOrder = { 8933, 9342 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrderKey = "9415,9422", statOrder = { 9415, 9422 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrderKey = "9415,9422", statOrder = { 9415, 9422 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrderKey = "9415,9422", statOrder = { 9415, 9422 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrderKey = "9415,9422", statOrder = { 9415, 9422 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrderKey = "1041,5517", statOrder = { 1041, 5517 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrderKey = "1041,5517", statOrder = { 1041, 5517 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrderKey = "1041,5517", statOrder = { 1041, 5517 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrderKey = "1041,5517", statOrder = { 1041, 5517 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1863,2393", statOrder = { 1863, 2393 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1863,2393", statOrder = { 1863, 2393 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1863,2393", statOrder = { 1863, 2393 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrderKey = "1863,2393", statOrder = { 1863, 2393 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1866,2395", statOrder = { 1866, 2395 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1866,2395", statOrder = { 1866, 2395 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1866,2395", statOrder = { 1866, 2395 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrderKey = "1866,2395", statOrder = { 1866, 2395 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1870,2396", statOrder = { 1870, 2396 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1870,2396", statOrder = { 1870, 2396 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1870,2396", statOrder = { 1870, 2396 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrderKey = "1870,2396", statOrder = { 1870, 2396 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrderKey = "4672,6576", statOrder = { 4672, 6576 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrderKey = "4671,6575", statOrder = { 4671, 6575 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrderKey = "4673,6577", statOrder = { 4673, 6577 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrderKey = "6567,6578", statOrder = { 6567, 6578 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4210,6579", statOrder = { 4210, 6579 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4210,6579", statOrder = { 4210, 6579 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4210,6579", statOrder = { 4210, 6579 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrderKey = "4210,6579", statOrder = { 4210, 6579 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrderKey = "2806,6472", statOrder = { 2806, 6472 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrderKey = "2806,6472", statOrder = { 2806, 6472 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrderKey = "2806,6472", statOrder = { 2806, 6472 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrderKey = "2806,6472", statOrder = { 2806, 6472 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrderKey = "1704,3987", statOrder = { 1704, 3987 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrderKey = "1704,3987", statOrder = { 1704, 3987 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrderKey = "1704,3987", statOrder = { 1704, 3987 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrderKey = "1704,3987", statOrder = { 1704, 3987 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrderKey = "1699,1715", statOrder = { 1699, 1715 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrderKey = "1699,1715", statOrder = { 1699, 1715 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrderKey = "1699,1715", statOrder = { 1699, 1715 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrderKey = "1699,1715", statOrder = { 1699, 1715 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrderKey = "1700,1716", statOrder = { 1700, 1716 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrderKey = "1700,1716", statOrder = { 1700, 1716 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrderKey = "1700,1716", statOrder = { 1700, 1716 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrderKey = "1700,1716", statOrder = { 1700, 1716 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrderKey = "4645,8886", statOrder = { 4645, 8886 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrderKey = "4645,8886", statOrder = { 4645, 8886 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrderKey = "4645,8886", statOrder = { 4645, 8886 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrderKey = "4645,8886", statOrder = { 4645, 8886 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrderKey = "2992,8894", statOrder = { 2992, 8894 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrderKey = "2992,8894", statOrder = { 2992, 8894 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrderKey = "2992,8894", statOrder = { 2992, 8894 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrderKey = "2992,8894", statOrder = { 2992, 8894 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrderKey = "1487,5236", statOrder = { 1487, 5236 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrderKey = "1487,5236", statOrder = { 1487, 5236 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrderKey = "1487,5236", statOrder = { 1487, 5236 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrderKey = "1487,5236", statOrder = { 1487, 5236 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrderKey = "8922,8933", statOrder = { 8922, 8933 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrderKey = "8922,8933", statOrder = { 8922, 8933 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrderKey = "8922,8933", statOrder = { 8922, 8933 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrderKey = "8922,8933", statOrder = { 8922, 8933 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrderKey = "6545,8777", statOrder = { 6545, 8777 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrderKey = "6545,8777", statOrder = { 6545, 8777 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrderKey = "6545,8777", statOrder = { 6545, 8777 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrderKey = "6545,8777", statOrder = { 6545, 8777 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrderKey = "930", statOrder = { 930 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrderKey = "930", statOrder = { 930 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "1028,1851", statOrder = { 1028, 1851 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "1028,1851", statOrder = { 1028, 1851 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "1028,1851", statOrder = { 1028, 1851 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrderKey = "1028,1851", statOrder = { 1028, 1851 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "1029,1852", statOrder = { 1029, 1852 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "1029,1852", statOrder = { 1029, 1852 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "1029,1852", statOrder = { 1029, 1852 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrderKey = "1029,1852", statOrder = { 1029, 1852 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "1027,1853", statOrder = { 1027, 1853 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "1027,1853", statOrder = { 1027, 1853 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "1027,1853", statOrder = { 1027, 1853 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrderKey = "1027,1853", statOrder = { 1027, 1853 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrderKey = "1035,1036", statOrder = { 1035, 1036 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrderKey = "1035,1036", statOrder = { 1035, 1036 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrderKey = "1035,1036", statOrder = { 1035, 1036 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrderKey = "1035,1036", statOrder = { 1035, 1036 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrderKey = "1034,1035", statOrder = { 1034, 1035 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrderKey = "1034,1035", statOrder = { 1034, 1035 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrderKey = "1034,1035", statOrder = { 1034, 1035 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrderKey = "1034,1035", statOrder = { 1034, 1035 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrderKey = "1034,1036", statOrder = { 1034, 1036 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrderKey = "1034,1036", statOrder = { 1034, 1036 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrderKey = "1034,1036", statOrder = { 1034, 1036 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrderKey = "1034,1036", statOrder = { 1034, 1036 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrderKey = "8418", statOrder = { 8418 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrderKey = "8418", statOrder = { 8418 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrderKey = "8418", statOrder = { 8418 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrderKey = "8418", statOrder = { 8418 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrderKey = "4414", statOrder = { 4414 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrderKey = "4414", statOrder = { 4414 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrderKey = "4414", statOrder = { 4414 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrderKey = "4414", statOrder = { 4414 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrderKey = "5692", statOrder = { 5692 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrderKey = "5692", statOrder = { 5692 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrderKey = "5692", statOrder = { 5692 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrderKey = "5692", statOrder = { 5692 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["WeaponTreeModEffectMinion1"] = { type = "Spawn", tier = 1, "10% increased Explicit Minion Modifier magnitudes", statOrderKey = "38", statOrder = { 38 }, level = 1, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["WeaponTreeModEffectMinion2"] = { type = "Spawn", tier = 2, "15% increased Explicit Minion Modifier magnitudes", statOrderKey = "38", statOrder = { 38 }, level = 65, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["WeaponTreeModEffectElementalDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Elemental Damage Modifier magnitudes", statOrderKey = "37", statOrder = { 37 }, level = 1, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, @@ -1765,732 +1765,732 @@ return { ["WeaponTreeModEffectResistance2"] = { type = "Spawn", tier = 2, "15% increased Explicit Resistance Modifier magnitudes", statOrderKey = "35", statOrder = { 35 }, level = 65, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["WeaponTreeModEffectAttributes1"] = { type = "Spawn", tier = 1, "10% increased Explicit Attribute Modifier magnitudes", statOrderKey = "23", statOrder = { 23 }, level = 1, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, ["WeaponTreeModEffectAttributes2"] = { type = "Spawn", tier = 2, "15% increased Explicit Attribute Modifier magnitudes", statOrderKey = "23", statOrder = { 23 }, level = 65, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2807", statOrder = { 2807 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2773", statOrder = { 2773 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2807,3385", statOrder = { 2807, 3385 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrderKey = "1929,2416", statOrder = { 1929, 2416 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrderKey = "1944,2418", statOrder = { 1944, 2418 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrderKey = "1927,2414", statOrder = { 1927, 2414 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrderKey = "1610,1614,1619", statOrder = { 1610, 1614, 1619 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrderKey = "1610,1614,1619", statOrder = { 1610, 1614, 1619 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrderKey = "1609,1615,1619", statOrder = { 1609, 1615, 1619 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrderKey = "1609,1615,1619", statOrder = { 1609, 1615, 1619 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1609,1614,1620", statOrder = { 1609, 1614, 1620 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1609,1614,1620", statOrder = { 1609, 1614, 1620 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrderKey = "8040,8141", statOrder = { 8040, 8141 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrderKey = "8040,8141", statOrder = { 8040, 8141 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1610,1615,1620", statOrder = { 1610, 1615, 1620 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrderKey = "1608,1615", statOrder = { 1608, 1615 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrderKey = "1608,1615", statOrder = { 1608, 1615 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrderKey = "1620,5278", statOrder = { 1620, 5278 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrderKey = "1620,5278", statOrder = { 1620, 5278 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrderKey = "1610,4369", statOrder = { 1610, 4369 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrderKey = "1610,4369", statOrder = { 1610, 4369 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrderKey = "5457,8040", statOrder = { 5457, 8040 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrderKey = "5457,8040", statOrder = { 5457, 8040 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrderKey = "9370", statOrder = { 9370 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6353,6356", statOrder = { 6353, 6356 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrderKey = "3798,6357", statOrder = { 3798, 6357 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrderKey = "3799,6361", statOrder = { 3799, 6361 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6365,6369", statOrder = { 6365, 6369 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrderKey = "3800,6371", statOrder = { 3800, 6371 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3133,3194", statOrder = { 3133, 3194 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3138,3810", statOrder = { 3138, 3810 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3143,3802", statOrder = { 3143, 3802 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3144,3804", statOrder = { 3144, 3804 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3144,3804", statOrder = { 3144, 3804 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3144,3804", statOrder = { 3144, 3804 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3145,3805", statOrder = { 3145, 3805 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3145,3805", statOrder = { 3145, 3805 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3145,3805", statOrder = { 3145, 3805 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3140,3811", statOrder = { 3140, 3811 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3140,3811", statOrder = { 3140, 3811 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3140,3811", statOrder = { 3140, 3811 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9350,9353", statOrder = { 9350, 9353 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8492,8498", statOrder = { 8492, 8498 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3135,3807", statOrder = { 3135, 3807 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3135,3807", statOrder = { 3135, 3807 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3135,3807", statOrder = { 3135, 3807 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3136,3803", statOrder = { 3136, 3803 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3136,3803", statOrder = { 3136, 3803 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3136,3803", statOrder = { 3136, 3803 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3137,3808", statOrder = { 3137, 3808 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3137,3808", statOrder = { 3137, 3808 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3137,3808", statOrder = { 3137, 3808 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3134,3806", statOrder = { 3134, 3806 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3134,3806", statOrder = { 3134, 3806 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3134,3806", statOrder = { 3134, 3806 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5542,5543", statOrder = { 5542, 5543 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3141,3812", statOrder = { 3141, 3812 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3142,8489", statOrder = { 3142, 8489 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3139,4570", statOrder = { 3139, 4570 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrderKey = "960,962", statOrder = { 960, 962 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrderKey = "960,962", statOrder = { 960, 962 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrderKey = "960,962", statOrder = { 960, 962 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrderKey = "960,962", statOrder = { 960, 962 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrderKey = "962,8893", statOrder = { 962, 8893 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrderKey = "962,8893", statOrder = { 962, 8893 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrderKey = "8602", statOrder = { 8602 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrderKey = "8602", statOrder = { 8602 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrderKey = "1567", statOrder = { 1567 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrderKey = "1567", statOrder = { 1567 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrderKey = "1566", statOrder = { 1566 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrderKey = "1566", statOrder = { 1566 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrderKey = "1565", statOrder = { 1565 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrderKey = "1565", statOrder = { 1565 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "5179", statOrder = { 5179 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrderKey = "5179", statOrder = { 5179 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "8734", statOrder = { 8734 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrderKey = "8734", statOrder = { 8734 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrderKey = "5133", statOrder = { 5133 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrderKey = "5133", statOrder = { 5133 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrderKey = "5128", statOrder = { 5128 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrderKey = "5128", statOrder = { 5128 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrderKey = "5132", statOrder = { 5132 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrderKey = "5132", statOrder = { 5132 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1790,4587", statOrder = { 1790, 4587 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1790,4587", statOrder = { 1790, 4587 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1791,4587", statOrder = { 1791, 4587 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1791,4587", statOrder = { 1791, 4587 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrderKey = "1652,2731", statOrder = { 1652, 2731 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrderKey = "1652,2731", statOrder = { 1652, 2731 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrderKey = "1651,2730", statOrder = { 1651, 2730 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrderKey = "1651,2730", statOrder = { 1651, 2730 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrderKey = "1654,2729", statOrder = { 1654, 2729 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrderKey = "1654,2729", statOrder = { 1654, 2729 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrderKey = "3147,3983", statOrder = { 3147, 3983 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrderKey = "3147,3983", statOrder = { 3147, 3983 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrderKey = "1655,8702", statOrder = { 1655, 8702 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrderKey = "1655,8702", statOrder = { 1655, 8702 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrderKey = "4883,5855", statOrder = { 4883, 5855 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrderKey = "5066,6459", statOrder = { 5066, 6459 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrderKey = "1031,1972", statOrder = { 1031, 1972 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrderKey = "1031,1972", statOrder = { 1031, 1972 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrderKey = "1031,1972", statOrder = { 1031, 1972 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrderKey = "1031,1972", statOrder = { 1031, 1972 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrderKey = "3050,3941", statOrder = { 3050, 3941 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrderKey = "3050,3941", statOrder = { 3050, 3941 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrderKey = "1706,3050", statOrder = { 1706, 3050 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrderKey = "1706,3050", statOrder = { 1706, 3050 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrderKey = "1321,2906", statOrder = { 1321, 2906 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrderKey = "1321,2906", statOrder = { 1321, 2906 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrderKey = "1321,2906", statOrder = { 1321, 2906 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrderKey = "1321,2906", statOrder = { 1321, 2906 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrderKey = "2492,2493", statOrder = { 2492, 2493 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrderKey = "2492,2493", statOrder = { 2492, 2493 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrderKey = "2496", statOrder = { 2496 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrderKey = "2496", statOrder = { 2496 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrderKey = "1379,1386", statOrder = { 1379, 1386 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrderKey = "1379,1386", statOrder = { 1379, 1386 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrderKey = "1368,1376", statOrder = { 1368, 1376 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrderKey = "1368,1376", statOrder = { 1368, 1376 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrderKey = "1388,1394", statOrder = { 1388, 1394 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrderKey = "1388,1394", statOrder = { 1388, 1394 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrderKey = "1749", statOrder = { 1749 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrderKey = "1749", statOrder = { 1749 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrderKey = "1607", statOrder = { 1607 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrderKey = "1607", statOrder = { 1607 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrderKey = "2255,4635", statOrder = { 2255, 4635 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrderKey = "2255,4635", statOrder = { 2255, 4635 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrderKey = "2255,4635", statOrder = { 2255, 4635 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrderKey = "2255,4635", statOrder = { 2255, 4635 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrderKey = "5712,6050", statOrder = { 5712, 6050 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrderKey = "5712,6050", statOrder = { 5712, 6050 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrderKey = "1976,5506", statOrder = { 1976, 5506 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrderKey = "1976,5506", statOrder = { 1976, 5506 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrderKey = "3328,5256", statOrder = { 3328, 5256 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrderKey = "5255,5256", statOrder = { 5255, 5256 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrderKey = "5255,5256", statOrder = { 5255, 5256 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrderKey = "6176,6177", statOrder = { 6176, 6177 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrderKey = "6176,6177", statOrder = { 6176, 6177 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrderKey = "5532", statOrder = { 5532 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrderKey = "5532", statOrder = { 5532 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrderKey = "4544", statOrder = { 4544 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrderKey = "4544", statOrder = { 4544 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Your Counterattacks have 30% reduced Cooldown Recovery Rate", "Your Counterattacks deal 45% more Damage", statOrderKey = "5290,9239", statOrder = { 5290, 9239 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Your Counterattacks have 30% reduced Cooldown Recovery Rate", "Your Counterattacks deal 60% more Damage", statOrderKey = "5290,9239", statOrder = { 5290, 9239 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrderKey = "2064,4617", statOrder = { 2064, 4617 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrderKey = "2064,4617", statOrder = { 2064, 4617 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrderKey = "5548,8054", statOrder = { 5548, 8054 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrderKey = "4618,8165", statOrder = { 4618, 8165 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrderKey = "1777,2805", statOrder = { 1777, 2805 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrderKey = "1777,2805", statOrder = { 1777, 2805 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrderKey = "1777,2805", statOrder = { 1777, 2805 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrderKey = "1777,2805", statOrder = { 1777, 2805 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrderKey = "2696,2697", statOrder = { 2696, 2697 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrderKey = "2689", statOrder = { 2689 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrderKey = "2689", statOrder = { 2689 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrderKey = "2689", statOrder = { 2689 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrderKey = "2689", statOrder = { 2689 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrderKey = "8178", statOrder = { 8178 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrderKey = "8178", statOrder = { 8178 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrderKey = "8178", statOrder = { 8178 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrderKey = "8178", statOrder = { 8178 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrderKey = "8178,8204", statOrder = { 8178, 8204 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrderKey = "8178,8204", statOrder = { 8178, 8204 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrderKey = "8178,8204", statOrder = { 8178, 8204 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrderKey = "8178,8204", statOrder = { 8178, 8204 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrderKey = "1571,1572", statOrder = { 1571, 1572 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2696,8191", statOrder = { 2696, 8191 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2696,8191", statOrder = { 2696, 8191 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2696,8191", statOrder = { 2696, 8191 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2696,8191", statOrder = { 2696, 8191 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrderKey = "8190", statOrder = { 8190 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrderKey = "8190", statOrder = { 8190 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrderKey = "8155", statOrder = { 8155 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrderKey = "8155", statOrder = { 8155 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrderKey = "8155", statOrder = { 8155 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrderKey = "8155", statOrder = { 8155 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8205", statOrder = { 8205 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8205", statOrder = { 8205 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8205", statOrder = { 8205 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8205", statOrder = { 8205 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrderKey = "1575", statOrder = { 1575 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrderKey = "1575", statOrder = { 1575 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrderKey = "1575", statOrder = { 1575 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrderKey = "1575", statOrder = { 1575 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrderKey = "8199", statOrder = { 8199 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrderKey = "8199", statOrder = { 8199 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrderKey = "8199", statOrder = { 8199 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrderKey = "8199", statOrder = { 8199 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrderKey = "2281,8702", statOrder = { 2281, 8702 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrderKey = "2281,8702", statOrder = { 2281, 8702 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrderKey = "2281,8702", statOrder = { 2281, 8702 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrderKey = "2281,8702", statOrder = { 2281, 8702 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrderKey = "2950,8709", statOrder = { 2950, 8709 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrderKey = "2950,8709", statOrder = { 2950, 8709 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrderKey = "2950,8709", statOrder = { 2950, 8709 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrderKey = "2950,8709", statOrder = { 2950, 8709 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrderKey = "1681,8162", statOrder = { 1681, 8162 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrderKey = "1681,8162", statOrder = { 1681, 8162 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrderKey = "1681,8162", statOrder = { 1681, 8162 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrderKey = "1681,8162", statOrder = { 1681, 8162 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrderKey = "1680,8159", statOrder = { 1680, 8159 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrderKey = "1680,8159", statOrder = { 1680, 8159 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrderKey = "1680,8159", statOrder = { 1680, 8159 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrderKey = "1680,8159", statOrder = { 1680, 8159 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrderKey = "1679,8164", statOrder = { 1679, 8164 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrderKey = "1679,8164", statOrder = { 1679, 8164 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrderKey = "1679,8164", statOrder = { 1679, 8164 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrderKey = "1679,8164", statOrder = { 1679, 8164 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrderKey = "6689,6696", statOrder = { 6689, 6696 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrderKey = "6689,6696", statOrder = { 6689, 6696 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrderKey = "6689,6696", statOrder = { 6689, 6696 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrderKey = "6689,6696", statOrder = { 6689, 6696 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrderKey = "6689,6707", statOrder = { 6689, 6707 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrderKey = "6689,6707", statOrder = { 6689, 6707 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrderKey = "3645,3791", statOrder = { 3645, 3791 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrderKey = "3645,3791", statOrder = { 3645, 3791 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrderKey = "3645,3791", statOrder = { 3645, 3791 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrderKey = "3645,3791", statOrder = { 3645, 3791 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrderKey = "3830,8359", statOrder = { 3830, 8359 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1575,3158", statOrder = { 1575, 3158 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1575,3158", statOrder = { 1575, 3158 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1575,3158", statOrder = { 1575, 3158 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1575,3158", statOrder = { 1575, 3158 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2697,3156", statOrder = { 2697, 3156 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2697,3156", statOrder = { 2697, 3156 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2697,3156", statOrder = { 2697, 3156 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2697,3156", statOrder = { 2697, 3156 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrderKey = "2687,2688", statOrder = { 2687, 2688 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrderKey = "1572,2840", statOrder = { 1572, 2840 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrderKey = "1572,2840", statOrder = { 1572, 2840 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrderKey = "1572,2840", statOrder = { 1572, 2840 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrderKey = "1572,2840", statOrder = { 1572, 2840 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrderKey = "3463,6158", statOrder = { 3463, 6158 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrderKey = "3463,6158", statOrder = { 3463, 6158 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrderKey = "3463,6158", statOrder = { 3463, 6158 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrderKey = "3463,6158", statOrder = { 3463, 6158 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrderKey = "401", statOrder = { 401 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrderKey = "401", statOrder = { 401 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrderKey = "374", statOrder = { 374 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrderKey = "374", statOrder = { 374 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrderKey = "358", statOrder = { 358 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrderKey = "358", statOrder = { 358 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrderKey = "380", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrderKey = "380", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrderKey = "407", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrderKey = "407", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrderKey = "377", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrderKey = "377", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "369", statOrder = { 369 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "369", statOrder = { 369 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "376", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "376", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrderKey = "373", statOrder = { 373 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrderKey = "373", statOrder = { 373 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrderKey = "188", statOrder = { 188 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrderKey = "188", statOrder = { 188 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrderKey = "390", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrderKey = "390", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrderKey = "391", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrderKey = "391", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrderKey = "395", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrderKey = "395", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrderKey = "392", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrderKey = "392", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrderKey = "368", statOrder = { 368 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrderKey = "368", statOrder = { 368 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrderKey = "404", statOrder = { 404 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrderKey = "404", statOrder = { 404 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrderKey = "389", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrderKey = "389", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "388", statOrder = { 388 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "388", statOrder = { 388 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrderKey = "387", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrderKey = "387", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrderKey = "249", statOrder = { 249 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrderKey = "249", statOrder = { 249 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrderKey = "203", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrderKey = "203", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrderKey = "250", statOrder = { 250 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrderKey = "250", statOrder = { 250 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrderKey = "208", statOrder = { 208 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrderKey = "208", statOrder = { 208 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrderKey = "270", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrderKey = "270", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrderKey = "247", statOrder = { 247 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrderKey = "247", statOrder = { 247 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrderKey = "201", statOrder = { 201 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrderKey = "201", statOrder = { 201 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrderKey = "295", statOrder = { 295 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrderKey = "295", statOrder = { 295 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrderKey = "219", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrderKey = "219", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrderKey = "288", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrderKey = "288", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrderKey = "280", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrderKey = "280", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrderKey = "221", statOrder = { 221 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrderKey = "221", statOrder = { 221 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrderKey = "222", statOrder = { 222 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrderKey = "222", statOrder = { 222 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrderKey = "268", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrderKey = "268", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrderKey = "299", statOrder = { 299 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrderKey = "299", statOrder = { 299 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrderKey = "238", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrderKey = "238", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrderKey = "202", statOrder = { 202 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrderKey = "202", statOrder = { 202 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrderKey = "213", statOrder = { 213 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrderKey = "213", statOrder = { 213 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrderKey = "254", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrderKey = "254", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrderKey = "264", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrderKey = "264", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrderKey = "189", statOrder = { 189 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrderKey = "189", statOrder = { 189 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrderKey = "276", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrderKey = "276", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrderKey = "396", statOrder = { 396 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrderKey = "396", statOrder = { 396 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrderKey = "384", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrderKey = "384", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "385", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "385", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrderKey = "364", statOrder = { 364 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrderKey = "364", statOrder = { 364 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrderKey = "266", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrderKey = "266", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrderKey = "290", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrderKey = "290", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrderKey = "293", statOrder = { 293 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrderKey = "293", statOrder = { 293 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrderKey = "296", statOrder = { 296 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrderKey = "296", statOrder = { 296 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrderKey = "307", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrderKey = "307", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrderKey = "220", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrderKey = "220", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrderKey = "291", statOrder = { 291 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrderKey = "291", statOrder = { 291 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrderKey = "240", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrderKey = "240", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrderKey = "275", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrderKey = "275", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrderKey = "287", statOrder = { 287 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrderKey = "287", statOrder = { 287 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrderKey = "224", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrderKey = "224", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrderKey = "212", statOrder = { 212 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrderKey = "212", statOrder = { 212 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrderKey = "245", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrderKey = "245", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrderKey = "297", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrderKey = "297", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrderKey = "286", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrderKey = "286", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrderKey = "304", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrderKey = "304", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrderKey = "298", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrderKey = "298", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrderKey = "241", statOrder = { 241 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrderKey = "241", statOrder = { 241 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrderKey = "251", statOrder = { 251 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrderKey = "251", statOrder = { 251 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrderKey = "193", statOrder = { 193 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrderKey = "193", statOrder = { 193 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrderKey = "191", statOrder = { 191 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrderKey = "191", statOrder = { 191 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrderKey = "223", statOrder = { 223 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrderKey = "223", statOrder = { 223 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrderKey = "265", statOrder = { 265 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrderKey = "265", statOrder = { 265 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrderKey = "210", statOrder = { 210 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrderKey = "210", statOrder = { 210 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrderKey = "237", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrderKey = "237", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrderKey = "269", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrderKey = "269", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrderKey = "4943", statOrder = { 4943 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrderKey = "4924,4930", statOrder = { 4924, 4930 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrderKey = "4942", statOrder = { 4942 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrderKey = "4925", statOrder = { 4925 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrderKey = "4929", statOrder = { 4929 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrderKey = "4941", statOrder = { 4941 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrderKey = "4927", statOrder = { 4927 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrderKey = "4926", statOrder = { 4926 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrderKey = "4923", statOrder = { 4923 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrderKey = "4859", statOrder = { 4859 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrderKey = "4673,4674", statOrder = { 4673, 4674 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrderKey = "4060,8755,8760", statOrder = { 4060, 8755, 8760 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrderKey = "6643,6644", statOrder = { 6643, 6644 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrderKey = "6130", statOrder = { 6130 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrderKey = "5689,8305", statOrder = { 5689, 8305 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrderKey = "4575", statOrder = { 4575 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrderKey = "4575", statOrder = { 4575 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrderKey = "8575,9095", statOrder = { 8575, 9095 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrderKey = "4946", statOrder = { 4946 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrderKey = "8528", statOrder = { 8528 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrderKey = "6674,6675", statOrder = { 6674, 6675 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrderKey = "6674,6675", statOrder = { 6674, 6675 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrderKey = "9192", statOrder = { 9192 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrderKey = "9192", statOrder = { 9192 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrderKey = "5629", statOrder = { 5629 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrderKey = "9189", statOrder = { 9189 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrderKey = "9189", statOrder = { 9189 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrderKey = "8808", statOrder = { 8808 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrderKey = "9191", statOrder = { 9191 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrderKey = "5633", statOrder = { 5633 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrderKey = "5633", statOrder = { 5633 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrderKey = "6420", statOrder = { 6420 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrderKey = "5653", statOrder = { 5653 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrderKey = "6172", statOrder = { 6172 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrderKey = "6172", statOrder = { 6172 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrderKey = "9054", statOrder = { 9054 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrderKey = "9053", statOrder = { 9053 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrderKey = "4669", statOrder = { 4669 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrderKey = "8726,8727,8728", statOrder = { 8726, 8727, 8728 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrderKey = "8726,8727,8728", statOrder = { 8726, 8727, 8728 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Sweep", "Knock Enemies Back on hit with Cyclone and Sweep", statOrderKey = "5408,5409", statOrder = { 5408, 5409 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrderKey = "5204,5205", statOrder = { 5204, 5205 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrderKey = "5963,7073", statOrder = { 5963, 7073 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrderKey = "5963,7073", statOrder = { 5963, 7073 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrderKey = "8611", statOrder = { 8611 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrderKey = "8611", statOrder = { 8611 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrderKey = "8834,8834.1", statOrder = { 8834, 8834.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrderKey = "8834,8834.1", statOrder = { 8834, 8834.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrderKey = "4950", statOrder = { 4950 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrderKey = "5267,5268", statOrder = { 5267, 5268 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrderKey = "6004,6008,6137", statOrder = { 6004, 6008, 6137 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrderKey = "4310", statOrder = { 4310 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrderKey = "4310", statOrder = { 4310 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrderKey = "6531,6532", statOrder = { 6531, 6532 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, - ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrderKey = "5859,5861,8591", statOrder = { 5859, 5861, 8591 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrderKey = "5921", statOrder = { 5921 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrderKey = "5921", statOrder = { 5921 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrderKey = "5813", statOrder = { 5813 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrderKey = "5813", statOrder = { 5813 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrderKey = "5917,5918", statOrder = { 5917, 5918 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrderKey = "5917,5918", statOrder = { 5917, 5918 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrderKey = "5984,5985", statOrder = { 5984, 5985 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrderKey = "5984,5985", statOrder = { 5984, 5985 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrderKey = "4665,4666", statOrder = { 4665, 4666 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrderKey = "4665,4666", statOrder = { 4665, 4666 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrderKey = "8743,8744", statOrder = { 8743, 8744 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrderKey = "8743,8744", statOrder = { 8743, 8744 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrderKey = "5309,5310", statOrder = { 5309, 5310 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrderKey = "5309,5310", statOrder = { 5309, 5310 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrderKey = "6646", statOrder = { 6646 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrderKey = "7344,7345", statOrder = { 7344, 7345 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrderKey = "7344,7345", statOrder = { 7344, 7345 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrderKey = "6433,6434", statOrder = { 6433, 6434 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrderKey = "5944,5945,5946,6487", statOrder = { 5944, 5945, 5946, 6487 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrderKey = "5944,5945,5946,6487", statOrder = { 5944, 5945, 5946, 6487 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrderKey = "6379", statOrder = { 6379 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrderKey = "6379", statOrder = { 6379 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrderKey = "5973", statOrder = { 5973 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrderKey = "5973", statOrder = { 5973 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrderKey = "5722", statOrder = { 5722 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrderKey = "5811,5812", statOrder = { 5811, 5812 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrderKey = "5811,5812", statOrder = { 5811, 5812 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrderKey = "6677,8823", statOrder = { 6677, 8823 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrderKey = "6677,8823", statOrder = { 6677, 8823 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrderKey = "5994,8364", statOrder = { 5994, 8364 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrderKey = "5994,8364", statOrder = { 5994, 8364 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrderKey = "4928", statOrder = { 4928 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrderKey = "9273", statOrder = { 9273 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrderKey = "4335", statOrder = { 4335 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrderKey = "4335", statOrder = { 4335 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrderKey = "4922,5164,8937", statOrder = { 4922, 5164, 8937 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrderKey = "5688", statOrder = { 5688 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrderKey = "8778,8779", statOrder = { 8778, 8779 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrderKey = "8778,8779", statOrder = { 8778, 8779 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrderKey = "8838", statOrder = { 8838 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrderKey = "8838", statOrder = { 8838 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrderKey = "8346,8348,9004,9013", statOrder = { 8346, 8348, 9004, 9013 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrderKey = "5880", statOrder = { 5880 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrderKey = "5880", statOrder = { 5880 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrderKey = "6417,6418,6419", statOrder = { 6417, 6418, 6419 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrderKey = "6417,6418,6419", statOrder = { 6417, 6418, 6419 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrderKey = "5947,5948", statOrder = { 5947, 5948 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrderKey = "5947,5948", statOrder = { 5947, 5948 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrderKey = "8956,8957", statOrder = { 8956, 8957 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrderKey = "8956,8957", statOrder = { 8956, 8957 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrderKey = "4642", statOrder = { 4642 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrderKey = "4642", statOrder = { 4642 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrderKey = "6410", statOrder = { 6410 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrderKey = "6410", statOrder = { 6410 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrderKey = "5533", statOrder = { 5533 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrderKey = "5533", statOrder = { 5533 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrderKey = "8682", statOrder = { 8682 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrderKey = "8682", statOrder = { 8682 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrderKey = "4694,9274", statOrder = { 4694, 9274 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrderKey = "4694,9274", statOrder = { 4694, 9274 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrderKey = "5559", statOrder = { 5559 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrderKey = "8938", statOrder = { 8938 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrderKey = "4342,4343", statOrder = { 4342, 4343 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrderKey = "4342,4343", statOrder = { 4342, 4343 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrderKey = "6686,6699", statOrder = { 6686, 6699 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrderKey = "4677", statOrder = { 4677 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrderKey = "9204", statOrder = { 9204 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrderKey = "9204", statOrder = { 9204 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrderKey = "8533", statOrder = { 8533 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrderKey = "8533", statOrder = { 8533 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrderKey = "9215", statOrder = { 9215 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrderKey = "9215", statOrder = { 9215 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrderKey = "9248", statOrder = { 9248 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrderKey = "9259", statOrder = { 9259 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrderKey = "9259", statOrder = { 9259 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrderKey = "9244", statOrder = { 9244 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrderKey = "9244", statOrder = { 9244 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrderKey = "9256", statOrder = { 9256 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrderKey = "9256", statOrder = { 9256 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrderKey = "9257", statOrder = { 9257 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrderKey = "9257", statOrder = { 9257 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrderKey = "9260", statOrder = { 9260 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrderKey = "9260", statOrder = { 9260 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrderKey = "9251", statOrder = { 9251 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrderKey = "9251", statOrder = { 9251 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrderKey = "9243", statOrder = { 9243 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrderKey = "9243", statOrder = { 9243 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Awakened Sextant", statOrderKey = "9242", statOrder = { 9242 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Awakened Sextant", statOrderKey = "9242", statOrder = { 9242 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrderKey = "9255", statOrder = { 9255 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrderKey = "9255", statOrder = { 9255 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrderKey = "9247", statOrder = { 9247 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrderKey = "9247", statOrder = { 9247 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrderKey = "9246", statOrder = { 9246 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrderKey = "9246", statOrder = { 9246 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrderKey = "9258", statOrder = { 9258 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrderKey = "9258", statOrder = { 9258 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrderKey = "9252", statOrder = { 9252 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrderKey = "9245", statOrder = { 9245 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrderKey = "9254", statOrder = { 9254 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrderKey = "2627", statOrder = { 2627 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrderKey = "2632", statOrder = { 2632 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrderKey = "2633", statOrder = { 2633 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrderKey = "2628", statOrder = { 2628 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrderKey = "2638", statOrder = { 2638 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrderKey = "3356", statOrder = { 3356 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrderKey = "5935", statOrder = { 5935 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrderKey = "5925", statOrder = { 5925 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrderKey = "5926", statOrder = { 5926 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrderKey = "5924", statOrder = { 5924 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrderKey = "5929", statOrder = { 5929 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrderKey = "5930", statOrder = { 5930 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrderKey = "5936", statOrder = { 5936 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrderKey = "5937", statOrder = { 5937 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrderKey = "5923", statOrder = { 5923 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrderKey = "5927", statOrder = { 5927 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrderKey = "5931", statOrder = { 5931 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrderKey = "5932", statOrder = { 5932 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrderKey = "5928", statOrder = { 5928 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrderKey = "5939", statOrder = { 5939 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrderKey = "5938", statOrder = { 5938 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrderKey = "5933", statOrder = { 5933 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrderKey = "5934", statOrder = { 5934 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrderKey = "189", statOrder = { 189 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrderKey = "203", statOrder = { 203 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrderKey = "213", statOrder = { 213 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrderKey = "364", statOrder = { 364 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrderKey = "220", statOrder = { 220 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrderKey = "388", statOrder = { 388 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrderKey = "238", statOrder = { 238 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrderKey = "291", statOrder = { 291 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrderKey = "265", statOrder = { 265 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrderKey = "268", statOrder = { 268 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrderKey = "269", statOrder = { 269 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrderKey = "290", statOrder = { 290 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrderKey = "296", statOrder = { 296 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrderKey = "298", statOrder = { 298 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrderKey = "357", statOrder = { 357 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrderKey = "402", statOrder = { 402 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrderKey = "365", statOrder = { 365 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrderKey = "190", statOrder = { 190 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrderKey = "196", statOrder = { 196 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrderKey = "352", statOrder = { 352 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrderKey = "409", statOrder = { 409 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrderKey = "216", statOrder = { 216 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrderKey = "217", statOrder = { 217 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrderKey = "218", statOrder = { 218 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrderKey = "239", statOrder = { 239 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrderKey = "379", statOrder = { 379 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrderKey = "243", statOrder = { 243 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrderKey = "294", statOrder = { 294 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrderKey = "405", statOrder = { 405 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrderKey = "363", statOrder = { 363 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrderKey = "400", statOrder = { 400 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrderKey = "252", statOrder = { 252 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrderKey = "272", statOrder = { 272 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrderKey = "262", statOrder = { 262 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrderKey = "301", statOrder = { 301 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrderKey = "302", statOrder = { 302 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrderKey = "303", statOrder = { 303 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrderKey = "242", statOrder = { 242 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrderKey = "361", statOrder = { 361 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrderKey = "383", statOrder = { 383 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrderKey = "399", statOrder = { 399 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrderKey = "271", statOrder = { 271 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrderKey = "211", statOrder = { 211 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrderKey = "398", statOrder = { 398 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrderKey = "278", statOrder = { 278 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2853", statOrder = { 2853 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrderKey = "2819", statOrder = { 2819 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2853,3431", statOrder = { 2853, 3431 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrderKey = "1964,2462", statOrder = { 1964, 2462 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrderKey = "1979,2464", statOrder = { 1979, 2464 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrderKey = "1962,2460", statOrder = { 1962, 2460 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrderKey = "1645,1649,1654", statOrder = { 1645, 1649, 1654 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrderKey = "1645,1649,1654", statOrder = { 1645, 1649, 1654 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrderKey = "1644,1650,1654", statOrder = { 1644, 1650, 1654 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrderKey = "1644,1650,1654", statOrder = { 1644, 1650, 1654 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1644,1649,1655", statOrder = { 1644, 1649, 1655 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1644,1649,1655", statOrder = { 1644, 1649, 1655 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrderKey = "8211,8306", statOrder = { 8211, 8306 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrderKey = "8211,8306", statOrder = { 8211, 8306 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrderKey = "1645,1650,1655", statOrder = { 1645, 1650, 1655 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrderKey = "1643,1650", statOrder = { 1643, 1650 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrderKey = "1643,1650", statOrder = { 1643, 1650 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrderKey = "1655,5332", statOrder = { 1655, 5332 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrderKey = "1655,5332", statOrder = { 1655, 5332 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrderKey = "1645,4424", statOrder = { 1645, 4424 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrderKey = "1645,4424", statOrder = { 1645, 4424 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrderKey = "5514,8211", statOrder = { 5514, 8211 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrderKey = "5514,8211", statOrder = { 5514, 8211 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrderKey = "9560", statOrder = { 9560 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrderKey = "6422,6425", statOrder = { 6422, 6425 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrderKey = "3844,6426", statOrder = { 3844, 6426 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrderKey = "3845,6430", statOrder = { 3845, 6430 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrderKey = "6434,6438", statOrder = { 6434, 6438 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrderKey = "3846,6440", statOrder = { 3846, 6440 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrderKey = "3179,3240", statOrder = { 3179, 3240 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrderKey = "3184,3856", statOrder = { 3184, 3856 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrderKey = "3189,3848", statOrder = { 3189, 3848 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3190,3850", statOrder = { 3190, 3850 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3190,3850", statOrder = { 3190, 3850 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrderKey = "3190,3850", statOrder = { 3190, 3850 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3191,3851", statOrder = { 3191, 3851 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3191,3851", statOrder = { 3191, 3851 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrderKey = "3191,3851", statOrder = { 3191, 3851 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3186,3857", statOrder = { 3186, 3857 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3186,3857", statOrder = { 3186, 3857 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrderKey = "3186,3857", statOrder = { 3186, 3857 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrderKey = "9540,9543", statOrder = { 9540, 9543 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrderKey = "8674,8680", statOrder = { 8674, 8680 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3181,3853", statOrder = { 3181, 3853 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3181,3853", statOrder = { 3181, 3853 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrderKey = "3181,3853", statOrder = { 3181, 3853 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3182,3849", statOrder = { 3182, 3849 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3182,3849", statOrder = { 3182, 3849 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrderKey = "3182,3849", statOrder = { 3182, 3849 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3183,3854", statOrder = { 3183, 3854 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3183,3854", statOrder = { 3183, 3854 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrderKey = "3183,3854", statOrder = { 3183, 3854 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3180,3852", statOrder = { 3180, 3852 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3180,3852", statOrder = { 3180, 3852 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrderKey = "3180,3852", statOrder = { 3180, 3852 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrderKey = "5599,5600", statOrder = { 5599, 5600 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrderKey = "3187,3858", statOrder = { 3187, 3858 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrderKey = "3188,8671", statOrder = { 3188, 8671 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrderKey = "3185,4629", statOrder = { 3185, 4629 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrderKey = "995,997", statOrder = { 995, 997 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrderKey = "995,997", statOrder = { 995, 997 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrderKey = "995,997", statOrder = { 995, 997 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrderKey = "995,997", statOrder = { 995, 997 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrderKey = "997,9079", statOrder = { 997, 9079 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrderKey = "997,9079", statOrder = { 997, 9079 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrderKey = "8785", statOrder = { 8785 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrderKey = "8785", statOrder = { 8785 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrderKey = "1602", statOrder = { 1602 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrderKey = "1602", statOrder = { 1602 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrderKey = "1601", statOrder = { 1601 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrderKey = "1601", statOrder = { 1601 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrderKey = "1600", statOrder = { 1600 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrderKey = "1600", statOrder = { 1600 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "5233", statOrder = { 5233 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrderKey = "5233", statOrder = { 5233 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "8919", statOrder = { 8919 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrderKey = "8919", statOrder = { 8919 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrderKey = "5186", statOrder = { 5186 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrderKey = "5186", statOrder = { 5186 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrderKey = "5181", statOrder = { 5181 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrderKey = "5181", statOrder = { 5181 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrderKey = "5185", statOrder = { 5185 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrderKey = "5185", statOrder = { 5185 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1825,4646", statOrder = { 1825, 4646 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1825,4646", statOrder = { 1825, 4646 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1826,4646", statOrder = { 1826, 4646 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrderKey = "1826,4646", statOrder = { 1826, 4646 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrderKey = "1687,2777", statOrder = { 1687, 2777 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrderKey = "1687,2777", statOrder = { 1687, 2777 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrderKey = "1686,2776", statOrder = { 1686, 2776 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrderKey = "1686,2776", statOrder = { 1686, 2776 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrderKey = "1689,2775", statOrder = { 1689, 2775 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrderKey = "1689,2775", statOrder = { 1689, 2775 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrderKey = "3193,4029", statOrder = { 3193, 4029 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrderKey = "3193,4029", statOrder = { 3193, 4029 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrderKey = "1690,8886", statOrder = { 1690, 8886 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrderKey = "1690,8886", statOrder = { 1690, 8886 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrderKey = "4937,5918", statOrder = { 4937, 5918 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrderKey = "5119,6531", statOrder = { 5119, 6531 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrderKey = "1066,2007", statOrder = { 1066, 2007 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrderKey = "1066,2007", statOrder = { 1066, 2007 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrderKey = "1066,2007", statOrder = { 1066, 2007 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrderKey = "1066,2007", statOrder = { 1066, 2007 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrderKey = "3096,3987", statOrder = { 3096, 3987 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrderKey = "3096,3987", statOrder = { 3096, 3987 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrderKey = "1741,3096", statOrder = { 1741, 3096 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrderKey = "1741,3096", statOrder = { 1741, 3096 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrderKey = "1356,2952", statOrder = { 1356, 2952 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrderKey = "1356,2952", statOrder = { 1356, 2952 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrderKey = "1356,2952", statOrder = { 1356, 2952 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrderKey = "1356,2952", statOrder = { 1356, 2952 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrderKey = "2538,2539", statOrder = { 2538, 2539 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrderKey = "2538,2539", statOrder = { 2538, 2539 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrderKey = "2542", statOrder = { 2542 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrderKey = "2542", statOrder = { 2542 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrderKey = "1414,1421", statOrder = { 1414, 1421 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrderKey = "1414,1421", statOrder = { 1414, 1421 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrderKey = "1403,1411", statOrder = { 1403, 1411 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrderKey = "1403,1411", statOrder = { 1403, 1411 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrderKey = "1423,1429", statOrder = { 1423, 1429 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrderKey = "1423,1429", statOrder = { 1423, 1429 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrderKey = "1784", statOrder = { 1784 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrderKey = "1784", statOrder = { 1784 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrderKey = "1642", statOrder = { 1642 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrderKey = "1642", statOrder = { 1642 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrderKey = "2297,4695", statOrder = { 2297, 4695 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrderKey = "2297,4695", statOrder = { 2297, 4695 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrderKey = "2297,4695", statOrder = { 2297, 4695 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrderKey = "2297,4695", statOrder = { 2297, 4695 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrderKey = "5773,6118", statOrder = { 5773, 6118 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrderKey = "5773,6118", statOrder = { 5773, 6118 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrderKey = "2011,5563", statOrder = { 2011, 5563 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrderKey = "2011,5563", statOrder = { 2011, 5563 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrderKey = "3374,5310", statOrder = { 3374, 5310 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrderKey = "5309,5310", statOrder = { 5309, 5310 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrderKey = "5309,5310", statOrder = { 5309, 5310 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrderKey = "6245,6246", statOrder = { 6245, 6246 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrderKey = "6245,6246", statOrder = { 6245, 6246 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrderKey = "5589", statOrder = { 5589 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrderKey = "5589", statOrder = { 5589 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrderKey = "4599", statOrder = { 4599 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrderKey = "4599", statOrder = { 4599 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Your Counterattacks have 30% reduced Cooldown Recovery Rate", "Your Counterattacks deal 45% more Damage", statOrderKey = "5346,9428", statOrder = { 5346, 9428 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Your Counterattacks have 30% reduced Cooldown Recovery Rate", "Your Counterattacks deal 60% more Damage", statOrderKey = "5346,9428", statOrder = { 5346, 9428 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrderKey = "2100,4676", statOrder = { 2100, 4676 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrderKey = "2100,4676", statOrder = { 2100, 4676 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrderKey = "5605,8226", statOrder = { 5605, 8226 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrderKey = "4677,8331", statOrder = { 4677, 8331 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrderKey = "1812,2851", statOrder = { 1812, 2851 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrderKey = "1812,2851", statOrder = { 1812, 2851 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrderKey = "1812,2851", statOrder = { 1812, 2851 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrderKey = "1812,2851", statOrder = { 1812, 2851 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrderKey = "2742,2743", statOrder = { 2742, 2743 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrderKey = "2735", statOrder = { 2735 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrderKey = "2735", statOrder = { 2735 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrderKey = "2735", statOrder = { 2735 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrderKey = "2735", statOrder = { 2735 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrderKey = "8344", statOrder = { 8344 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrderKey = "8344", statOrder = { 8344 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrderKey = "8344", statOrder = { 8344 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrderKey = "8344", statOrder = { 8344 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrderKey = "8344,8370", statOrder = { 8344, 8370 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrderKey = "8344,8370", statOrder = { 8344, 8370 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrderKey = "8344,8370", statOrder = { 8344, 8370 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrderKey = "8344,8370", statOrder = { 8344, 8370 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrderKey = "1606,1607", statOrder = { 1606, 1607 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2742,8357", statOrder = { 2742, 8357 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2742,8357", statOrder = { 2742, 8357 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2742,8357", statOrder = { 2742, 8357 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrderKey = "2742,8357", statOrder = { 2742, 8357 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrderKey = "8356", statOrder = { 8356 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrderKey = "8356", statOrder = { 8356 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrderKey = "8321", statOrder = { 8321 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrderKey = "8321", statOrder = { 8321 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrderKey = "8321", statOrder = { 8321 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrderKey = "8321", statOrder = { 8321 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8371", statOrder = { 8371 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8371", statOrder = { 8371 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8371", statOrder = { 8371 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrderKey = "8371", statOrder = { 8371 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrderKey = "1610", statOrder = { 1610 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrderKey = "1610", statOrder = { 1610 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrderKey = "1610", statOrder = { 1610 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrderKey = "1610", statOrder = { 1610 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrderKey = "8365", statOrder = { 8365 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrderKey = "8365", statOrder = { 8365 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrderKey = "8365", statOrder = { 8365 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrderKey = "8365", statOrder = { 8365 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrderKey = "2323,8886", statOrder = { 2323, 8886 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrderKey = "2323,8886", statOrder = { 2323, 8886 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrderKey = "2323,8886", statOrder = { 2323, 8886 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrderKey = "2323,8886", statOrder = { 2323, 8886 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrderKey = "2996,8894", statOrder = { 2996, 8894 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrderKey = "2996,8894", statOrder = { 2996, 8894 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrderKey = "2996,8894", statOrder = { 2996, 8894 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrderKey = "2996,8894", statOrder = { 2996, 8894 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrderKey = "1716,8328", statOrder = { 1716, 8328 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrderKey = "1716,8328", statOrder = { 1716, 8328 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrderKey = "1716,8328", statOrder = { 1716, 8328 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrderKey = "1716,8328", statOrder = { 1716, 8328 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrderKey = "1715,8325", statOrder = { 1715, 8325 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrderKey = "1715,8325", statOrder = { 1715, 8325 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrderKey = "1715,8325", statOrder = { 1715, 8325 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrderKey = "1715,8325", statOrder = { 1715, 8325 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrderKey = "1714,8330", statOrder = { 1714, 8330 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrderKey = "1714,8330", statOrder = { 1714, 8330 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrderKey = "1714,8330", statOrder = { 1714, 8330 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrderKey = "1714,8330", statOrder = { 1714, 8330 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrderKey = "6762,6769", statOrder = { 6762, 6769 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrderKey = "6762,6769", statOrder = { 6762, 6769 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrderKey = "6762,6769", statOrder = { 6762, 6769 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrderKey = "6762,6769", statOrder = { 6762, 6769 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrderKey = "6762,6780", statOrder = { 6762, 6780 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrderKey = "6762,6780", statOrder = { 6762, 6780 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrderKey = "3691,3837", statOrder = { 3691, 3837 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrderKey = "3691,3837", statOrder = { 3691, 3837 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrderKey = "3691,3837", statOrder = { 3691, 3837 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrderKey = "3691,3837", statOrder = { 3691, 3837 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrderKey = "3876,8533", statOrder = { 3876, 8533 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1610,3204", statOrder = { 1610, 3204 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1610,3204", statOrder = { 1610, 3204 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1610,3204", statOrder = { 1610, 3204 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1610,3204", statOrder = { 1610, 3204 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2743,3202", statOrder = { 2743, 3202 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2743,3202", statOrder = { 2743, 3202 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2743,3202", statOrder = { 2743, 3202 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrderKey = "2743,3202", statOrder = { 2743, 3202 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrderKey = "2733,2734", statOrder = { 2733, 2734 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrderKey = "1607,2886", statOrder = { 1607, 2886 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrderKey = "1607,2886", statOrder = { 1607, 2886 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrderKey = "1607,2886", statOrder = { 1607, 2886 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrderKey = "1607,2886", statOrder = { 1607, 2886 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrderKey = "3509,6227", statOrder = { 3509, 6227 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrderKey = "3509,6227", statOrder = { 3509, 6227 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrderKey = "3509,6227", statOrder = { 3509, 6227 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrderKey = "3509,6227", statOrder = { 3509, 6227 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrderKey = "421", statOrder = { 421 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrderKey = "421", statOrder = { 421 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrderKey = "389", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrderKey = "389", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrderKey = "368", statOrder = { 368 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrderKey = "368", statOrder = { 368 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrderKey = "395", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrderKey = "395", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrderKey = "430", statOrder = { 430 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrderKey = "430", statOrder = { 430 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrderKey = "392", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrderKey = "392", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "380", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "380", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "391", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "391", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrderKey = "388", statOrder = { 388 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrderKey = "388", statOrder = { 388 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrderKey = "198", statOrder = { 198 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrderKey = "198", statOrder = { 198 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrderKey = "410", statOrder = { 410 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrderKey = "410", statOrder = { 410 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrderKey = "411", statOrder = { 411 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrderKey = "411", statOrder = { 411 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrderKey = "415", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrderKey = "415", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrderKey = "412", statOrder = { 412 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrderKey = "412", statOrder = { 412 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrderKey = "379", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrderKey = "379", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrderKey = "427", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrderKey = "427", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrderKey = "409", statOrder = { 409 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrderKey = "409", statOrder = { 409 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "408", statOrder = { 408 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "408", statOrder = { 408 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrderKey = "407", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrderKey = "407", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrderKey = "259", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrderKey = "259", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrderKey = "213", statOrder = { 213 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrderKey = "213", statOrder = { 213 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrderKey = "260", statOrder = { 260 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrderKey = "260", statOrder = { 260 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrderKey = "218", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrderKey = "218", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrderKey = "280", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrderKey = "280", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrderKey = "257", statOrder = { 257 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrderKey = "257", statOrder = { 257 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrderKey = "211", statOrder = { 211 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrderKey = "211", statOrder = { 211 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrderKey = "305", statOrder = { 305 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrderKey = "305", statOrder = { 305 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrderKey = "229", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrderKey = "229", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrderKey = "298", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrderKey = "298", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrderKey = "290", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrderKey = "290", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrderKey = "231", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrderKey = "231", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrderKey = "232", statOrder = { 232 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrderKey = "232", statOrder = { 232 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrderKey = "278", statOrder = { 278 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrderKey = "278", statOrder = { 278 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrderKey = "309", statOrder = { 309 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrderKey = "309", statOrder = { 309 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrderKey = "248", statOrder = { 248 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrderKey = "248", statOrder = { 248 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrderKey = "212", statOrder = { 212 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrderKey = "212", statOrder = { 212 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrderKey = "223", statOrder = { 223 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrderKey = "223", statOrder = { 223 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrderKey = "264", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrderKey = "264", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrderKey = "274", statOrder = { 274 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrderKey = "274", statOrder = { 274 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrderKey = "199", statOrder = { 199 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrderKey = "199", statOrder = { 199 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrderKey = "286", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrderKey = "286", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrderKey = "416", statOrder = { 416 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrderKey = "416", statOrder = { 416 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrderKey = "404", statOrder = { 404 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrderKey = "404", statOrder = { 404 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "405", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "405", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrderKey = "375", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrderKey = "375", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrderKey = "276", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrderKey = "276", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrderKey = "300", statOrder = { 300 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrderKey = "300", statOrder = { 300 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrderKey = "303", statOrder = { 303 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrderKey = "303", statOrder = { 303 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrderKey = "306", statOrder = { 306 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrderKey = "306", statOrder = { 306 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrderKey = "317", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrderKey = "317", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrderKey = "230", statOrder = { 230 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrderKey = "230", statOrder = { 230 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrderKey = "301", statOrder = { 301 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrderKey = "301", statOrder = { 301 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrderKey = "250", statOrder = { 250 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrderKey = "250", statOrder = { 250 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrderKey = "285", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrderKey = "285", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrderKey = "297", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrderKey = "297", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrderKey = "234", statOrder = { 234 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrderKey = "234", statOrder = { 234 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrderKey = "222", statOrder = { 222 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrderKey = "222", statOrder = { 222 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrderKey = "255", statOrder = { 255 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrderKey = "255", statOrder = { 255 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrderKey = "307", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrderKey = "307", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrderKey = "296", statOrder = { 296 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrderKey = "296", statOrder = { 296 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrderKey = "314", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrderKey = "314", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrderKey = "308", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrderKey = "308", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrderKey = "251", statOrder = { 251 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrderKey = "251", statOrder = { 251 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrderKey = "261", statOrder = { 261 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrderKey = "261", statOrder = { 261 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrderKey = "203", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrderKey = "203", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrderKey = "201", statOrder = { 201 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrderKey = "201", statOrder = { 201 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrderKey = "233", statOrder = { 233 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrderKey = "233", statOrder = { 233 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrderKey = "275", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrderKey = "275", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrderKey = "220", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrderKey = "220", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrderKey = "247", statOrder = { 247 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrderKey = "247", statOrder = { 247 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrderKey = "279", statOrder = { 279 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrderKey = "279", statOrder = { 279 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrderKey = "4996", statOrder = { 4996 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrderKey = "4977,4983", statOrder = { 4977, 4983 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrderKey = "4995", statOrder = { 4995 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrderKey = "4978", statOrder = { 4978 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrderKey = "4982", statOrder = { 4982 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrderKey = "4994", statOrder = { 4994 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrderKey = "4980", statOrder = { 4980 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrderKey = "4979", statOrder = { 4979 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrderKey = "4976", statOrder = { 4976 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrderKey = "4911", statOrder = { 4911 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrderKey = "4733,4734", statOrder = { 4733, 4734 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrderKey = "4106,8940,8945", statOrder = { 4106, 8940, 8945 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrderKey = "6715,6716", statOrder = { 6715, 6716 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrderKey = "6199", statOrder = { 6199 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrderKey = "5748,8475", statOrder = { 5748, 8475 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrderKey = "4634", statOrder = { 4634 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrderKey = "4634", statOrder = { 4634 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrderKey = "8758,9284", statOrder = { 8758, 9284 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrderKey = "4999", statOrder = { 4999 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrderKey = "8711", statOrder = { 8711 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrderKey = "6747,6748", statOrder = { 6747, 6748 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrderKey = "6747,6748", statOrder = { 6747, 6748 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrderKey = "9380", statOrder = { 9380 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrderKey = "9380", statOrder = { 9380 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrderKey = "5687", statOrder = { 5687 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrderKey = "9377", statOrder = { 9377 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrderKey = "9377", statOrder = { 9377 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrderKey = "8993", statOrder = { 8993 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrderKey = "9379", statOrder = { 9379 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrderKey = "5691", statOrder = { 5691 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrderKey = "5691", statOrder = { 5691 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrderKey = "6492", statOrder = { 6492 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrderKey = "5712", statOrder = { 5712 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrderKey = "6241", statOrder = { 6241 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrderKey = "6241", statOrder = { 6241 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrderKey = "9241", statOrder = { 9241 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrderKey = "9240", statOrder = { 9240 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrderKey = "4729", statOrder = { 4729 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrderKey = "8911,8912,8913", statOrder = { 8911, 8912, 8913 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrderKey = "8911,8912,8913", statOrder = { 8911, 8912, 8913 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Sweep", "Knock Enemies Back on hit with Cyclone and Sweep", statOrderKey = "5465,5466", statOrder = { 5465, 5466 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrderKey = "5258,5259", statOrder = { 5258, 5259 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrderKey = "6026,7146", statOrder = { 6026, 7146 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrderKey = "6026,7146", statOrder = { 6026, 7146 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrderKey = "8794", statOrder = { 8794 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrderKey = "8794", statOrder = { 8794 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrderKey = "9019,9019.1", statOrder = { 9019, 9019.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrderKey = "9019,9019.1", statOrder = { 9019, 9019.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrderKey = "5003", statOrder = { 5003 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrderKey = "5321,5322", statOrder = { 5321, 5322 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrderKey = "6069,6073,6206", statOrder = { 6069, 6073, 6206 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrderKey = "4364", statOrder = { 4364 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrderKey = "4364", statOrder = { 4364 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrderKey = "6603,6604", statOrder = { 6603, 6604 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, modTags = { }, }, + ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrderKey = "5922,5924,8774", statOrder = { 5922, 5924, 8774 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrderKey = "5984", statOrder = { 5984 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrderKey = "5984", statOrder = { 5984 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrderKey = "5876", statOrder = { 5876 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrderKey = "5876", statOrder = { 5876 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrderKey = "5980,5981", statOrder = { 5980, 5981 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrderKey = "5980,5981", statOrder = { 5980, 5981 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrderKey = "6049,6050", statOrder = { 6049, 6050 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrderKey = "6049,6050", statOrder = { 6049, 6050 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrderKey = "4725,4726", statOrder = { 4725, 4726 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrderKey = "4725,4726", statOrder = { 4725, 4726 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrderKey = "8928,8929", statOrder = { 8928, 8929 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrderKey = "8928,8929", statOrder = { 8928, 8929 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrderKey = "5365,5366", statOrder = { 5365, 5366 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrderKey = "5365,5366", statOrder = { 5365, 5366 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrderKey = "6718", statOrder = { 6718 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrderKey = "7423,7424", statOrder = { 7423, 7424 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrderKey = "7423,7424", statOrder = { 7423, 7424 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrderKey = "6505,6506", statOrder = { 6505, 6506 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrderKey = "6007,6008,6009,6559", statOrder = { 6007, 6008, 6009, 6559 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrderKey = "6007,6008,6009,6559", statOrder = { 6007, 6008, 6009, 6559 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrderKey = "6448", statOrder = { 6448 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrderKey = "6448", statOrder = { 6448 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrderKey = "6038", statOrder = { 6038 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrderKey = "6038", statOrder = { 6038 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrderKey = "5783", statOrder = { 5783 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrderKey = "5874,5875", statOrder = { 5874, 5875 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrderKey = "5874,5875", statOrder = { 5874, 5875 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrderKey = "6750,9008", statOrder = { 6750, 9008 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrderKey = "6750,9008", statOrder = { 6750, 9008 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrderKey = "6059,8539", statOrder = { 6059, 8539 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrderKey = "6059,8539", statOrder = { 6059, 8539 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrderKey = "4981", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrderKey = "9462", statOrder = { 9462 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrderKey = "4389", statOrder = { 4389 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrderKey = "4389", statOrder = { 4389 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrderKey = "4975,5218,9124", statOrder = { 4975, 5218, 9124 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrderKey = "5747", statOrder = { 5747 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrderKey = "8963,8964", statOrder = { 8963, 8964 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrderKey = "8963,8964", statOrder = { 8963, 8964 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrderKey = "9023", statOrder = { 9023 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrderKey = "9023", statOrder = { 9023 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrderKey = "8520,8522,9191,9200", statOrder = { 8520, 8522, 9191, 9200 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrderKey = "5943", statOrder = { 5943 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrderKey = "5943", statOrder = { 5943 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrderKey = "6489,6490,6491", statOrder = { 6489, 6490, 6491 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrderKey = "6489,6490,6491", statOrder = { 6489, 6490, 6491 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrderKey = "6010,6011", statOrder = { 6010, 6011 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrderKey = "6010,6011", statOrder = { 6010, 6011 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrderKey = "9143,9144", statOrder = { 9143, 9144 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrderKey = "9143,9144", statOrder = { 9143, 9144 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrderKey = "4702", statOrder = { 4702 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrderKey = "4702", statOrder = { 4702 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrderKey = "6482", statOrder = { 6482 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrderKey = "6482", statOrder = { 6482 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrderKey = "5590", statOrder = { 5590 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrderKey = "5590", statOrder = { 5590 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrderKey = "8866", statOrder = { 8866 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrderKey = "8866", statOrder = { 8866 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrderKey = "4754,9463", statOrder = { 4754, 9463 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrderKey = "4754,9463", statOrder = { 4754, 9463 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrderKey = "5616", statOrder = { 5616 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrderKey = "9125", statOrder = { 9125 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrderKey = "4396,4397", statOrder = { 4396, 4397 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrderKey = "4396,4397", statOrder = { 4396, 4397 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrderKey = "6759,6772", statOrder = { 6759, 6772 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrderKey = "4737", statOrder = { 4737 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrderKey = "9392", statOrder = { 9392 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrderKey = "9392", statOrder = { 9392 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrderKey = "8716", statOrder = { 8716 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrderKey = "8716", statOrder = { 8716 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrderKey = "9403", statOrder = { 9403 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrderKey = "9403", statOrder = { 9403 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrderKey = "9437", statOrder = { 9437 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrderKey = "9448", statOrder = { 9448 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrderKey = "9448", statOrder = { 9448 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrderKey = "9433", statOrder = { 9433 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrderKey = "9433", statOrder = { 9433 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrderKey = "9445", statOrder = { 9445 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrderKey = "9445", statOrder = { 9445 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrderKey = "9446", statOrder = { 9446 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrderKey = "9446", statOrder = { 9446 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrderKey = "9449", statOrder = { 9449 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrderKey = "9449", statOrder = { 9449 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrderKey = "9440", statOrder = { 9440 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrderKey = "9440", statOrder = { 9440 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrderKey = "9432", statOrder = { 9432 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrderKey = "9432", statOrder = { 9432 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Awakened Sextant", statOrderKey = "9431", statOrder = { 9431 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Awakened Sextant", statOrderKey = "9431", statOrder = { 9431 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrderKey = "9444", statOrder = { 9444 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrderKey = "9444", statOrder = { 9444 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrderKey = "9436", statOrder = { 9436 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrderKey = "9436", statOrder = { 9436 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrderKey = "9435", statOrder = { 9435 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrderKey = "9435", statOrder = { 9435 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrderKey = "9447", statOrder = { 9447 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrderKey = "9447", statOrder = { 9447 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrderKey = "9441", statOrder = { 9441 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrderKey = "9434", statOrder = { 9434 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrderKey = "9443", statOrder = { 9443 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrderKey = "2673", statOrder = { 2673 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrderKey = "2678", statOrder = { 2678 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrderKey = "2679", statOrder = { 2679 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrderKey = "2674", statOrder = { 2674 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrderKey = "2684", statOrder = { 2684 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrderKey = "3402", statOrder = { 3402 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrderKey = "5998", statOrder = { 5998 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrderKey = "5988", statOrder = { 5988 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrderKey = "5989", statOrder = { 5989 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrderKey = "5987", statOrder = { 5987 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrderKey = "5992", statOrder = { 5992 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrderKey = "5993", statOrder = { 5993 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrderKey = "5999", statOrder = { 5999 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrderKey = "6000", statOrder = { 6000 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrderKey = "5986", statOrder = { 5986 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrderKey = "5990", statOrder = { 5990 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrderKey = "5994", statOrder = { 5994 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrderKey = "5995", statOrder = { 5995 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrderKey = "5991", statOrder = { 5991 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrderKey = "6002", statOrder = { 6002 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrderKey = "6001", statOrder = { 6001 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrderKey = "5996", statOrder = { 5996 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrderKey = "5997", statOrder = { 5997 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrderKey = "199", statOrder = { 199 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrderKey = "213", statOrder = { 213 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrderKey = "223", statOrder = { 223 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrderKey = "375", statOrder = { 375 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrderKey = "230", statOrder = { 230 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrderKey = "408", statOrder = { 408 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrderKey = "248", statOrder = { 248 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrderKey = "301", statOrder = { 301 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrderKey = "275", statOrder = { 275 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrderKey = "278", statOrder = { 278 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrderKey = "279", statOrder = { 279 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrderKey = "300", statOrder = { 300 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrderKey = "306", statOrder = { 306 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrderKey = "308", statOrder = { 308 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrderKey = "367", statOrder = { 367 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrderKey = "425", statOrder = { 425 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrderKey = "376", statOrder = { 376 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrderKey = "200", statOrder = { 200 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrderKey = "206", statOrder = { 206 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrderKey = "362", statOrder = { 362 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrderKey = "432", statOrder = { 432 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrderKey = "226", statOrder = { 226 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrderKey = "227", statOrder = { 227 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrderKey = "228", statOrder = { 228 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrderKey = "249", statOrder = { 249 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrderKey = "394", statOrder = { 394 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrderKey = "253", statOrder = { 253 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrderKey = "304", statOrder = { 304 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrderKey = "374", statOrder = { 374 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrderKey = "420", statOrder = { 420 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrderKey = "262", statOrder = { 262 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrderKey = "282", statOrder = { 282 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrderKey = "272", statOrder = { 272 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrderKey = "311", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrderKey = "312", statOrder = { 312 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrderKey = "313", statOrder = { 313 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrderKey = "252", statOrder = { 252 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrderKey = "372", statOrder = { 372 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrderKey = "403", statOrder = { 403 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrderKey = "419", statOrder = { 419 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrderKey = "281", statOrder = { 281 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrderKey = "221", statOrder = { 221 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrderKey = "418", statOrder = { 418 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrderKey = "288", statOrder = { 288 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/EnchantmentHelmet.lua b/src/Data/EnchantmentHelmet.lua index a07502fb4e..03ec144581 100644 --- a/src/Data/EnchantmentHelmet.lua +++ b/src/Data/EnchantmentHelmet.lua @@ -298,7 +298,7 @@ return { "Bladestorm deals 25% increased Damage", }, ["ENDGAME"] = { - "+1 to maximum number of Bladestorms", + "+1 to Maximum number of Bladestorms at a time", "Sand Bladestorms move with 75% increased speed", "Bladestorm deals 40% increased Damage", }, @@ -1376,12 +1376,12 @@ return { ["MERCILESS"] = { "Hexblast deals 25% increased Damage", "Hexblast has 16% increased Area of Effect", - "Hexblast has 10% chance to not remove a Hex", + "Hexblast has +10% chance to remove a Hex", }, ["ENDGAME"] = { "Hexblast deals 40% increased Damage", "Hexblast has 24% increased Area of Effect", - "Hexblast has 15% chance to not remove a Hex", + "Hexblast has +15% chance to remove a Hex", }, }, ["Holy Flame Totem"] = { @@ -1851,13 +1851,13 @@ return { "25% increased Power Siphon Damage", "30% Chance to gain an additional Power Charge on Kill with Power Siphon", "10% increased Power Siphon Attack Speed", - "Power Siphon fires an additional Projectile", + "Power Siphon fires at up to 1 additional target", }, ["ENDGAME"] = { "40% increased Power Siphon Damage", "45% Chance to gain an additional Power Charge on Kill with Power Siphon", "15% increased Power Siphon Attack Speed", - "Power Siphon fires 2 additional Projectiles", + "Power Siphon fires at up to 2 additional targets", }, }, ["Precision"] = { @@ -2114,7 +2114,7 @@ return { ["ENDGAME"] = { "Scourge Arrow deals 40% increased Damage", "Scourge Arrow has 8% chance to Poison per Stage", - "Scourge Arrow creates an additional spore pod at Maximum Stages", + "Scourge Arrow creates +1 Spore Pod", }, }, ["Searing Bond"] = { @@ -2306,11 +2306,11 @@ return { ["Soulrend"] = { ["MERCILESS"] = { "Soulrend deals 25% increased Damage", - "Soulrend also Hinders Enemies, with 25% reduced Movement Speed", + "Soulrend also Hinders Enemies when applying its Debuff, with 25% reduced Movement Speed", }, ["ENDGAME"] = { "Soulrend deals 40% increased Damage", - "Soulrend also Hinders Enemies, with 40% reduced Movement Speed", + "Soulrend also Hinders Enemies when applying its Debuff, with 40% reduced Movement Speed", "Soulrend fires an additional Projectile", }, }, diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua index fe359bdbb3..17a04ba7aa 100644 --- a/src/Data/Misc.lua +++ b/src/Data/Misc.lua @@ -16,20 +16,25 @@ data.monsterVarietyLifeMult = { ["Doomed Hibernator"] = 2.38, ["Adolescent Rhoa"] = 0.7, ["Bone Rhoa"] = 1.12, + ["Restless Bone Rhoa"] = 1.12, ["Corrupted Rhoa"] = 1.12, ["Bone Scavenger"] = 0.99, + ["Restless Small Bone Rhoa"] = 0.99, ["Zombie Rhoa"] = 1.12, ["Fated Archer"] = 0.96, ["Ancient Archer"] = 0.96, + ["Restless Skeletal Archer"] = 0.96, ["Timeless Hunter"] = 0.96, ["Brittle Lookout"] = 0.96, ["Brittle Born-again"] = 0.96, ["Brittle Poacher"] = 0.96, ["Sandy Lookout"] = 0.96, ["Burning Bowman"] = 0.96, + ["Restless Skeletal Burning Bowman"] = 0.96, ["Weathered Watchman"] = 0.96, ["Vault Hunter"] = 0.96, ["Brittle Archer"] = 0.96, + ["Restless Skeletal Split Shooter"] = 0.96, ["Sin Archer"] = 0.96, ["Thunder Thrall"] = 0.96, ["Plagued Bowman"] = 0.96, @@ -41,6 +46,7 @@ data.monsterVarietyLifeMult = { ["Azmeri Ancestor"] = 0.96, ["Bone Archer"] = 1.4, ["Axiom Frostguard"] = 0.84, + ["Restless Skeletal Frost Mage"] = 0.84, ["Frost Archmage"] = 0.84, ["Frost Bishop"] = 0.84, ["Frost Priest"] = 0.84, @@ -53,6 +59,7 @@ data.monsterVarietyLifeMult = { ["Desecrated Saint"] = 0.84, ["Desecrated Sage"] = 0.84, ["Brittle Arsonist"] = 0.84, + ["Restless Skeletal Fire Mage"] = 0.84, ["Flame Archmage"] = 0.84, ["Flame Bishop"] = 0.84, ["Flame Priest"] = 0.84, @@ -61,6 +68,7 @@ data.monsterVarietyLifeMult = { ["Flame Rattler"] = 0.84, ["Flame Preacher"] = 0.84, ["Axiom Thunderguard"] = 0.84, + ["Restless Skeletal Lightning Mage"] = 0.84, ["Servant of Rukuku"] = 0.48, ["Thunder Archmage"] = 0.84, ["Thunder Bishop"] = 0.84, @@ -72,6 +80,7 @@ data.monsterVarietyLifeMult = { ["Thunder Rattler"] = 0.84, ["Sparking Mage"] = 0.84, ["Ancient Bonestalker"] = 0.9, + ["Restless Skeleton"] = 0.9, ["Brittle Cleric"] = 0.9, ["Brittle Thief"] = 0.9, ["Rattling Bones"] = 0.9, @@ -93,6 +102,7 @@ data.monsterVarietyLifeMult = { ["Bloodstained Warrior"] = 0.9, ["Ancient Convict"] = 0.9, ["Colossal Bonestalker"] = 1.98, + ["Restless Skeletal Colossal"] = 1.98, ["Awoken Giant"] = 1.98, ["Frost Guardian"] = 1.08, ["Frost Champion"] = 1.08, @@ -214,6 +224,7 @@ data.monsterVarietyLifeMult = { ["Experimented Dead"] = 1.3, ["Dreadwheel"] = 1.28, ["Bone Husk"] = 2.07, + ["[DNT] Bonier Husk"] = 2.3, ["Brittle Miner"] = 1.32, ["Rattling Slave"] = 1.56, ["Deep Shambler"] = 1.08, diff --git a/src/Data/ModMaster.lua b/src/Data/ModMaster.lua index 11d976def7..ed31fb8583 100644 --- a/src/Data/ModMaster.lua +++ b/src/Data/ModMaster.lua @@ -2,727 +2,727 @@ -- Item data (c) Grinding Gear Games return { - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1377 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1433 }, level = 15, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1439 }, level = 15, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1444 }, level = 15, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 992 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 993 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 994 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1433 }, level = 30, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1433 }, level = 50, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1439 }, level = 30, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1439 }, level = 50, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1444 }, level = 30, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1444 }, level = 50, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2583 }, level = 30, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2583 }, level = 50, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2583 }, level = 75, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2585 }, level = 30, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2585 }, level = 50, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2585 }, level = 75, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2584 }, level = 30, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2584 }, level = 50, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2584 }, level = 75, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1427 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1427 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1427, 2696 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1427, 2696 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 992 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 992 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 993 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 993 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 994 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 994 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 991 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 991 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1604 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1604 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1604 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1377 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1377 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1377 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1377 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1456 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1456 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1458 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.5-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1458 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1508 }, level = 70, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1387 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1387 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1387 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1387 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1387 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1387 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1387 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1387 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1387 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1387 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1387 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1392 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1392 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1046 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1046 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1046 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1046 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(37-51)% increased Spell Damage", statOrder = { 1038 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(52-66)% increased Spell Damage", statOrder = { 1038 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(67-81)% increased Spell Damage", statOrder = { 1038 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(82-99)% increased Spell Damage", statOrder = { 1038 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1038 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1038 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1038 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1038 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1025 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1025 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 5686 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 5686 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1224 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1224 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1224 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1224 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1221 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1256 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1256 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1256 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1256 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1256 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1256 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(37-51)% increased Fire Damage", statOrder = { 1169 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(52-66)% increased Fire Damage", statOrder = { 1169 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(67-81)% increased Fire Damage", statOrder = { 1169 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1169 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1169 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1169 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1169 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1169 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(37-51)% increased Cold Damage", statOrder = { 1178 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(52-66)% increased Cold Damage", statOrder = { 1178 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(67-81)% increased Cold Damage", statOrder = { 1178 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1178 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1178 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1178 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1178 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1178 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(37-51)% increased Lightning Damage", statOrder = { 1189 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(52-66)% increased Lightning Damage", statOrder = { 1189 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(67-81)% increased Lightning Damage", statOrder = { 1189 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1189 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1189 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1189 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1189 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1189 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(37-51)% increased Chaos Damage", statOrder = { 1197 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(52-66)% increased Chaos Damage", statOrder = { 1197 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(67-81)% increased Chaos Damage", statOrder = { 1197 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1197 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1197 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1197 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1197 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1197 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1825 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 1825 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 1825 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1243 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1243 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1243 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1045 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1045 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1351 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1351 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1351 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1349 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1349 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1349 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1359 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1359 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1359 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1357 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1357 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1357 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1368 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1368 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1368 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1367 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1367 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1367 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1369 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1369 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1366 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1366 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1362 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1362 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1362 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1361 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1361 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1361 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1363 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1363 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1363 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1174 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1174 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1174 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1174 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1174 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1174 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1172 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1172 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1183 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1183 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1183 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1183 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1183 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1183 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1181 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1181 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1194 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1194 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1194 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1194 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1194 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1194 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1192 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1192 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1088 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1088 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1088 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1088 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1088 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1088 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1079 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1079 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1199 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1199 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 1215 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 1215 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 1215 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 1215 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1215 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 1215 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 1216 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 1216 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 1216 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 1216 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1216 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 1216 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 1217 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 1217 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 1217 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 1217 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1217 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 1217 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1274 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1274 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1274 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1298 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1298 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1298 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(45-75)% increased Critical Strike Chance for Spells", statOrder = { 1268 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(76-105)% increased Critical Strike Chance for Spells", statOrder = { 1268 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(30-49)% increased Critical Strike Chance for Spells", statOrder = { 1268 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-69)% increased Critical Strike Chance for Spells", statOrder = { 1268 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1269 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1269 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 1988 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 1988 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1657 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1657 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1649 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1649 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 8747 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 8747 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(2-3)% Chance to Block", statOrder = { 2049 }, level = 50, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(4-5)% Chance to Block", statOrder = { 2049 }, level = 68, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "block" }, "(2-3)% Chance to Block Spell Damage", statOrder = { 976 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "block" }, "(4-5)% Chance to Block Spell Damage", statOrder = { 976 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1385 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1385 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2072 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2072 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 962 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 962 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 962 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 962 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1373 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1373 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1370 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1370 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2045 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { }, "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2350 }, level = 68, group = "ItemDropsOnGuardianDeath", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2526 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1572 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1572 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1777 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1575 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1575 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1777 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1777 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1777 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1777 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1777 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1777 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Trap Damage", statOrder = { 1009 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Trap Damage", statOrder = { 1009 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1009 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1009 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Mine Damage", statOrder = { 1011 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Mine Damage", statOrder = { 1011 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1011 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1011 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1221 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1256 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3055 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 9103 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 2968 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5149 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5149 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 3983 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 3983 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1681 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1681 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1452 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1452 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 8748 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 8748 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 1972 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 1972 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 4607 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 4607 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1172 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1172 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1181 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1181 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1192 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1192 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1046, 7058 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1046, 7058 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1046, 7058 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1046, 2274 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1046, 2274 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1046, 2274 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1046, 2062 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1046, 2062 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1046, 2062 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1046, 7170 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1046, 7170 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1046, 7170 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(60-64)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1169, 1827 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(65-72)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1169, 1827 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(73-80)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1169, 1827 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1169, 1827 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1169, 1827 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1169, 1827 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(60-64)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1178, 1830 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(65-72)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1178, 1830 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(73-80)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1178, 1830 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1178, 1830 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1178, 1830 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1178, 1830 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(60-64)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1189, 1834 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(65-72)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1189, 1834 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(73-80)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1189, 1834 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1189, 1834 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1189, 1834 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1189, 1834 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1197, 1702 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1038, 1392 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1038, 8310 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1572, 1777 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1572, 1777 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1572, 1777 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1572, 1777 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1572, 1777 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1572, 1777 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2691, 2692 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1072 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1060 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1069 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1064 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3531 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3531 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3531 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7070 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7070 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7070 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5082 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5082 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5082 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5082 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1362, 1377 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1362, 1377 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1362, 1377 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1361, 1377 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1361, 1377 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1361, 1377 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1363, 1377 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1363, 1377 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1363, 1377 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1351, 1377 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1351, 1377 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1351, 1377 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1359, 1377 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1359, 1377 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1359, 1377 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1368, 1377 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1368, 1377 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1368, 1377 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1364, 1377 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1364, 1377 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1364, 1377 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1362, 1377 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1362, 1377 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1362, 1377 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1361, 1377 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1361, 1377 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1361, 1377 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1363, 1377 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1363, 1377 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1363, 1377 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1351, 1377 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1351, 1377 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1351, 1377 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1359, 1377 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1359, 1377 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1359, 1377 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1368, 1377 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1368, 1377 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1368, 1377 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1364, 1377 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1364, 1377 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1364, 1377 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1362, 1377 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1362, 1377 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1362, 1377 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1361, 1377 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1361, 1377 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1361, 1377 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1363, 1377 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1363, 1377 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1363, 1377 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1351, 1377 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1351, 1377 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1351, 1377 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1359, 1377 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1359, 1377 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1359, 1377 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1368, 1377 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1368, 1377 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1368, 1377 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1364, 1377 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1364, 1377 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1364, 1377 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 995 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 995 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 995 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 997 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 997 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 997 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 996 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 996 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 996 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1609 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1619 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1614 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1387, 1390 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1387, 1390 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1387, 1390 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 1387, 1689 }, level = 60, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 1387, 1689 }, level = 72, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 1387, 1689 }, level = 81, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1387, 2246 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1387, 2246 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1387, 2246 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 1848 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 1848 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 1848 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1604, 3000 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1604, 3000 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1604, 3000 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1604, 2774 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1604, 2774 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1604, 2774 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1604, 1650 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1604, 1650 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1604, 1650 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4033 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4033 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4033 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1348, 1366 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1348, 1366 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1348, 1366 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1353, 1366 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1353, 1366 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1353, 1366 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 1984, 2527 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 1984, 2527 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 4595 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4595 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 2975 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 2975 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3064 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3064 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 5459 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 5459 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1759 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1761 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1763 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1962, 1964 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 8316 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 8316 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2387 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2387 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4552 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4552 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 8434 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 8434 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 8434 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6083 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5477 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5477 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5477 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 144, 1686 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 145, 1596 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 147, 2325 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5359 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4518 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5798 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5798 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5798 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1269, 6061 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1269, 6061 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1269, 6061 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 5667 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 5667 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 5667 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 8108 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 8108 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1269, 8108 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1377, 1390 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1377, 1390 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1377, 1390 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1382, 1387 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1382, 1387 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1382, 1387 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2369 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2369 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2369 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1171, 1180 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1171, 1180 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1171, 1180 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1171, 1191 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1171, 1191 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1171, 1191 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1180, 1191 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1180, 1191 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1180, 1191 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 5864 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 5820 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 5820 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 5820 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4262 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4262 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4262 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 8742 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 8742 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 8742 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 5825 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 8678 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 8678 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 8678 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5088 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4449 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4449 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4449 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 8928 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 8928 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 8928 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 6470 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6124, 6572 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 8026 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 8026 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 8026 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 669 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 5482 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 8223 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Leo's", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1006 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Leo's", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1006 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Catarina's", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 157 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Catarina's", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 157 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 8787 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 8787 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 8787 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 8789 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 8789 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 8789 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Vorici's", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 2842 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Vorici's", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 2842 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Haku's", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 168 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Haku's", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 168 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1088, 2274 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1088, 2274 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1088, 2274 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1088, 2274 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Vagan's", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 1844 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Brinerot", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 3849 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Brinerot", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 3849 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Janus", modTags = { "unveiled_mod" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 8590 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Janus", modTags = { "unveiled_mod" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 8590 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1745 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1745 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1745 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1745 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1744 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1744 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1744 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1744 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1742 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1742 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1742 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1742 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1739 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1739 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1739 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1739 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Hillock", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 998 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Hillock", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 998 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Gravicius'", modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, "(3-4)% of Physical Damage from Hits taken as Fire Damage", "(3-4)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2238, 2240 }, level = 72, group = "PhysicalDamageTakenAsFireAndLightningPercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Gravicius'", modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, "(5-6)% of Physical Damage from Hits taken as Fire Damage", "(5-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2238, 2240 }, level = 81, group = "PhysicalDamageTakenAsFireAndLightningPercent", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "Jorgin's", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 629 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Korell's", modTags = { "unveiled_mod", "physical", "elemental", "fire" }, "(5-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2238 }, level = 72, group = "PhysicalDamageTakenAsFirePercent", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Korell's", modTags = { "unveiled_mod", "physical", "elemental", "fire" }, "(7-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2238 }, level = 81, group = "PhysicalDamageTakenAsFirePercent", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Rin's", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1651 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Rin's", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1651 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Cameria", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1269, 5356 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Cameria", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1269, 5356 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Aisling", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1045, 1197 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Aisling", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1045, 1197 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Riker", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1169, 1189 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Riker", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1169, 1189 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 819 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 802 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "mana" }, "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 824 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 816 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "(45-55)% reduced Reflected Damage taken during Effect", statOrder = { 823 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 818 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 997, 1224 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 997, 1224 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 996, 1274 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 996, 1274 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 995, 1825 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 995, 1825 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 630, 1224 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 630, 1224 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1256, 6038 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 668, 668.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 5878 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 5878 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 5878 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 6642 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 6642 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 6642 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5213 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5213 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5213 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 992, 1652 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 992, 1652 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 992, 1652 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 993, 1651 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 993, 1651 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 993, 1651 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 994, 1654 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 994, 1654 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 994, 1654 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1731 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1732 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 8772 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 8772 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 8772 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1379, 1388 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 957 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 976 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1649, 1657 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1686, 1836 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1686, 1836 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1686, 1836 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1602, 1797 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1602, 1797 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1602, 1797 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1048, 2325 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1048, 2325 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1048, 2325 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 5972 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1412 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1468 }, level = 15, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1474 }, level = 15, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1479 }, level = 15, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 1027 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 1028 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 1029 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1468 }, level = 30, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1468 }, level = 50, group = "FireResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1474 }, level = 30, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1474 }, level = 50, group = "ColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1479 }, level = 30, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1479 }, level = 50, group = "LightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2629 }, level = 30, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2629 }, level = 50, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2629 }, level = 75, group = "FireAndColdResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2631 }, level = 30, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2631 }, level = 50, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2631 }, level = 75, group = "ColdAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2630 }, level = 30, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2630 }, level = 50, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2630 }, level = 75, group = "FireAndLightningResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1462 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1462 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1462, 2742 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1462, 2742 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 1027 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 1027 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 1028 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 1028 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 1029 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 1029 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 1026 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 1026 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1639 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1639 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1639 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1412 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1412 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1412 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1412 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1491 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1491 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1493 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.5-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1493 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1543 }, level = 70, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1422 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1422 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1422 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1422 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1422 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1422 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1422 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1422 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1422 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1422 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1422 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1427 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1427 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1081 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1081 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1081 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1081 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(37-51)% increased Spell Damage", statOrder = { 1073 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(52-66)% increased Spell Damage", statOrder = { 1073 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(67-81)% increased Spell Damage", statOrder = { 1073 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(82-99)% increased Spell Damage", statOrder = { 1073 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1073 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1073 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1073 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1073 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1060 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1060 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 5745 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 5745 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1259 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1259 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1259 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1259 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1256 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1291 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1291 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1291 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1291 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1291 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1291 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(37-51)% increased Fire Damage", statOrder = { 1204 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(52-66)% increased Fire Damage", statOrder = { 1204 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(67-81)% increased Fire Damage", statOrder = { 1204 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1204 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1204 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1204 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1204 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1204 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(37-51)% increased Cold Damage", statOrder = { 1213 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(52-66)% increased Cold Damage", statOrder = { 1213 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(67-81)% increased Cold Damage", statOrder = { 1213 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1213 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1213 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1213 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1213 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1213 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(37-51)% increased Lightning Damage", statOrder = { 1224 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(52-66)% increased Lightning Damage", statOrder = { 1224 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(67-81)% increased Lightning Damage", statOrder = { 1224 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1224 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1224 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1224 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1224 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1224 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(37-51)% increased Chaos Damage", statOrder = { 1232 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(52-66)% increased Chaos Damage", statOrder = { 1232 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(67-81)% increased Chaos Damage", statOrder = { 1232 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1232 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1232 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1232 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1232 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1232 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1860 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 1860 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 1860 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1278 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1278 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1278 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1080 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1080 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1386 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1386 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1386 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1384 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1384 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1384 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1394 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1394 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1394 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1392 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1392 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1392 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1403 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1403 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1403 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1402 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1402 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1402 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1404 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1404 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1401 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1401 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1397 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1397 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1397 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1396 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1396 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1396 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1398 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1398 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1398 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1209 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1209 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1209 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1209 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1209 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1209 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1207 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1207 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1218 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1218 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1218 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1218 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1218 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1218 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1216 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1216 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1229 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1229 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1229 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1229 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1229 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1229 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1227 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1227 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1123 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1123 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1123 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1123 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1123 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1123 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1114 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1114 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1234 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1234 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 1250 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 1250 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 1250 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 1250 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1250 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 1250 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 1251 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 1251 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 1251 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 1251 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1251 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 1251 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 1252 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 1252 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 1252 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 1252 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1252 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 1252 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1309 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1309 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1309 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1333 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1333 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1333 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(45-75)% increased Critical Strike Chance for Spells", statOrder = { 1303 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(76-105)% increased Critical Strike Chance for Spells", statOrder = { 1303 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(30-49)% increased Critical Strike Chance for Spells", statOrder = { 1303 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-69)% increased Critical Strike Chance for Spells", statOrder = { 1303 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1304 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1304 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 2024 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 2024 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1692 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1692 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1684 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1684 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 8932 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 8932 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(2-3)% Chance to Block", statOrder = { 2085 }, level = 50, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(4-5)% Chance to Block", statOrder = { 2085 }, level = 68, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "(2-3)% Chance to Block Spell Damage", statOrder = { 1011 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "(4-5)% Chance to Block Spell Damage", statOrder = { 1011 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1420 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1420 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2108 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2108 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 997 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 997 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 997 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 997 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1408 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1408 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1405 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1405 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2081 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { }, "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2392 }, level = 68, group = "ItemDropsOnGuardianDeath", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2572 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1607 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1607 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1812 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1610 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1610 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1812 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1812 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1812 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1812 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1812 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1812 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Trap Damage", statOrder = { 1044 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Trap Damage", statOrder = { 1044 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1044 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1044 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Mine Damage", statOrder = { 1046 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Mine Damage", statOrder = { 1046 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1046 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1046 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1256 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1291 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3101 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 9292 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3014 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5202 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5202 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 4029 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 4029 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1716 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1716 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1487 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1487 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 8933 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 8933 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 2007 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 2007 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 4666 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 4666 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1207 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1207 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1216 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1216 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1227 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1227 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1081, 7131 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1081, 7131 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1081, 7131 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1081, 2316 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1081, 2316 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1081, 2316 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1081, 2098 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1081, 2098 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1081, 2098 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1081, 7245 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1081, 7245 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1081, 7245 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(60-64)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1204, 1862 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(65-72)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1204, 1862 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(73-80)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1204, 1862 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1204, 1862 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1204, 1862 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1204, 1862 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(60-64)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1213, 1865 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(65-72)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1213, 1865 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(73-80)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1213, 1865 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1213, 1865 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1213, 1865 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1213, 1865 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(60-64)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1224, 1869 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(65-72)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1224, 1869 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(73-80)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1224, 1869 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1224, 1869 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1224, 1869 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1224, 1869 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1232, 1737 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1073, 1427 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1073, 8484 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1607, 1812 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1607, 1812 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1607, 1812 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1607, 1812 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1607, 1812 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1607, 1812 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2737, 2738 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1107 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1095 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1104 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1099 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3577 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3577 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3577 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7143 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7143 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7143 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5135 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5135 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5135 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5135 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1397, 1412 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1397, 1412 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1397, 1412 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1396, 1412 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1396, 1412 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1396, 1412 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1398, 1412 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1398, 1412 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1398, 1412 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1386, 1412 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1386, 1412 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1386, 1412 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1394, 1412 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1394, 1412 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1394, 1412 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1403, 1412 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1403, 1412 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1403, 1412 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1399, 1412 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1399, 1412 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1399, 1412 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1397, 1412 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1397, 1412 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1397, 1412 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1396, 1412 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1396, 1412 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1396, 1412 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1398, 1412 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1398, 1412 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1398, 1412 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1386, 1412 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1386, 1412 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1386, 1412 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1394, 1412 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1394, 1412 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1394, 1412 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1403, 1412 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1403, 1412 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1403, 1412 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1399, 1412 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1399, 1412 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1399, 1412 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1397, 1412 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1397, 1412 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1397, 1412 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1396, 1412 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1396, 1412 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1396, 1412 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1398, 1412 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1398, 1412 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1398, 1412 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1386, 1412 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1386, 1412 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1386, 1412 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1394, 1412 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1394, 1412 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1394, 1412 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1403, 1412 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1403, 1412 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1403, 1412 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1399, 1412 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1399, 1412 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1399, 1412 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 1030 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 1030 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 1030 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 1032 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 1032 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 1032 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 1031 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 1031 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 1031 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1644 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1654 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1649 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1422, 1425 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1422, 1425 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1422, 1425 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 1422, 1724 }, level = 60, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 1422, 1724 }, level = 72, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 1422, 1724 }, level = 81, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1422, 2288 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1422, 2288 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1422, 2288 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 1883 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 1883 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 1883 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1639, 3046 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1639, 3046 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1639, 3046 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1639, 2820 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1639, 2820 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1639, 2820 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1639, 1685 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1639, 1685 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1639, 1685 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4079 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4079 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4079 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1383, 1401 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1383, 1401 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1383, 1401 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1388, 1401 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1388, 1401 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1388, 1401 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2020, 2573 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 2020, 2573 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 4654 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4654 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 3021 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 3021 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3110 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3110 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 5516 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 5516 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1794 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1796 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1798 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1997, 1999 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 8490 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 8490 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2429 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2429 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4607 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4607 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 8616 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 8616 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 8616 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6152 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5534 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5534 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5534 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 151, 1721 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 152, 1631 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 154, 2367 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5415 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4573 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5861 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5861 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 5861 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1304, 6129 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1304, 6129 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1304, 6129 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 5726 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 5726 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 5726 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 8273 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 8273 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1304, 8273 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1412, 1425 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1412, 1425 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1412, 1425 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1417, 1422 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1417, 1422 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1417, 1422 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2411 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2411 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2411 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1206, 1215 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1206, 1215 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1206, 1215 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1206, 1226 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1206, 1226 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1206, 1226 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1215, 1226 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1215, 1226 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1215, 1226 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 5927 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 5883 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 5883 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 5883 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4315 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4315 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4315 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 8927 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 8927 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 8927 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 5888 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 8861 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 8861 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 8861 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5141 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4504 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4504 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4504 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 9115 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 9115 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 9115 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 6542 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6193, 6644 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 8197 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 8197 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 8197 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 700 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 5539 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 8390 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Leo's", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1041 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Leo's", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1041 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Catarina's", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 164 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Catarina's", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 164 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 8972 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 8972 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 8972 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 8974 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 8974 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 8974 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Vorici's", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 2888 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Vorici's", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 2888 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Haku's", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 178 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Haku's", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 178 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1123, 2316 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1123, 2316 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1123, 2316 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Tora's", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1123, 2316 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Vagan's", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 1879 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Brinerot", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 3895 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Brinerot", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 3895 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Janus", modTags = { "unveiled_mod" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 8773 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Janus", modTags = { "unveiled_mod" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 8773 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1780 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1780 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1780 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1780 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1779 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1779 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1779 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1779 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1777 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1777 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1777 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1777 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1774 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1774 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1774 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1774 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Hillock", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 1033 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Hillock", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 1033 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Gravicius'", modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, "(3-4)% of Physical Damage from Hits taken as Fire Damage", "(3-4)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2280, 2282 }, level = 72, group = "PhysicalDamageTakenAsFireAndLightningPercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Gravicius'", modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, "(5-6)% of Physical Damage from Hits taken as Fire Damage", "(5-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2280, 2282 }, level = 81, group = "PhysicalDamageTakenAsFireAndLightningPercent", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "Jorgin's", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 660 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Korell's", modTags = { "unveiled_mod", "physical", "elemental", "fire" }, "(5-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2280 }, level = 72, group = "PhysicalDamageTakenAsFirePercent", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Korell's", modTags = { "unveiled_mod", "physical", "elemental", "fire" }, "(7-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2280 }, level = 81, group = "PhysicalDamageTakenAsFirePercent", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Rin's", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1686 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Rin's", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1686 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Cameria", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1304, 5412 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Cameria", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1304, 5412 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Aisling", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1080, 1232 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Aisling", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1080, 1232 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Riker", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1204, 1224 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Riker", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1204, 1224 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 850 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 833 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "mana" }, "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 855 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 847 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "unveiled_mod" }, "(45-55)% reduced Reflected Damage taken during Effect", statOrder = { 854 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 849 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 1032, 1259 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 1032, 1259 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 1031, 1309 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 1031, 1309 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 1030, 1860 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 1030, 1860 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 661, 1259 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 661, 1259 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1291, 6106 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 699, 699.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 5941 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 5941 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 5941 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 6714 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 6714 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 6714 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5267 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5267 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5267 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1027, 1687 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1027, 1687 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1027, 1687 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1028, 1686 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1028, 1686 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1028, 1686 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1029, 1689 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1029, 1689 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1029, 1689 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1766 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1767 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 8957 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 8957 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 8957 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1414, 1423 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 992 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 1011 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1684, 1692 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1721, 1871 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1721, 1871 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1721, 1871 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1637, 1832 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1637, 1832 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1637, 1832 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1083, 2367 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1083, 2367 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1083, 2367 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 6037 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, { type = "Suffix", affix = "of Prefixes", modTags = { }, "Prefixes Cannot Be Changed", statOrder = { 14 }, level = 1, group = "ItemGenerationCannotChangePrefixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Prefix", affix = "Suffixed", modTags = { }, "Suffixes Cannot Be Changed", statOrder = { 16 }, level = 1, group = "ItemGenerationCannotChangeSuffixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Suffix", affix = "of Crafting", modTags = { }, "Can have up to 3 Crafted Modifiers", statOrder = { 19 }, level = 1, group = "ItemGenerationCanHaveMultipleCraftedMods", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, diff --git a/src/Data/Pantheons.lua b/src/Data/Pantheons.lua index 402cd74542..bee101303f 100644 --- a/src/Data/Pantheons.lua +++ b/src/Data/Pantheons.lua @@ -11,19 +11,19 @@ return { [1] = { line = "You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds", value = { 1 }, }, }, }, - [2] = { name = "Puruna, the Challenger", + [2] = { name = "Blood Progenitor", mods = { -- base_stun_recovery_+% [1] = { line = "30% increased Stun and Block Recovery", value = { 30 }, }, }, }, - [3] = { name = "Fragment of Winter", + [3] = { name = "Merveil, the Returned", mods = { -- base_avoid_freeze_% [1] = { line = "100% chance to Avoid being Frozen", value = { 100 }, }, }, }, - [4] = { name = "Pirate Treasure", + [4] = { name = "Nassar, Lion of the Seas", mods = { -- chill_effectiveness_on_self_+% [1] = { line = "50% reduced Effect of Chill on you", value = { -50 }, }, @@ -46,13 +46,13 @@ return { [1] = { line = "20% increased Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently", value = { 20 }, }, }, }, - [3] = { name = "Hybrid Widow", + [3] = { name = "Spinner of False Hope", mods = { -- debuff_time_passed_+% [1] = { line = "Debuffs on you expire 20% faster", value = { 20 }, }, }, }, - [4] = { name = "Armala, the Widow", + [4] = { name = "Queen of the Great Tangle", mods = { -- additional_chaos_resistance_against_damage_over_time_% [1] = { line = "+40% Chaos Resistance against Damage Over Time", value = { 40 }, }, @@ -71,13 +71,13 @@ return { [2] = { line = "20% chance to take 50% less Area Damage from Hits", value = { 20 }, }, }, }, - [2] = { name = "Forest of Flames", + [2] = { name = "Lord of the Ashen Arrow", mods = { -- elemental_damage_taken_+%_if_not_hit_recently [1] = { line = "8% reduced Elemental Damage taken if you haven't been Hit Recently", value = { -8 }, }, }, }, - [3] = { name = "Fire and Fury", + [3] = { name = "Megaera", mods = { -- self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently [1] = { line = "Take no Extra Damage from Critical Strikes if you have taken a Critical Strike Recently", value = { 1 }, }, @@ -102,7 +102,7 @@ return { [2] = { line = "1% increased Movement Speed for each nearby Enemy, up to 8%", value = { 1 }, }, }, }, - [2] = { name = "Khor, Sister of Shadows", + [2] = { name = "Sebbert, Crescent's Point", mods = { -- base_avoid_projectiles_%_chance [1] = { line = "10% chance to avoid Projectiles", value = { 10 }, }, @@ -114,7 +114,7 @@ return { [1] = { line = "6% reduced Elemental Damage taken if you have been Hit Recently", value = { -6 }, }, }, }, - [4] = { name = "The Winged Death", + [4] = { name = "It That Fell", mods = { -- avoid_chained_projectile_%_chance [1] = { line = "Avoid Projectiles that have Chained", value = { 100 }, }, @@ -184,7 +184,7 @@ return { [2] = { line = "50% chance to Reflect Hexes", value = { 50 }, }, }, }, - [2] = { name = "Varhesh, Shimmering Aberration", + [2] = { name = "Tunneltrap", mods = { -- curse_effect_on_self_+% [1] = { line = "30% reduced Effect of Curses on you", value = { -30 }, }, @@ -203,7 +203,7 @@ return { [2] = { line = "You cannot be Poisoned while there are at least 3 Poisons on you", value = { 3 }, }, }, }, - [2] = { name = "Avatar of Undoing", + [2] = { name = "Preethi, Eye-Pecker", mods = { -- chaos_damage_taken_+% [1] = { line = "5% reduced Chaos Damage taken", value = { -5 }, }, @@ -246,7 +246,7 @@ return { [2] = { line = "Moving while Bleeding doesn't cause you to take extra Damage", value = { 1 }, }, }, }, - [2] = { name = "The Hollow Lady", + [2] = { name = "Drek, Apex Hunter", mods = { -- cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks [1] = { line = "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", value = { 1 }, }, @@ -263,7 +263,7 @@ return { [1] = { line = "60% reduced Effect of Shock on you", value = { -60 }, }, }, }, - [2] = { name = "The Blacksmith", + [2] = { name = "Stalker of the Endless Dunes", mods = { -- cannot_be_blinded [1] = { line = "Cannot be Blinded", value = { 1 }, }, diff --git a/src/Data/TattooPassives.lua b/src/Data/TattooPassives.lua index 4d3679a6cc..d88f199f8c 100644 --- a/src/Data/TattooPassives.lua +++ b/src/Data/TattooPassives.lua @@ -419,7 +419,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9539, + ["statOrder"] = 9729, }, }, ["not"] = false, @@ -609,7 +609,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9525, + ["statOrder"] = 9715, }, }, ["not"] = false, @@ -638,7 +638,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9487, + ["statOrder"] = 9677, }, }, ["not"] = false, @@ -667,7 +667,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9517, + ["statOrder"] = 9707, }, }, ["not"] = false, @@ -695,7 +695,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9546, + ["statOrder"] = 9736, }, }, ["not"] = false, @@ -777,7 +777,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9483, + ["statOrder"] = 9673, }, }, ["not"] = false, @@ -807,7 +807,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9482, + ["statOrder"] = 9672, }, }, ["not"] = false, @@ -883,7 +883,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9480, + ["statOrder"] = 9670, }, }, ["not"] = false, @@ -1144,7 +1144,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9527, + ["statOrder"] = 9717, }, }, ["not"] = false, @@ -1197,7 +1197,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9554, + ["statOrder"] = 9744, }, }, ["not"] = false, @@ -1226,7 +1226,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9486, + ["statOrder"] = 9676, }, }, ["not"] = false, @@ -1253,7 +1253,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9530, + ["statOrder"] = 9720, }, }, ["not"] = false, @@ -1335,7 +1335,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9485, + ["statOrder"] = 9675, }, }, ["not"] = false, @@ -1363,7 +1363,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9488, + ["statOrder"] = 9678, }, }, ["not"] = false, @@ -1390,7 +1390,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9493, + ["statOrder"] = 9683, }, }, ["not"] = false, @@ -1539,7 +1539,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9533, + ["statOrder"] = 9723, }, }, ["not"] = false, @@ -1639,7 +1639,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9478, + ["statOrder"] = 9668, }, }, ["not"] = false, @@ -1801,7 +1801,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9524, + ["statOrder"] = 9714, }, }, ["not"] = false, @@ -1964,7 +1964,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9547, + ["statOrder"] = 9737, }, }, ["not"] = false, @@ -2146,7 +2146,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9562, + ["statOrder"] = 9752, }, }, ["not"] = false, @@ -2173,7 +2173,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9531, + ["statOrder"] = 9721, }, }, ["not"] = false, @@ -2202,7 +2202,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 1993, + ["statOrder"] = 2029, }, }, ["not"] = false, @@ -2229,7 +2229,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9481, + ["statOrder"] = 9671, }, }, ["not"] = false, @@ -2256,7 +2256,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9561, + ["statOrder"] = 9751, }, }, ["not"] = false, @@ -2285,7 +2285,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9542, + ["statOrder"] = 9732, }, }, ["not"] = false, @@ -2385,7 +2385,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9534, + ["statOrder"] = 9724, }, }, ["not"] = false, @@ -2414,7 +2414,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9471, + ["statOrder"] = 9661, }, }, ["not"] = false, @@ -2539,7 +2539,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9468, + ["statOrder"] = 9658, }, }, ["not"] = false, @@ -2668,7 +2668,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9535, + ["statOrder"] = 9725, }, }, ["not"] = false, @@ -2696,7 +2696,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9494, + ["statOrder"] = 9684, }, }, ["not"] = false, @@ -2751,7 +2751,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9529, + ["statOrder"] = 9719, }, }, ["not"] = false, @@ -2810,7 +2810,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9551, + ["statOrder"] = 9741, }, }, ["not"] = false, @@ -2862,7 +2862,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9560, + ["statOrder"] = 9750, }, }, ["not"] = false, @@ -2965,7 +2965,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9479, + ["statOrder"] = 9669, }, }, ["not"] = false, @@ -3045,7 +3045,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9536, + ["statOrder"] = 9726, }, }, ["not"] = false, @@ -3097,7 +3097,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 9510, + ["statOrder"] = 9700, }, }, ["not"] = false, @@ -3153,7 +3153,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9469, + ["statOrder"] = 9659, }, }, ["not"] = false, @@ -3181,7 +3181,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9470, + ["statOrder"] = 9660, }, }, ["not"] = false, @@ -3342,7 +3342,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9520, + ["statOrder"] = 9710, }, }, ["not"] = false, @@ -3395,7 +3395,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9492, + ["statOrder"] = 9682, }, }, ["not"] = false, @@ -3519,7 +3519,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9558, + ["statOrder"] = 9748, }, }, ["not"] = false, @@ -3548,7 +3548,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9477, + ["statOrder"] = 9667, }, }, ["not"] = false, @@ -3600,7 +3600,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9484, + ["statOrder"] = 9674, }, }, ["not"] = false, diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index 5956e1cd9e..832fe91020 100644 --- a/src/Data/TimelessJewelData/LegionPassives.lua +++ b/src/Data/TimelessJewelData/LegionPassives.lua @@ -195,7 +195,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9523, + ["statOrder"] = 9713, }, }, ["da"] = 0, @@ -236,7 +236,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9527, + ["statOrder"] = 9717, }, }, ["da"] = 0, @@ -318,7 +318,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9521, + ["statOrder"] = 9711, }, }, ["da"] = 0, @@ -357,7 +357,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1169, + ["statOrder"] = 1204, }, }, ["da"] = 0, @@ -396,7 +396,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1178, + ["statOrder"] = 1213, }, }, ["da"] = 0, @@ -435,7 +435,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1189, + ["statOrder"] = 1224, }, }, ["da"] = 0, @@ -474,7 +474,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, }, ["da"] = 0, @@ -513,7 +513,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1197, + ["statOrder"] = 1232, }, }, ["da"] = 0, @@ -552,7 +552,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1777, + ["statOrder"] = 1812, }, }, ["da"] = 0, @@ -591,7 +591,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1013, + ["statOrder"] = 1048, }, }, ["da"] = 0, @@ -630,7 +630,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1038, + ["statOrder"] = 1073, }, }, ["da"] = 0, @@ -669,7 +669,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1836, + ["statOrder"] = 1871, }, }, ["da"] = 0, @@ -708,7 +708,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1797, + ["statOrder"] = 1832, }, }, ["da"] = 0, @@ -747,7 +747,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1025, + ["statOrder"] = 1060, }, }, ["da"] = 0, @@ -786,7 +786,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1686, + ["statOrder"] = 1721, }, }, ["da"] = 0, @@ -825,7 +825,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1602, + ["statOrder"] = 1637, }, }, ["da"] = 0, @@ -864,7 +864,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 9489, + ["statOrder"] = 9679, }, }, ["da"] = 0, @@ -903,7 +903,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 9490, + ["statOrder"] = 9680, }, }, ["da"] = 0, @@ -942,7 +942,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1221, + ["statOrder"] = 1256, }, }, ["da"] = 0, @@ -981,7 +981,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1256, + ["statOrder"] = 1291, }, }, ["da"] = 0, @@ -1020,7 +1020,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1604, + ["statOrder"] = 1639, }, }, ["da"] = 0, @@ -1059,7 +1059,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1827, + ["statOrder"] = 1862, }, }, ["da"] = 0, @@ -1098,7 +1098,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1830, + ["statOrder"] = 1865, }, }, ["da"] = 0, @@ -1137,7 +1137,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1834, + ["statOrder"] = 1869, }, }, ["da"] = 0, @@ -1176,7 +1176,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1701, + ["statOrder"] = 1736, }, }, ["da"] = 0, @@ -1215,7 +1215,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, }, ["da"] = 0, @@ -1254,7 +1254,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1388, + ["statOrder"] = 1423, }, }, ["da"] = 0, @@ -1293,7 +1293,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 12, - ["statOrder"] = 1392, + ["statOrder"] = 1427, }, }, ["da"] = 0, @@ -1332,7 +1332,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1350, + ["statOrder"] = 1385, }, }, ["da"] = 0, @@ -1371,7 +1371,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1358, + ["statOrder"] = 1393, }, }, ["da"] = 0, @@ -1410,7 +1410,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1369, + ["statOrder"] = 1404, }, }, ["da"] = 0, @@ -1449,7 +1449,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 2249, + ["statOrder"] = 2291, }, }, ["da"] = 0, @@ -1488,7 +1488,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 976, + ["statOrder"] = 1011, }, }, ["da"] = 0, @@ -1527,7 +1527,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1649, + ["statOrder"] = 1684, }, }, ["da"] = 0, @@ -1566,7 +1566,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 962, + ["statOrder"] = 997, }, }, ["da"] = 0, @@ -1605,7 +1605,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 3339, + ["statOrder"] = 3385, }, }, ["da"] = 0, @@ -1644,7 +1644,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 2387, + ["statOrder"] = 2429, }, }, ["da"] = 0, @@ -1683,7 +1683,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1433, + ["statOrder"] = 1468, }, }, ["da"] = 0, @@ -1722,7 +1722,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1439, + ["statOrder"] = 1474, }, }, ["da"] = 0, @@ -1761,7 +1761,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1444, + ["statOrder"] = 1479, }, }, ["da"] = 0, @@ -1800,7 +1800,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 1448, + ["statOrder"] = 1483, }, }, ["da"] = 0, @@ -1841,14 +1841,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 2, - ["statOrder"] = 2763, + ["statOrder"] = 2809, }, ["fire_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1169, + ["statOrder"] = 1204, }, }, ["da"] = 0, @@ -1889,14 +1889,14 @@ return { ["fmt"] = "g", ["index"] = 2, ["min"] = 0.2, - ["statOrder"] = 1477, + ["statOrder"] = 1512, }, ["fire_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1169, + ["statOrder"] = 1204, }, }, ["da"] = 0, @@ -1937,14 +1937,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 1759, + ["statOrder"] = 1794, }, ["fire_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1169, + ["statOrder"] = 1204, }, }, ["da"] = 0, @@ -1985,14 +1985,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1178, + ["statOrder"] = 1213, }, ["base_reduce_enemy_cold_resistance_%"] = { ["max"] = 4, ["fmt"] = "d", ["index"] = 2, ["min"] = 2, - ["statOrder"] = 2764, + ["statOrder"] = 2810, }, }, ["da"] = 0, @@ -2033,14 +2033,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1178, + ["statOrder"] = 1213, }, ["base_life_leech_from_cold_damage_permyriad"] = { ["max"] = 0.2, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.2, - ["statOrder"] = 1482, + ["statOrder"] = 1517, }, }, ["da"] = 0, @@ -2081,14 +2081,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1178, + ["statOrder"] = 1213, }, ["base_physical_damage_%_to_convert_to_cold"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 1761, + ["statOrder"] = 1796, }, }, ["da"] = 0, @@ -2129,14 +2129,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1189, + ["statOrder"] = 1224, }, ["base_reduce_enemy_lightning_resistance_%"] = { ["max"] = 4, ["fmt"] = "d", ["index"] = 2, ["min"] = 2, - ["statOrder"] = 2765, + ["statOrder"] = 2811, }, }, ["da"] = 0, @@ -2177,14 +2177,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1189, + ["statOrder"] = 1224, }, ["base_life_leech_from_lightning_damage_permyriad"] = { ["max"] = 0.2, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.2, - ["statOrder"] = 1486, + ["statOrder"] = 1521, }, }, ["da"] = 0, @@ -2225,14 +2225,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1189, + ["statOrder"] = 1224, }, ["base_physical_damage_%_to_convert_to_lightning"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 1763, + ["statOrder"] = 1798, }, }, ["da"] = 0, @@ -2273,14 +2273,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, ["chance_to_deal_double_damage_%"] = { ["max"] = 4, ["fmt"] = "d", ["index"] = 2, ["min"] = 2, - ["statOrder"] = 5082, + ["statOrder"] = 5135, }, }, ["da"] = 0, @@ -2321,14 +2321,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, ["base_life_leech_from_physical_damage_permyriad"] = { ["max"] = 0.2, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.2, - ["statOrder"] = 1473, + ["statOrder"] = 1508, }, }, ["da"] = 0, @@ -2369,14 +2369,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, ["faster_bleed_%"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 5874, + ["statOrder"] = 5937, }, }, ["da"] = 0, @@ -2417,14 +2417,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 25, - ["statOrder"] = 4162, + ["statOrder"] = 4210, }, ["chaos_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1197, + ["statOrder"] = 1232, }, }, ["da"] = 0, @@ -2465,14 +2465,14 @@ return { ["fmt"] = "g", ["index"] = 2, ["min"] = 0.2, - ["statOrder"] = 1489, + ["statOrder"] = 1524, }, ["chaos_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1197, + ["statOrder"] = 1232, }, }, ["da"] = 0, @@ -2513,14 +2513,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1038, + ["statOrder"] = 1073, }, ["spell_critical_strike_chance_+%"] = { ["max"] = 50, ["fmt"] = "d", ["index"] = 2, ["min"] = 35, - ["statOrder"] = 1268, + ["statOrder"] = 1303, }, }, ["da"] = 0, @@ -2561,14 +2561,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 15, - ["statOrder"] = 1572, + ["statOrder"] = 1607, }, ["minion_damage_+%"] = { ["max"] = 35, ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1777, + ["statOrder"] = 1812, }, }, ["da"] = 0, @@ -2609,14 +2609,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1025, + ["statOrder"] = 1060, }, ["skill_effect_duration_+%"] = { ["max"] = 11, ["fmt"] = "d", ["index"] = 2, ["min"] = 7, - ["statOrder"] = 1701, + ["statOrder"] = 1736, }, }, ["da"] = 0, @@ -2657,14 +2657,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, ["life_regeneration_rate_per_minute_%"] = { ["max"] = 1.2, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.7, - ["statOrder"] = 1748, + ["statOrder"] = 1783, }, }, ["da"] = 0, @@ -2705,14 +2705,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, ["base_life_leech_from_attack_damage_permyriad"] = { ["max"] = 0.4, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.4, - ["statOrder"] = 1471, + ["statOrder"] = 1506, }, }, ["da"] = 0, @@ -2753,14 +2753,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 17, - ["statOrder"] = 1388, + ["statOrder"] = 1423, }, ["mana_regeneration_rate_+%"] = { ["max"] = 25, ["fmt"] = "d", ["index"] = 2, ["min"] = 15, - ["statOrder"] = 1392, + ["statOrder"] = 1427, }, }, ["da"] = 0, @@ -2801,14 +2801,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 1350, + ["statOrder"] = 1385, }, ["base_additional_physical_damage_reduction_%"] = { ["max"] = 4, ["fmt"] = "d", ["index"] = 2, ["min"] = 3, - ["statOrder"] = 2072, + ["statOrder"] = 2108, }, }, ["da"] = 0, @@ -2849,14 +2849,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 5, - ["statOrder"] = 9499, + ["statOrder"] = 9689, }, ["evasion_rating_+%"] = { ["max"] = 40, ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 1358, + ["statOrder"] = 1393, }, }, ["da"] = 0, @@ -2897,14 +2897,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1369, + ["statOrder"] = 1404, }, ["energy_shield_recharge_rate_+%"] = { ["max"] = 15, ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 1373, + ["statOrder"] = 1408, }, }, ["da"] = 0, @@ -2945,14 +2945,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1369, + ["statOrder"] = 1404, }, ["base_energy_shield_leech_from_spell_damage_permyriad"] = { ["max"] = 0.3, ["fmt"] = "g", ["index"] = 2, ["min"] = 0.3, - ["statOrder"] = 1529, + ["statOrder"] = 1564, }, }, ["da"] = 0, @@ -2993,14 +2993,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 2249, + ["statOrder"] = 2291, }, ["life_gained_on_block"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 6, - ["statOrder"] = 1564, + ["statOrder"] = 1599, }, }, ["da"] = 0, @@ -3041,14 +3041,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 976, + ["statOrder"] = 1011, }, ["shield_armour_+%"] = { ["max"] = 30, ["fmt"] = "d", ["index"] = 2, ["min"] = 20, - ["statOrder"] = 1795, + ["statOrder"] = 1830, }, }, ["da"] = 0, @@ -3089,14 +3089,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 8, - ["statOrder"] = 1657, + ["statOrder"] = 1692, }, ["avoid_all_elemental_status_%"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1649, + ["statOrder"] = 1684, }, }, ["da"] = 0, @@ -3137,14 +3137,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 962, + ["statOrder"] = 997, }, ["base_resist_all_elements_%"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 8, - ["statOrder"] = 1427, + ["statOrder"] = 1462, }, }, ["da"] = 0, @@ -3185,14 +3185,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 3339, + ["statOrder"] = 3385, }, ["base_aura_area_of_effect_+%"] = { ["max"] = 20, ["fmt"] = "d", ["index"] = 2, ["min"] = 20, - ["statOrder"] = 2024, + ["statOrder"] = 2060, }, }, ["da"] = 0, @@ -3233,14 +3233,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 2387, + ["statOrder"] = 2429, }, ["curse_skill_effect_duration_+%"] = { ["max"] = 20, ["fmt"] = "d", ["index"] = 2, ["min"] = 20, - ["statOrder"] = 5397, + ["statOrder"] = 5454, }, }, ["da"] = 0, @@ -3281,14 +3281,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 1, - ["statOrder"] = 1431, + ["statOrder"] = 1466, }, ["base_fire_damage_resistance_%"] = { ["max"] = 30, ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1433, + ["statOrder"] = 1468, }, }, ["da"] = 0, @@ -3329,14 +3329,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1439, + ["statOrder"] = 1474, }, ["base_maximum_cold_damage_resistance_%"] = { ["max"] = 1, ["fmt"] = "d", ["index"] = 2, ["min"] = 1, - ["statOrder"] = 1437, + ["statOrder"] = 1472, }, }, ["da"] = 0, @@ -3377,14 +3377,14 @@ return { ["fmt"] = "d", ["index"] = 2, ["min"] = 1, - ["statOrder"] = 1442, + ["statOrder"] = 1477, }, ["base_lightning_damage_resistance_%"] = { ["max"] = 30, ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1444, + ["statOrder"] = 1479, }, }, ["da"] = 0, @@ -3425,14 +3425,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 13, - ["statOrder"] = 1448, + ["statOrder"] = 1483, }, ["base_maximum_chaos_damage_resistance_%"] = { ["max"] = 1, ["fmt"] = "d", ["index"] = 2, ["min"] = 1, - ["statOrder"] = 1447, + ["statOrder"] = 1482, }, }, ["da"] = 0, @@ -3532,7 +3532,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9553, + ["statOrder"] = 9743, }, }, ["da"] = 0, @@ -3573,7 +3573,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9556, + ["statOrder"] = 9746, }, }, ["da"] = 0, @@ -3614,7 +3614,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9531, + ["statOrder"] = 9721, }, }, ["da"] = 0, @@ -3655,7 +3655,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9528, + ["statOrder"] = 9718, }, }, ["da"] = 0, @@ -3696,7 +3696,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9561, + ["statOrder"] = 9751, }, }, ["da"] = 0, @@ -3735,7 +3735,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9541, + ["statOrder"] = 9731, }, }, ["da"] = 0, @@ -3777,7 +3777,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9550, + ["statOrder"] = 9740, }, }, ["da"] = 0, @@ -3818,7 +3818,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9519, + ["statOrder"] = 9709, }, }, ["da"] = 0, @@ -3858,7 +3858,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9539, + ["statOrder"] = 9729, }, }, ["da"] = 0, @@ -3898,7 +3898,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9544, + ["statOrder"] = 9734, }, }, ["da"] = 0, @@ -3938,7 +3938,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9545, + ["statOrder"] = 9735, }, }, ["da"] = 0, @@ -3977,7 +3977,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9538, + ["statOrder"] = 9728, }, }, ["da"] = 0, @@ -4016,7 +4016,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 9454, + ["statOrder"] = 9644, }, }, ["da"] = 0, @@ -4055,7 +4055,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 8421, + ["statOrder"] = 8603, }, }, ["da"] = 0, @@ -4094,7 +4094,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 8420, + ["statOrder"] = 8602, }, }, ["da"] = 0, @@ -4133,7 +4133,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 8422, + ["statOrder"] = 8604, }, }, ["da"] = 0, @@ -4172,7 +4172,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 7313, + ["statOrder"] = 7392, }, }, ["da"] = 0, @@ -4211,7 +4211,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 6034, + ["statOrder"] = 6102, }, }, ["da"] = 0, @@ -4250,7 +4250,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 8137, + ["statOrder"] = 8302, }, }, ["da"] = 0, @@ -4289,7 +4289,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 8142, + ["statOrder"] = 8307, }, }, ["da"] = 0, @@ -4328,7 +4328,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 8139, + ["statOrder"] = 8304, }, }, ["da"] = 0, @@ -4367,7 +4367,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 6457, + ["statOrder"] = 6529, }, }, ["da"] = 0, @@ -4406,7 +4406,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 8429, + ["statOrder"] = 8611, }, }, ["da"] = 0, @@ -4445,7 +4445,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 4255, + ["statOrder"] = 4308, }, }, ["da"] = 0, @@ -4484,7 +4484,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 6499, + ["statOrder"] = 6571, }, }, ["da"] = 0, @@ -4523,7 +4523,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 6497, + ["statOrder"] = 6569, }, }, ["da"] = 0, @@ -4562,7 +4562,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 6501, + ["statOrder"] = 6573, }, }, ["da"] = 0, @@ -4602,7 +4602,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9526, + ["statOrder"] = 9716, }, }, ["da"] = 0, @@ -4643,7 +4643,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9537, + ["statOrder"] = 9727, }, }, ["da"] = 0, @@ -4684,7 +4684,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9554, + ["statOrder"] = 9744, }, }, ["da"] = 0, @@ -4724,7 +4724,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 9555, + ["statOrder"] = 9745, }, }, ["da"] = 0, @@ -4793,7 +4793,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 9489, + ["statOrder"] = 9679, }, }, ["da"] = 0, @@ -4832,7 +4832,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 40, - ["statOrder"] = 9490, + ["statOrder"] = 9680, }, }, ["da"] = 0, @@ -4871,7 +4871,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 6052, + ["statOrder"] = 6120, }, }, ["da"] = 0, @@ -4910,7 +4910,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 8438, + ["statOrder"] = 8620, }, }, ["da"] = 0, @@ -4949,7 +4949,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 2975, + ["statOrder"] = 3021, }, }, ["da"] = 0, @@ -4988,7 +4988,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1639, + ["statOrder"] = 1674, }, }, ["da"] = 0, @@ -5027,7 +5027,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1365, + ["statOrder"] = 1400, }, }, ["da"] = 0, @@ -5066,7 +5066,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 3064, + ["statOrder"] = 3110, }, }, ["da"] = 0, @@ -5105,7 +5105,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 1636, + ["statOrder"] = 1671, }, }, ["da"] = 0, @@ -5144,7 +5144,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 5788, + ["statOrder"] = 5851, }, }, ["da"] = 0, @@ -5183,7 +5183,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 5459, + ["statOrder"] = 5516, }, }, ["da"] = 0, @@ -5222,7 +5222,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 9506, + ["statOrder"] = 9696, }, }, ["da"] = 0, @@ -5261,7 +5261,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1650, + ["statOrder"] = 1685, }, }, ["da"] = 0, @@ -5300,7 +5300,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 9514, + ["statOrder"] = 9704, }, }, ["da"] = 0, @@ -5339,7 +5339,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1654, + ["statOrder"] = 1689, }, }, ["da"] = 0, @@ -5378,7 +5378,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 2249, + ["statOrder"] = 2291, }, }, ["da"] = 0, @@ -5417,7 +5417,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 976, + ["statOrder"] = 1011, }, }, ["da"] = 0, @@ -5456,7 +5456,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1649, + ["statOrder"] = 1684, }, }, ["da"] = 0, @@ -5495,7 +5495,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 12, - ["statOrder"] = 962, + ["statOrder"] = 997, }, }, ["da"] = 0, @@ -5534,7 +5534,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 12, - ["statOrder"] = 3339, + ["statOrder"] = 3385, }, }, ["da"] = 0, @@ -5573,7 +5573,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1777, + ["statOrder"] = 1812, }, }, ["da"] = 0, @@ -5612,7 +5612,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1572, + ["statOrder"] = 1607, }, }, ["da"] = 0, @@ -5651,7 +5651,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1038, + ["statOrder"] = 1073, }, }, ["da"] = 0, @@ -5690,7 +5690,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1268, + ["statOrder"] = 1303, }, }, ["da"] = 0, @@ -5729,7 +5729,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 5904, + ["statOrder"] = 5967, }, }, ["da"] = 0, @@ -5768,7 +5768,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 5232, + ["statOrder"] = 5286, }, }, ["da"] = 0, @@ -5807,7 +5807,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 6659, + ["statOrder"] = 6732, }, }, ["da"] = 0, @@ -5846,7 +5846,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, }, ["da"] = 0, @@ -5885,7 +5885,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1783, + ["statOrder"] = 1818, }, }, ["da"] = 0, @@ -5926,14 +5926,14 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 50, - ["statOrder"] = 2945, + ["statOrder"] = 2991, }, ["faster_bleed_%"] = { ["max"] = 10, ["fmt"] = "d", ["index"] = 2, ["min"] = 10, - ["statOrder"] = 5874, + ["statOrder"] = 5937, }, }, ["da"] = 0, @@ -5972,7 +5972,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1798, + ["statOrder"] = 1833, }, }, ["da"] = 0, @@ -6011,7 +6011,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 1221, + ["statOrder"] = 1256, }, }, ["da"] = 0, @@ -6050,7 +6050,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 1256, + ["statOrder"] = 1291, }, }, ["da"] = 0, @@ -6089,7 +6089,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 40, - ["statOrder"] = 1404, + ["statOrder"] = 1439, }, }, ["da"] = 0, @@ -6128,7 +6128,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1350, + ["statOrder"] = 1385, }, }, ["da"] = 0, @@ -6167,7 +6167,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 80, - ["statOrder"] = 1358, + ["statOrder"] = 1393, }, }, ["da"] = 0, @@ -6206,7 +6206,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 50, - ["statOrder"] = 1433, + ["statOrder"] = 1468, }, }, ["da"] = 0, @@ -6245,7 +6245,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 50, - ["statOrder"] = 1439, + ["statOrder"] = 1474, }, }, ["da"] = 0, @@ -6284,7 +6284,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 50, - ["statOrder"] = 1444, + ["statOrder"] = 1479, }, }, ["da"] = 0, @@ -6323,7 +6323,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 37, - ["statOrder"] = 1448, + ["statOrder"] = 1483, }, }, ["da"] = 0, @@ -6362,7 +6362,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, }, ["da"] = 0, @@ -6401,7 +6401,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 1388, + ["statOrder"] = 1423, }, }, ["da"] = 0, @@ -6440,7 +6440,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 50, - ["statOrder"] = 1392, + ["statOrder"] = 1427, }, }, ["da"] = 0, @@ -6479,7 +6479,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 1244, + ["statOrder"] = 1279, }, }, ["da"] = 0, @@ -6518,7 +6518,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1988, + ["statOrder"] = 2024, }, }, ["da"] = 0, @@ -6549,7 +6549,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1169, + ["statOrder"] = 1204, }, }, }, @@ -6568,7 +6568,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1178, + ["statOrder"] = 1213, }, }, }, @@ -6587,7 +6587,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1189, + ["statOrder"] = 1224, }, }, }, @@ -6606,7 +6606,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, }, }, @@ -6625,7 +6625,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1197, + ["statOrder"] = 1232, }, }, }, @@ -6644,7 +6644,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 1777, + ["statOrder"] = 1812, }, }, }, @@ -6663,7 +6663,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1013, + ["statOrder"] = 1048, }, }, }, @@ -6682,7 +6682,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1038, + ["statOrder"] = 1073, }, }, }, @@ -6701,7 +6701,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1836, + ["statOrder"] = 1871, }, }, }, @@ -6720,7 +6720,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1797, + ["statOrder"] = 1832, }, }, }, @@ -6739,7 +6739,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1025, + ["statOrder"] = 1060, }, }, }, @@ -6758,7 +6758,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1686, + ["statOrder"] = 1721, }, }, }, @@ -6777,7 +6777,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1602, + ["statOrder"] = 1637, }, }, }, @@ -6796,7 +6796,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 9489, + ["statOrder"] = 9679, }, }, }, @@ -6815,7 +6815,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 9490, + ["statOrder"] = 9680, }, }, }, @@ -6834,7 +6834,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1221, + ["statOrder"] = 1256, }, }, }, @@ -6853,7 +6853,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1256, + ["statOrder"] = 1291, }, }, }, @@ -6872,7 +6872,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1604, + ["statOrder"] = 1639, }, }, }, @@ -6891,7 +6891,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1827, + ["statOrder"] = 1862, }, }, }, @@ -6910,7 +6910,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1830, + ["statOrder"] = 1865, }, }, }, @@ -6929,7 +6929,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1834, + ["statOrder"] = 1869, }, }, }, @@ -6948,7 +6948,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1701, + ["statOrder"] = 1736, }, }, }, @@ -6967,7 +6967,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, }, }, @@ -6986,7 +6986,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1388, + ["statOrder"] = 1423, }, }, }, @@ -7005,7 +7005,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 12, - ["statOrder"] = 1392, + ["statOrder"] = 1427, }, }, }, @@ -7024,7 +7024,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1350, + ["statOrder"] = 1385, }, }, }, @@ -7043,7 +7043,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 7, - ["statOrder"] = 1358, + ["statOrder"] = 1393, }, }, }, @@ -7062,7 +7062,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1369, + ["statOrder"] = 1404, }, }, }, @@ -7081,7 +7081,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 2249, + ["statOrder"] = 2291, }, }, }, @@ -7100,7 +7100,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 976, + ["statOrder"] = 1011, }, }, }, @@ -7119,7 +7119,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 3, - ["statOrder"] = 1649, + ["statOrder"] = 1684, }, }, }, @@ -7138,7 +7138,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 962, + ["statOrder"] = 997, }, }, }, @@ -7157,7 +7157,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 3339, + ["statOrder"] = 3385, }, }, }, @@ -7176,7 +7176,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 2387, + ["statOrder"] = 2429, }, }, }, @@ -7195,7 +7195,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1433, + ["statOrder"] = 1468, }, }, }, @@ -7214,7 +7214,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1439, + ["statOrder"] = 1474, }, }, }, @@ -7233,7 +7233,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 9, - ["statOrder"] = 1444, + ["statOrder"] = 1479, }, }, }, @@ -7252,7 +7252,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 6, - ["statOrder"] = 1448, + ["statOrder"] = 1483, }, }, }, @@ -7271,7 +7271,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 9455, + ["statOrder"] = 9645, }, }, }, @@ -7290,7 +7290,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 9455, + ["statOrder"] = 9645, }, }, }, @@ -7309,7 +7309,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 9455, + ["statOrder"] = 9645, }, }, }, @@ -7328,7 +7328,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 9456, + ["statOrder"] = 9646, }, }, }, @@ -7347,7 +7347,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1350, + ["statOrder"] = 1385, }, }, }, @@ -7366,7 +7366,7 @@ return { ["fmt"] = "g", ["index"] = 1, ["min"] = 0.4, - ["statOrder"] = 1471, + ["statOrder"] = 1506, }, }, }, @@ -7385,7 +7385,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 5082, + ["statOrder"] = 5135, }, }, }, @@ -7404,7 +7404,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, }, }, @@ -7423,7 +7423,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 4617, + ["statOrder"] = 4676, }, }, }, @@ -7442,7 +7442,7 @@ return { ["fmt"] = "g", ["index"] = 1, ["min"] = 1, - ["statOrder"] = 1748, + ["statOrder"] = 1783, }, }, }, @@ -7461,7 +7461,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1433, + ["statOrder"] = 1468, }, }, }, @@ -7480,7 +7480,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1048, + ["statOrder"] = 1083, }, }, }, @@ -7499,7 +7499,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1321, + ["statOrder"] = 1356, }, }, }, @@ -7518,7 +7518,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 30, - ["statOrder"] = 1289, + ["statOrder"] = 1324, }, }, }, @@ -7537,7 +7537,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1683, + ["statOrder"] = 1718, }, }, }, @@ -7556,7 +7556,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1008, + ["statOrder"] = 1043, }, }, }, @@ -7575,7 +7575,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 1311, + ["statOrder"] = 1346, }, }, }, @@ -7594,7 +7594,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 9513, + ["statOrder"] = 9703, }, }, }, @@ -7613,7 +7613,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 9227, + ["statOrder"] = 9415, }, }, }, @@ -7632,7 +7632,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 12, - ["statOrder"] = 2369, + ["statOrder"] = 2411, }, }, }, @@ -7651,7 +7651,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1669, + ["statOrder"] = 1704, }, }, }, @@ -7670,7 +7670,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 2355, + ["statOrder"] = 2397, }, }, }, @@ -7689,7 +7689,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1326, + ["statOrder"] = 1361, }, }, }, @@ -7708,7 +7708,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 1736, + ["statOrder"] = 1771, }, }, }, @@ -7727,7 +7727,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 2238, + ["statOrder"] = 2280, }, }, }, @@ -7746,7 +7746,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 2414, + ["statOrder"] = 2460, }, }, }, @@ -7765,7 +7765,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 5135, + ["statOrder"] = 5188, }, }, }, @@ -7784,7 +7784,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 2, - ["statOrder"] = 9457, + ["statOrder"] = 9647, }, }, }, @@ -7803,7 +7803,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 9457, + ["statOrder"] = 9647, }, }, }, @@ -7822,7 +7822,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 9457, + ["statOrder"] = 9647, }, }, }, @@ -7841,7 +7841,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 9458, + ["statOrder"] = 9648, }, }, }, @@ -7860,7 +7860,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1358, + ["statOrder"] = 1393, }, }, }, @@ -7879,7 +7879,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1984, + ["statOrder"] = 2020, }, }, }, @@ -7898,7 +7898,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 1848, + ["statOrder"] = 1883, }, }, }, @@ -7917,7 +7917,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 4, - ["statOrder"] = 1379, + ["statOrder"] = 1414, }, }, }, @@ -7936,7 +7936,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 9499, + ["statOrder"] = 9689, }, }, }, @@ -7955,7 +7955,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 1604, + ["statOrder"] = 1639, }, }, }, @@ -7974,7 +7974,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1439, + ["statOrder"] = 1474, }, }, }, @@ -7993,7 +7993,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1797, + ["statOrder"] = 1832, }, }, }, @@ -8012,7 +8012,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1657, + ["statOrder"] = 1692, }, }, }, @@ -8031,7 +8031,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 9489, + ["statOrder"] = 9679, }, }, }, @@ -8050,7 +8050,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 2957, + ["statOrder"] = 3003, }, }, }, @@ -8069,7 +8069,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1777, + ["statOrder"] = 1812, }, }, }, @@ -8088,7 +8088,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 1244, + ["statOrder"] = 1279, }, }, }, @@ -8107,7 +8107,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 20, - ["statOrder"] = 1782, + ["statOrder"] = 1817, }, }, }, @@ -8126,7 +8126,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 3339, + ["statOrder"] = 3385, }, }, }, @@ -8145,7 +8145,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 15, - ["statOrder"] = 1575, + ["statOrder"] = 1610, }, }, }, @@ -8164,7 +8164,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 1667, + ["statOrder"] = 1702, }, }, }, @@ -8183,7 +8183,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 5875, + ["statOrder"] = 5938, }, }, }, @@ -8202,7 +8202,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 10, - ["statOrder"] = 8316, + ["statOrder"] = 8490, }, }, }, @@ -8221,7 +8221,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 1737, + ["statOrder"] = 1772, }, }, }, @@ -8240,7 +8240,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 25, - ["statOrder"] = 6029, + ["statOrder"] = 6097, }, }, }, @@ -8259,7 +8259,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 2416, + ["statOrder"] = 2462, }, }, }, @@ -8278,7 +8278,7 @@ return { ["fmt"] = "g", ["index"] = 1, ["min"] = 8, - ["statOrder"] = 2428, + ["statOrder"] = 2474, }, }, }, @@ -8297,7 +8297,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 9454, + ["statOrder"] = 9644, }, }, }, @@ -8316,7 +8316,7 @@ return { ["fmt"] = "d", ["index"] = 1, ["min"] = 5, - ["statOrder"] = 9454, + ["statOrder"] = 9644, }, }, }, From 3e38df5444d130fabb80a63907ea9eef2e4b4f31 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Mon, 11 Dec 2023 08:56:18 -0600 Subject: [PATCH 19/31] Fix pathing and mastery nodes (#6989) --- src/Classes/PassiveSpec.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index 772cc4b5c6..abd8b167d9 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -264,6 +264,9 @@ function PassiveSpecClass:ImportFromNodeList(classId, ascendClassId, secondaryAs self.allocNodes[id] = node end end + + -- Rebuild all the node paths and dependencies + self:BuildAllDependsAndPaths() end function PassiveSpecClass:AllocateDecodedNodes(nodes, isCluster, endian) From dfdf799d63bb2972deb5415c2525b17659518417 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 02:03:49 +1100 Subject: [PATCH 20/31] Release 2.36.1 (#6996) * Prepare release 2.36.1 * Changelogs --------- Co-authored-by: LocalIdentity Co-authored-by: LocalIdentity --- CHANGELOG.md | 15 +++++++++++++++ changelog.txt | 9 +++++++++ manifest.xml | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc9855b3c..e95aefb598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [v2.36.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.36.1) (2023/12/11) + +[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.36.0...v2.36.1) + + + +## What's Changed +### Fixed Crashes +- Fix Crash when opening Timeless Jewel search [\#6995](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6995) ([LocalIdentity](https://github.com/LocalIdentity)) + +### Fixed Bugs +- Fix crash when hovering over Masteries [\#6989](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6989) ([Wires77](https://github.com/Wires77)) +- Fix negative bypass being ignored [\#6992](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/6992) ([mortentc](https://github.com/mortentc)) + + ## [v2.36.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.36.0) (2023/12/11) [Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.35.5...v2.36.0) diff --git a/changelog.txt b/changelog.txt index e7fb1c5e02..f1742b78c4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,12 @@ +VERSION[2.36.1][2023/12/11] + +--- Fixed Crashes --- +* Fix Crash when opening Timeless Jewel search (LocalIdentity) + +--- Fixed Bugs --- +* Fix crash when hovering over Masteries (Wires77) +* Fix negative bypass being ignored (mortentc) + VERSION[2.36.0][2023/12/11] --- New to Path of Building --- diff --git a/manifest.xml b/manifest.xml index d7606a17c4..926c61417e 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,6 +1,6 @@ - + From 2b85051d785c2aa8359051289094f9ede4a497d0 Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Tue, 12 Dec 2023 02:06:14 +1100 Subject: [PATCH 21/31] Release 2.36.1 --- Fixed Crashes --- * Fix Crash when opening Timeless Jewel search (LocalIdentity) --- Fixed Bugs --- * Fix crash when hovering over Masteries (Wires77) * Fix negative bypass being ignored (mortentc) --- manifest.xml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/manifest.xml b/manifest.xml index 926c61417e..14808bba2e 100644 --- a/manifest.xml +++ b/manifest.xml @@ -5,7 +5,7 @@ - + @@ -62,7 +62,7 @@ - + @@ -89,7 +89,7 @@ - + @@ -103,7 +103,7 @@ - + @@ -114,21 +114,21 @@ - + - + - + - + @@ -137,10 +137,10 @@ - + - + @@ -176,14 +176,14 @@ - + - + @@ -220,7 +220,7 @@ - + From 62bc63789cfb4f34fbfbcf6527a640481603e521 Mon Sep 17 00:00:00 2001 From: Matt Headley Date: Tue, 12 Dec 2023 03:54:30 -0500 Subject: [PATCH 22/31] Change Manastorm config option to not overrun options box (#7008) --- src/Modules/ConfigOptions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index ac1d7cb392..9abb562825 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -1414,7 +1414,7 @@ Huge sets the radius to 11. modList:NewMod("Condition:HaveAvatarOfFire", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) modList:NewMod("Keystone", "LIST", "Avatar of Fire", "Config") end }, - { var = "conditionHaveManaStorm", type = "check", label = "Do you have Manastorm's ^xADAA47Lightning ^7Buff?", ifFlag = "Condition:HaveManaStorm", tooltip = "This option enables Manastorm's ^xADAA47Lightning ^7Damage Buff.\n(When you cast a Spell, Sacrifice all ^x7070FFMana ^7to gain Added Maximum ^xADAA47Lightning ^7Damage\nequal to 25% of Sacrificed ^x7070FFMana ^7for 4 seconds)", apply = function(val, modList, enemyModList) + { var = "conditionHaveManaStorm", type = "check", label = "Do you have Manastorm's Buff?", ifFlag = "Condition:HaveManaStorm", tooltip = "This option enables Manastorm's ^xADAA47Lightning ^7Damage Buff.\n(When you cast a Spell, Sacrifice all ^x7070FFMana ^7to gain Added Maximum ^xADAA47Lightning ^7Damage\nequal to 25% of Sacrificed ^x7070FFMana ^7for 4 seconds)", apply = function(val, modList, enemyModList) modList:NewMod("Condition:SacrificeManaForLightning", "FLAG", true, "Config", { type = "Condition", var = "Combat" }) end }, { var = "GamblesprintMovementSpeed", type = "list", label = "Gamblesprint Movement Speed", defaultIndex=5, list={{val=-40,label="-40%"},{val=-20,label="-20%"},{val=0,label="0%"},{val=20,label="20%"},{val=30,label="30%"},{val=40,label="40%"},{val=60,label="60%"},{val=80,label="80%"},{val=100,label="100%"}}, ifFlag = "Condition:HaveGamblesprint", tooltip = "This option sets the Movement Speed from Gamblesprint boots.", apply = function(val, modList, enemyModList) From 00e718a982ad9f4cc9a28169f1c7457fa9377cbb Mon Sep 17 00:00:00 2001 From: Regisle <49933620+Regisle@users.noreply.github.com> Date: Wed, 13 Dec 2023 06:56:27 +1030 Subject: [PATCH 23/31] Fix Ascendant nodes counting towards allocated passive skill total (#7002) --- src/Classes/PassiveSpec.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index abd8b167d9..19d7d43007 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -697,11 +697,13 @@ function PassiveSpecClass:CountAllocNodes() local used, ascUsed, secondaryAscUsed, sockets = 0, 0, 0, 0 for _, node in pairs(self.allocNodes) do if node.type ~= "ClassStart" and node.type ~= "AscendClassStart" then - if node.ascendancyName and not node.isMultipleChoiceOption then - if self.tree.secondaryAscendNameMap and self.tree.secondaryAscendNameMap[node.ascendancyName] then - secondaryAscUsed = secondaryAscUsed + 1 - else - ascUsed = ascUsed + 1 + if node.ascendancyName then + if not node.isMultipleChoiceOption then + if self.tree.secondaryAscendNameMap and self.tree.secondaryAscendNameMap[node.ascendancyName] then + secondaryAscUsed = secondaryAscUsed + 1 + else + ascUsed = ascUsed + 1 + end end else used = used + 1 From ca74ee55dead12c18e0dd7fc3a59ec186d434955 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:27:12 +1100 Subject: [PATCH 24/31] Fix Pyroclast Mine Aura Effect scaling Maximum Added Flat Damage (#7005) The max flat damage stat did not have the unscalable flag added to it Had a look and applied it to some other skills that also used a similar limit variable although those would only scale with buff effect so was unlikely to become an issue Co-authored-by: LocalIdentity --- src/Data/Skills/act_int.lua | 8 ++++---- src/Data/Skills/other.lua | 6 +++--- src/Export/Skills/act_int.txt | 8 ++++---- src/Export/Skills/other.txt | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index 374bdb2ece..15b2528025 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -4751,7 +4751,7 @@ skills["FrostGlobe"] = { mod("FrostGlobeHealth", "BASE", nil, 0, 0, { type = "Multiplier", var = "FrostShieldStage", limitVar = "FrostShieldMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Frost Shield" }), }, ["frost_globe_max_stages"] = { - mod("Multiplier:FrostShieldMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:FrostShieldMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, }, baseFlags = { @@ -8000,10 +8000,10 @@ skills["MortarBarrageMine"] = { mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), }, ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), + mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), }, ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), + mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), }, }, baseFlags = { @@ -8667,7 +8667,7 @@ skills["CircleOfPower"] = { mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", actor = "enemy", var = "SigilOfPowerStage", thresholdVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Debuff", effectName = "Sigil of Power" }), }, ["circle_of_power_max_stages"] = { - mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, ["quality_display_circle_of_power_is_gem"] = { -- Display Only diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index e9b8c08a33..5859683be7 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -175,8 +175,8 @@ skills["Barkskin"] = { mod("EvadeChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "MissingBarkskinStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), }, ["max_barkskin_stacks"] = { - mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, }, baseFlags = { @@ -3395,7 +3395,7 @@ skills["VampiricIcon"] = { fromItem = true, statMap = { ["vampiric_icon_max_bleeding_beam_targets"] = { - mod("Multiplier:ThirstForBloodMaxTargets", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) + mod("Multiplier:ThirstForBloodMaxTargets", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, ["skill_life_regeneration_per_minute_per_affected_enemy"] = { mod("LifeRegen", "BASE", nil, 0, 0, { type = "Multiplier", var = "NearbyBleedingEnemies", limitVar = "ThirstForBloodMaxTargets" }, { type = "GlobalEffect", effectType = "Buff" }), diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index 170f1b65ef..8d921aa0eb 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -1098,7 +1098,7 @@ local skills, mod, flag, skill = ... mod("FrostGlobeHealth", "BASE", nil, 0, 0, { type = "Multiplier", var = "FrostShieldStage", limitVar = "FrostShieldMaxStages" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Frost Shield" }), }, ["frost_globe_max_stages"] = { - mod("Multiplier:FrostShieldMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:FrostShieldMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, }, #baseMod skill("radius", 22) @@ -1837,10 +1837,10 @@ local skills, mod, flag, skill = ... mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), }, ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), + mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), }, ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", effectName = "Pyroclast Mine Limit" }), + mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), }, }, #baseMod skill("radius", 20) @@ -2007,7 +2007,7 @@ local skills, mod, flag, skill = ... mod("Damage", "MORE", nil, 0, 0, { type = "MultiplierThreshold", actor = "enemy", var = "SigilOfPowerStage", thresholdVar = "SigilOfPowerMaxStages" }, { type = "GlobalEffect", effectType = "Debuff", effectName = "Sigil of Power" }), }, ["circle_of_power_max_stages"] = { - mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:SigilOfPowerMaxStages", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, ["quality_display_circle_of_power_is_gem"] = { -- Display Only diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 6e48958b63..e956d82a05 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -69,8 +69,8 @@ local skills, mod, flag, skill = ... mod("EvadeChance", "MORE", nil, 0, 0, { type = "Multiplier", var = "MissingBarkskinStacks" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Barkskin" }), }, ["max_barkskin_stacks"] = { - mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("Multiplier:BarkskinMaxStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), + mod("Multiplier:MissingBarkskinStacks", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }), }, }, #mods @@ -954,7 +954,7 @@ local skills, mod, flag, skill = ... fromItem = true, statMap = { ["vampiric_icon_max_bleeding_beam_targets"] = { - mod("Multiplier:ThirstForBloodMaxTargets", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }) + mod("Multiplier:ThirstForBloodMaxTargets", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }) }, ["skill_life_regeneration_per_minute_per_affected_enemy"] = { mod("LifeRegen", "BASE", nil, 0, 0, { type = "Multiplier", var = "NearbyBleedingEnemies", limitVar = "ThirstForBloodMaxTargets" }, { type = "GlobalEffect", effectType = "Buff" }), From b00f6fa4a3a85d32d58db2a62a851558148b394d Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:27:21 +1100 Subject: [PATCH 25/31] Fix Herald of Agony quality not working (#7017) We had the Max Virulence stacks set in CalcSetup instead of the gem Co-authored-by: LocalIdentity --- src/Data/Skills/act_dex.lua | 3 +++ src/Export/Skills/act_dex.txt | 3 +++ src/Modules/CalcSetup.lua | 1 - 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index a53a04736b..e9454bb655 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -5152,6 +5152,9 @@ skills["HeraldOfAgony"] = { ["scorpion_minion_maximum_added_physical_damage"] = { mod("MinionModifier", "LIST", { type = "HeraldOfAgonySpiderPlated", mod = mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "VirulenceStack", limitVar = "VirulenceStacksMax", limitActor = "parent" })}) }, + ["maximum_virulence_stacks"] = { + mod("Multiplier:VirulenceStacksMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Virulence Stack Limit", unscalable = true }), + }, ["quality_display_herald_of_agony_is_gem"] = { -- Display only }, diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index a8dc5e94fa..245b474171 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -1175,6 +1175,9 @@ local skills, mod, flag, skill = ... ["scorpion_minion_maximum_added_physical_damage"] = { mod("MinionModifier", "LIST", { type = "HeraldOfAgonySpiderPlated", mod = mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", actor = "parent", var = "VirulenceStack", limitVar = "VirulenceStacksMax", limitActor = "parent" })}) }, + ["maximum_virulence_stacks"] = { + mod("Multiplier:VirulenceStacksMax", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Aura", effectName = "Virulence Stack Limit", unscalable = true }), + }, ["quality_display_herald_of_agony_is_gem"] = { -- Display only }, diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index dbbb71f5a4..8dcbca74b3 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -42,7 +42,6 @@ function calcs.initModDB(env, modDB) modDB:NewMod("MaxLifeLeechRate", "BASE", 20, "Base") modDB:NewMod("MaxManaLeechRate", "BASE", 20, "Base") modDB:NewMod("ImpaleStacksMax", "BASE", 5, "Base") - modDB:NewMod("Multiplier:VirulenceStacksMax", "BASE", 40, "Base") modDB:NewMod("BleedStacksMax", "BASE", 1, "Base") modDB:NewMod("MaxEnergyShieldLeechRate", "BASE", 10, "Base") modDB:NewMod("MaxLifeLeechInstance", "BASE", 10, "Base") From e80f29afc41c53c998b5da8d047697c6674bf7cb Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:27:27 +1100 Subject: [PATCH 26/31] Fix projectile count being 1 higher on all skills (#7006) * Fix projectile count being 1 higher on all skills GGG changed the stat on all their gems from `number_of_additional_projectiles` to `base_number_of_projectiles`so it now included the 1 base projectile all the skills inherently have * Fix other mods --------- Co-authored-by: LocalIdentity --- src/Data/SkillStatMap.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index d2b7aa2b1a..1a6f2d2496 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -1199,12 +1199,17 @@ return { }, ["base_number_of_arrows"] = { mod("ProjectileCount", "BASE", nil), + base = -1, }, -["number_of_additional_projectiles"] = { +["number_of_additional_arrows"] = { mod("ProjectileCount", "BASE", nil), }, ["base_number_of_projectiles"] = { mod("ProjectileCount", "BASE", nil), + base = -1, +}, +["number_of_additional_projectiles"] = { + mod("ProjectileCount", "BASE", nil), }, ["projectile_damage_+%_per_remaining_chain"] = { mod("Damage", "INC", nil, ModFlag.Projectile, 0, { type = "PerStat", stat = "ChainRemaining" }), From 7d254b009b92aad9e08201e8b93be35765d96215 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:27:42 +1100 Subject: [PATCH 27/31] Update Query mods (#7011) Co-authored-by: LocalIdentity --- src/Data/QueryMods.lua | 30056 ++++++++++++++++++++------------------- 1 file changed, 15105 insertions(+), 14951 deletions(-) diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index dade68163a..d13eeb028c 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -3,7 +3,145 @@ return { ["Corrupted"] = { - ["1000_IncreasedDexterityStrengthCorrupted"] = { + ["1006_BlockingBlocksSpells"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1011_SpellBlockPercentage"] = { + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Amulet"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", + }, + }, + ["1012_BlockWhileDualWielding"] = { + ["1HAxe"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HMace"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["2HAxe"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Wand"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["type"] = "implicit", + }, + }, + ["1034_IncreasedDexterityStrengthCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["1034_IncreasedStrengthIntelligenceCorrupted"] = { + ["Amulet"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "implicit", + }, + }, + ["1035_IncreasedDexterityStrengthCorrupted"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -25,7 +163,7 @@ return { ["type"] = "implicit", }, }, - ["1000_IncreasedIntelligenceDexterityCorrupted"] = { + ["1035_IncreasedIntelligenceDexterityCorrupted"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -47,7 +185,7 @@ return { ["type"] = "implicit", }, }, - ["1001_IncreasedIntelligenceDexterityCorrupted"] = { + ["1036_IncreasedIntelligenceDexterityCorrupted"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -69,7 +207,7 @@ return { ["type"] = "implicit", }, }, - ["1001_IncreasedStrengthIntelligenceCorrupted"] = { + ["1036_IncreasedStrengthIntelligenceCorrupted"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -91,7 +229,7 @@ return { ["type"] = "implicit", }, }, - ["1006_IncreasedDamage"] = { + ["1041_IncreasedDamage"] = { ["AbyssJewel"] = { ["max"] = 5, ["min"] = 4, @@ -117,7 +255,7 @@ return { ["type"] = "implicit", }, }, - ["1025_DamageOverTime"] = { + ["1060_DamageOverTime"] = { ["1HWeapon"] = { ["max"] = 60, ["min"] = 50, @@ -135,7 +273,7 @@ return { ["type"] = "implicit", }, }, - ["1038_SpellDamage"] = { + ["1073_SpellDamage"] = { ["1HWeapon"] = { ["max"] = 60, ["min"] = 50, @@ -153,7 +291,7 @@ return { ["type"] = "implicit", }, }, - ["1045_PhysicalDamagePercent"] = { + ["1080_PhysicalDamagePercent"] = { ["Ring"] = { ["max"] = 25, ["min"] = 15, @@ -167,7 +305,7 @@ return { ["type"] = "implicit", }, }, - ["1046_LocalPhysicalDamagePercent"] = { + ["1081_LocalPhysicalDamagePercent"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 10, @@ -213,7 +351,7 @@ return { ["type"] = "implicit", }, }, - ["1088_LocalPhysicalDamage"] = { + ["1123_LocalPhysicalDamage"] = { ["1HAxe"] = { ["max"] = 9.5, ["min"] = 1.5, @@ -276,7 +414,7 @@ return { ["type"] = "implicit", }, }, - ["1174_LocalFireDamage"] = { + ["1209_LocalFireDamage"] = { ["1HAxe"] = { ["max"] = 38, ["min"] = 11.5, @@ -339,7 +477,7 @@ return { ["type"] = "implicit", }, }, - ["1183_LocalColdDamage"] = { + ["1218_LocalColdDamage"] = { ["1HAxe"] = { ["max"] = 31.5, ["min"] = 9.5, @@ -402,7 +540,7 @@ return { ["type"] = "implicit", }, }, - ["1185_AddedFireDamageSpellsAndAttacks"] = { + ["1220_AddedFireDamageSpellsAndAttacks"] = { ["Ring"] = { ["max"] = 25.5, ["min"] = 5, @@ -416,7 +554,7 @@ return { ["type"] = "implicit", }, }, - ["1186_AddedColdDamageToSpellsAndAttacks"] = { + ["1221_AddedColdDamageToSpellsAndAttacks"] = { ["Ring"] = { ["max"] = 22, ["min"] = 5, @@ -430,7 +568,7 @@ return { ["type"] = "implicit", }, }, - ["1194_LocalLightningDamage"] = { + ["1229_LocalLightningDamage"] = { ["1HAxe"] = { ["max"] = 41, ["min"] = 14, @@ -493,7 +631,7 @@ return { ["type"] = "implicit", }, }, - ["1199_ChaosDamage"] = { + ["1234_ChaosDamage"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1.5, @@ -515,7 +653,7 @@ return { ["type"] = "implicit", }, }, - ["1201_LocalChaosDamage"] = { + ["1236_LocalChaosDamage"] = { ["1HAxe"] = { ["max"] = 17, ["min"] = 2, @@ -578,7 +716,7 @@ return { ["type"] = "implicit", }, }, - ["1220_AddedLightningDamageSpellsAndAttacks"] = { + ["1255_AddedLightningDamageSpellsAndAttacks"] = { ["Ring"] = { ["max"] = 28.5, ["min"] = 7.5, @@ -592,7 +730,7 @@ return { ["type"] = "implicit", }, }, - ["1221_IncreasedAttackSpeed"] = { + ["1256_IncreasedAttackSpeed"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 4, @@ -614,7 +752,7 @@ return { ["type"] = "implicit", }, }, - ["1224_LocalIncreasedAttackSpeed"] = { + ["1259_LocalIncreasedAttackSpeed"] = { ["1HAxe"] = { ["max"] = 7, ["min"] = 5, @@ -677,7 +815,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeed"] = { + ["1291_IncreasedCastSpeed"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 12, @@ -715,7 +853,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeedFishing"] = { + ["1291_IncreasedCastSpeedFishing"] = { ["FishingRod"] = { ["max"] = 20, ["min"] = 10, @@ -729,7 +867,7 @@ return { ["type"] = "implicit", }, }, - ["1269_CriticalStrikeChance"] = { + ["1304_CriticalStrikeChance"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 8, @@ -751,7 +889,7 @@ return { ["type"] = "implicit", }, }, - ["1274_LocalCriticalStrikeChance"] = { + ["1309_LocalCriticalStrikeChance"] = { ["1HMace"] = { ["max"] = 18, ["min"] = 14, @@ -797,7 +935,7 @@ return { ["type"] = "implicit", }, }, - ["1298_CriticalStrikeMultiplier"] = { + ["1333_CriticalStrikeMultiplier"] = { ["1HWeapon"] = { ["max"] = 30, ["min"] = 25, @@ -819,7 +957,7 @@ return { ["type"] = "implicit", }, }, - ["1321_ReducedExtraDamageFromCrits"] = { + ["1356_ReducedExtraDamageFromCrits"] = { ["Chest"] = { ["max"] = 50, ["min"] = 50, @@ -837,7 +975,7 @@ return { ["type"] = "implicit", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["1365_ImmuneToKnockback"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -846,24 +984,15 @@ return { ["max"] = 1, ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", + ["id"] = "implicit.stat_4212255859", + ["text"] = "Cannot be Knocked Back", ["type"] = "implicit", }, }, - ["1330_ImmuneToKnockback"] = { + ["137_LocalIncreaseSocketedGemLevel"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -872,15 +1001,24 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4212255859", - ["text"] = "Cannot be Knocked Back", + ["id"] = "implicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", ["type"] = "implicit", }, }, - ["1369_GlobalEnergyShieldPercent"] = { + ["1404_GlobalEnergyShieldPercent"] = { ["Belt"] = { ["max"] = 10, ["min"] = 8, @@ -894,7 +1032,7 @@ return { ["type"] = "implicit", }, }, - ["1369_MaximumEnergyShieldPercent"] = { + ["1404_MaximumEnergyShieldPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -904,7 +1042,7 @@ return { ["type"] = "implicit", }, }, - ["1379_MaximumLifeIncreasePercent"] = { + ["1414_MaximumLifeIncreasePercent"] = { ["Belt"] = { ["max"] = 8, ["min"] = 6, @@ -918,7 +1056,7 @@ return { ["type"] = "implicit", }, }, - ["137_LocalIncreaseSocketedFireGemLevelCorrupted"] = { + ["142_LocalIncreaseSocketedFireGemLevelCorrupted"] = { ["Helmet"] = { ["max"] = 2, ["min"] = 2, @@ -932,35 +1070,7 @@ return { ["type"] = "implicit", }, }, - ["138_LocalIncreaseSocketedColdGemLevelCorrupted"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, - ["139_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", - ["type"] = "implicit", - }, - }, - ["1400_IncreasedItemQuantity"] = { + ["1435_IncreasedItemQuantity"] = { ["Amulet"] = { ["max"] = 5, ["min"] = 3, @@ -982,7 +1092,7 @@ return { ["type"] = "implicit", }, }, - ["1404_IncreasedItemRarity"] = { + ["1439_IncreasedItemRarity"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -1004,7 +1114,35 @@ return { ["type"] = "implicit", }, }, - ["1427_AllResistancesCorrupted"] = { + ["143_LocalIncreaseSocketedColdGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "implicit", + }, + }, + ["144_LocalIncreaseSocketedLightningGemLevelCorrupted"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["1462_AllResistancesCorrupted"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 14, @@ -1026,17 +1164,7 @@ return { ["type"] = "implicit", }, }, - ["143_IncreaseSocketedDurationGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2115168758", - ["text"] = "+# to Level of Socketed Duration Gems", - ["type"] = "implicit", - }, - }, - ["1448_ChaosResistance"] = { + ["1483_ChaosResistance"] = { ["1HAxe"] = { ["max"] = 4, ["min"] = 2, @@ -1110,7 +1238,7 @@ return { ["type"] = "implicit", }, }, - ["1449_MaximumResistances"] = { + ["1484_MaximumResistances"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -1128,17 +1256,7 @@ return { ["type"] = "implicit", }, }, - ["144_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["1452_ChillEffectivenessOnSelf"] = { + ["1487_ChillEffectivenessOnSelf"] = { ["AnyJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1156,17 +1274,17 @@ return { ["type"] = "implicit", }, }, - ["145_LocalIncreaseSocketedProjectileLevelCorrupted"] = { + ["150_IncreaseSocketedDurationGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", + ["id"] = "implicit.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", ["type"] = "implicit", }, }, - ["1477_FireDamageLifeLeechPermyriad"] = { + ["1512_FireDamageLifeLeechPermyriad"] = { ["1HAxe"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -1240,7 +1358,7 @@ return { ["type"] = "implicit", }, }, - ["1482_ColdDamageLifeLeechPermyriad"] = { + ["1517_ColdDamageLifeLeechPermyriad"] = { ["1HAxe"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -1314,7 +1432,17 @@ return { ["type"] = "implicit", }, }, - ["1486_LightningDamageLifeLeechPermyriad"] = { + ["151_IncreasedSocketedAoEGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "implicit", + }, + }, + ["1521_LightningDamageLifeLeechPermyriad"] = { ["1HAxe"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -1388,37 +1516,37 @@ return { ["type"] = "implicit", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["152_LocalIncreaseSocketedProjectileLevelCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", ["type"] = "implicit", }, }, - ["149_LocalIncreaseSocketedAuraLevelCorrupted"] = { + ["155_LocalIncreaseSocketedMinionGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", ["type"] = "implicit", }, }, - ["152_LocalIncreaseSocketedCurseLevelCorrupted"] = { + ["156_LocalIncreaseSocketedAuraLevelCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", ["type"] = "implicit", }, }, - ["1551_ManaGainPerTarget"] = { + ["1586_ManaGainPerTarget"] = { ["Ring"] = { ["max"] = 6, ["min"] = 1, @@ -1432,61 +1560,41 @@ return { ["type"] = "implicit", }, }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["159_LocalIncreaseSocketedCurseLevelCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["id"] = "implicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", ["type"] = "implicit", }, }, - ["156_LocalIncreaseSocketedVaalGemLevel"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, + ["1629_AdditionalArrowChain"] = { + ["Quiver"] = { + ["max"] = 1, ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1170386874", - ["text"] = "+# to Level of Socketed Vaal Gems", + ["id"] = "implicit.stat_1001077145", + ["text"] = "Arrows Chain +# times", ["type"] = "implicit", }, }, - ["1594_AdditionalArrowChain"] = { - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["162_IncreasedSocketedTrapOrMineGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1001077145", - ["text"] = "Arrows Chain +# times", + ["id"] = "implicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", ["type"] = "implicit", }, }, - ["1597_AdditionalArrowPierce"] = { + ["1632_AdditionalArrowPierce"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -1503,7 +1611,7 @@ return { ["type"] = "implicit", }, }, - ["1598_AdditionalProjectilesCorrupted"] = { + ["1633_AdditionalProjectilesCorrupted"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -1520,7 +1628,7 @@ return { ["type"] = "implicit", }, }, - ["1599_AdditionalArrows"] = { + ["1635_AdditionalArrows"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -1538,12 +1646,12 @@ return { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "implicit.stat_742529963", + ["id"] = "implicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", }, }, - ["1602_ProjectileSpeed"] = { + ["1637_ProjectileSpeed"] = { ["1HWeapon"] = { ["max"] = 8, ["min"] = 4, @@ -1561,7 +1669,7 @@ return { ["type"] = "implicit", }, }, - ["1604_MovementVelocity"] = { + ["1639_MovementVelocity"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 2, @@ -1579,17 +1687,37 @@ return { ["type"] = "implicit", }, }, - ["160_LocalSocketedWarcryGemLevel"] = { + ["163_LocalIncreaseSocketedVaalGemLevel"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1672793731", - ["text"] = "+# to Level of Socketed Warcry Gems", + ["id"] = "implicit.stat_1170386874", + ["text"] = "+# to Level of Socketed Vaal Gems", ["type"] = "implicit", }, }, - ["1610_MaximumEnduranceCharges"] = { + ["1645_MaximumEnduranceCharges"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -1607,7 +1735,7 @@ return { ["type"] = "implicit", }, }, - ["1615_MaximumFrenzyCharges"] = { + ["1650_MaximumFrenzyCharges"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -1629,7 +1757,7 @@ return { ["type"] = "implicit", }, }, - ["1620_IncreasedMaximumPowerCharges"] = { + ["1655_IncreasedMaximumPowerCharges"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -1667,7 +1795,7 @@ return { ["type"] = "implicit", }, }, - ["1636_PowerChargeOnCriticalStrikeChance"] = { + ["1671_PowerChargeOnCriticalStrikeChance"] = { ["1HMace"] = { ["max"] = 7, ["min"] = 5, @@ -1705,7 +1833,17 @@ return { ["type"] = "implicit", }, }, - ["1645_CannotBeIgnited"] = { + ["167_LocalSocketedWarcryGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "implicit", + }, + }, + ["1680_CannotBeIgnited"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -1718,7 +1856,7 @@ return { ["type"] = "implicit", }, }, - ["1650_ChanceToAvoidFreezeAndChill"] = { + ["1685_ChanceToAvoidFreezeAndChill"] = { ["AnyJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1736,7 +1874,7 @@ return { ["type"] = "implicit", }, }, - ["1651_ChanceToAvoidFreezeAndChill"] = { + ["1686_ChanceToAvoidFreezeAndChill"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1770,7 +1908,7 @@ return { ["type"] = "implicit", }, }, - ["1652_AvoidIgnite"] = { + ["1687_AvoidIgnite"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1804,7 +1942,7 @@ return { ["type"] = "implicit", }, }, - ["1654_AvoidShock"] = { + ["1689_AvoidShock"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1826,7 +1964,7 @@ return { ["type"] = "implicit", }, }, - ["1654_ReducedShockChance"] = { + ["1689_ReducedShockChance"] = { ["Belt"] = { ["max"] = 20, ["min"] = 10, @@ -1844,7 +1982,7 @@ return { ["type"] = "implicit", }, }, - ["1655_ChanceToAvoidPoison"] = { + ["1690_ChanceToAvoidPoison"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1866,7 +2004,7 @@ return { ["type"] = "implicit", }, }, - ["1657_AvoidStun"] = { + ["1692_AvoidStun"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1888,7 +2026,7 @@ return { ["type"] = "implicit", }, }, - ["1678_ReducedChillDuration"] = { + ["1713_ReducedChillDuration"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -1906,7 +2044,7 @@ return { ["type"] = "implicit", }, }, - ["1679_ReducedShockDuration"] = { + ["1714_ReducedShockDuration"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -1924,7 +2062,7 @@ return { ["type"] = "implicit", }, }, - ["1680_ReducedFreezeDuration"] = { + ["1715_ReducedFreezeDuration"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -1942,7 +2080,7 @@ return { ["type"] = "implicit", }, }, - ["1681_ReducedBurnDuration"] = { + ["1716_ReducedBurnDuration"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -1960,7 +2098,7 @@ return { ["type"] = "implicit", }, }, - ["1681_ReducedIgniteDurationOnSelf"] = { + ["1716_ReducedIgniteDurationOnSelf"] = { ["AnyJewel"] = { ["max"] = 25, ["min"] = 20, @@ -1978,7 +2116,7 @@ return { ["type"] = "implicit", }, }, - ["1683_BurnDamage"] = { + ["1718_BurnDamage"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 30, @@ -1992,7 +2130,7 @@ return { ["type"] = "implicit", }, }, - ["1686_AreaOfEffect"] = { + ["1721_AreaOfEffect"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 15, @@ -2070,7 +2208,7 @@ return { ["type"] = "implicit", }, }, - ["1701_SkillEffectDuration"] = { + ["1736_SkillEffectDuration"] = { ["Belt"] = { ["max"] = 15, ["min"] = 5, @@ -2084,7 +2222,7 @@ return { ["type"] = "implicit", }, }, - ["1736_FireDamageAsPortionOfDamage"] = { + ["1771_FireDamageAsPortionOfDamage"] = { ["Quiver"] = { ["max"] = 12, ["min"] = 8, @@ -2098,7 +2236,7 @@ return { ["type"] = "implicit", }, }, - ["1737_ColdDamageAsPortionOfDamage"] = { + ["1772_ColdDamageAsPortionOfDamage"] = { ["Quiver"] = { ["max"] = 12, ["min"] = 8, @@ -2112,7 +2250,7 @@ return { ["type"] = "implicit", }, }, - ["1738_LightningDamageAsPortionOfDamage"] = { + ["1773_LightningDamageAsPortionOfDamage"] = { ["Quiver"] = { ["max"] = 12, ["min"] = 8, @@ -2126,7 +2264,7 @@ return { ["type"] = "implicit", }, }, - ["1748_LifeRegenerationRatePercentage"] = { + ["1783_LifeRegenerationRatePercentage"] = { ["Helmet"] = { ["max"] = 2, ["min"] = 1.6, @@ -2140,7 +2278,7 @@ return { ["type"] = "implicit", }, }, - ["1759_ConvertPhysicalToFire"] = { + ["1794_ConvertPhysicalToFire"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -2162,7 +2300,7 @@ return { ["type"] = "implicit", }, }, - ["1761_ConvertPhysicalToCold"] = { + ["1796_ConvertPhysicalToCold"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -2184,7 +2322,7 @@ return { ["type"] = "implicit", }, }, - ["1763_MonsterConvertPhysicalDamageToLightning"] = { + ["1798_MonsterConvertPhysicalDamageToLightning"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -2206,7 +2344,7 @@ return { ["type"] = "implicit", }, }, - ["1777_MinionDamage"] = { + ["1812_MinionDamage"] = { ["AbyssJewel"] = { ["max"] = 5, ["min"] = 4, @@ -2236,7 +2374,7 @@ return { ["type"] = "implicit", }, }, - ["1790_MaximumBlockChance"] = { + ["1825_MaximumBlockChance"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -2250,7 +2388,7 @@ return { ["type"] = "implicit", }, }, - ["1840_CullingStrike"] = { + ["1875_CullingStrike"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -2299,7 +2437,7 @@ return { ["type"] = "implicit", }, }, - ["1843_HitsCauseMonsterFlee"] = { + ["1878_HitsCauseMonsterFlee"] = { ["1HAxe"] = { ["max"] = 5, ["min"] = 5, @@ -2361,7 +2499,7 @@ return { ["type"] = "implicit", }, }, - ["1859_ActorSize"] = { + ["1894_ActorSize"] = { ["AnyJewel"] = { ["max"] = -1, ["min"] = -1, @@ -2379,7 +2517,7 @@ return { ["type"] = "implicit", }, }, - ["1872_AddedPhysicalDamageToBowAttacksCorrupted"] = { + ["1907_AddedPhysicalDamageToBowAttacksCorrupted"] = { ["Quiver"] = { ["max"] = 15.5, ["min"] = 4.5, @@ -2393,7 +2531,7 @@ return { ["type"] = "implicit", }, }, - ["1882_AddedFireDamageToBowAttacksCorrupted"] = { + ["1917_AddedFireDamageToBowAttacksCorrupted"] = { ["Quiver"] = { ["max"] = 54, ["min"] = 16, @@ -2407,25 +2545,7 @@ return { ["type"] = "implicit", }, }, - ["188_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "implicit", - }, - }, - ["1890_AddedColdDamageToBowAttacksCorrupted"] = { + ["1925_AddedColdDamageToBowAttacksCorrupted"] = { ["Quiver"] = { ["max"] = 48.5, ["min"] = 13, @@ -2439,7 +2559,7 @@ return { ["type"] = "implicit", }, }, - ["1898_AddedLightningDamageToBowAttacksCorrupted"] = { + ["1933_AddedLightningDamageToBowAttacksCorrupted"] = { ["Quiver"] = { ["max"] = 57, ["min"] = 19.5, @@ -2453,7 +2573,7 @@ return { ["type"] = "implicit", }, }, - ["1905_AddedChaosDamageToBowAttacksCorrupted"] = { + ["1940_AddedChaosDamageToBowAttacksCorrupted"] = { ["Quiver"] = { ["max"] = 36, ["min"] = 30, @@ -2467,7 +2587,25 @@ return { ["type"] = "implicit", }, }, - ["1970_AdditionalCurseOnEnemies"] = { + ["198_DisplaySocketedGemGetsIncreasedAreaOfEffectLevel"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "implicit", + }, + }, + ["2005_AdditionalCurseOnEnemies"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -2482,7 +2620,7 @@ return { ["type"] = "implicit", }, }, - ["1972_CurseEffectOnYouJewel"] = { + ["2007_CurseEffectOnYouJewel"] = { ["AnyJewel"] = { ["max"] = 25, ["min"] = 20, @@ -2500,7 +2638,7 @@ return { ["type"] = "implicit", }, }, - ["2030_ReservationEfficiencyForJewel"] = { + ["2066_ReservationEfficiencyForJewel"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 2, @@ -2522,7 +2660,7 @@ return { ["type"] = "implicit", }, }, - ["2033_ReducedReservationForJewel"] = { + ["2069_ReducedReservationForJewel"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 2, @@ -2540,7 +2678,7 @@ return { ["type"] = "implicit", }, }, - ["2034_PhysicalAttackDamageTaken"] = { + ["2070_PhysicalAttackDamageTaken"] = { ["Amulet"] = { ["max"] = 17, ["min"] = 10, @@ -2558,7 +2696,7 @@ return { ["type"] = "implicit", }, }, - ["2039_AreaOfEffectDamageTaken"] = { + ["2075_AreaOfEffectDamageTaken"] = { ["Shield"] = { ["max"] = 6, ["min"] = 4, @@ -2572,7 +2710,7 @@ return { ["type"] = "implicit", }, }, - ["2042_FireDamageTaken"] = { + ["2078_FireDamageTaken"] = { ["Chest"] = { ["max"] = -4, ["min"] = -6, @@ -2586,7 +2724,7 @@ return { ["type"] = "implicit", }, }, - ["2043_ChaosDamageTakenPercentage"] = { + ["2079_ChaosDamageTakenPercentage"] = { ["Chest"] = { ["max"] = 6, ["min"] = 4, @@ -2600,7 +2738,7 @@ return { ["type"] = "implicit", }, }, - ["2049_IncreasedShieldBlockPercentage"] = { + ["2085_IncreasedShieldBlockPercentage"] = { ["Shield"] = { ["max"] = 5, ["min"] = 4, @@ -2615,7 +2753,7 @@ return { ["type"] = "implicit", }, }, - ["2055_TrapsAllowed"] = { + ["2091_TrapsAllowed"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -2629,7 +2767,7 @@ return { ["type"] = "implicit", }, }, - ["2232_EnemiesCantLifeLeech"] = { + ["2274_EnemiesCantLifeLeech"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -2642,7 +2780,7 @@ return { ["type"] = "implicit", }, }, - ["2238_PhysicalDamageTakenAsFirePercent"] = { + ["2280_PhysicalDamageTakenAsFirePercent"] = { ["Shield"] = { ["max"] = 8, ["min"] = 6, @@ -2656,7 +2794,7 @@ return { ["type"] = "implicit", }, }, - ["2239_PhysicalDamageTakenAsCold"] = { + ["2281_PhysicalDamageTakenAsCold"] = { ["Shield"] = { ["max"] = 8, ["min"] = 6, @@ -2670,7 +2808,7 @@ return { ["type"] = "implicit", }, }, - ["2240_PhysicalDamageTakenAsLightningPercent"] = { + ["2282_PhysicalDamageTakenAsLightningPercent"] = { ["Shield"] = { ["max"] = 8, ["min"] = 6, @@ -2684,7 +2822,7 @@ return { ["type"] = "implicit", }, }, - ["2242_PhysicalDamageTakenAsChaos"] = { + ["2284_PhysicalDamageTakenAsChaos"] = { ["Shield"] = { ["max"] = 8, ["min"] = 6, @@ -2698,7 +2836,7 @@ return { ["type"] = "implicit", }, }, - ["2246_PercentDamageGoesToMana"] = { + ["2288_PercentDamageGoesToMana"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 3, @@ -2720,7 +2858,7 @@ return { ["type"] = "implicit", }, }, - ["2274_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["2316_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 20, @@ -2746,7 +2884,7 @@ return { ["type"] = "implicit", }, }, - ["2282_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { + ["2324_ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 30, @@ -2772,7 +2910,7 @@ return { ["type"] = "implicit", }, }, - ["2313_CurseOnHitLevelTemporalChains"] = { + ["2355_CurseOnHitLevelTemporalChains"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -2785,7 +2923,7 @@ return { ["type"] = "implicit", }, }, - ["2314_CurseOnHitLevelVulnerability"] = { + ["2356_CurseOnHitLevelVulnerability"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -2798,7 +2936,7 @@ return { ["type"] = "implicit", }, }, - ["2316_CurseOnHitLevelElementalWeakness"] = { + ["2358_CurseOnHitLevelElementalWeakness"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -2811,7 +2949,7 @@ return { ["type"] = "implicit", }, }, - ["2319_CurseOnHitDespair"] = { + ["2361_CurseOnHitDespair"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -2824,7 +2962,7 @@ return { ["type"] = "implicit", }, }, - ["2320_CurseOnHitEnfeeble"] = { + ["2362_CurseOnHitEnfeeble"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -2837,7 +2975,7 @@ return { ["type"] = "implicit", }, }, - ["2416_FrenzyChargeOnKillChance"] = { + ["2462_FrenzyChargeOnKillChance"] = { ["1HWeapon"] = { ["max"] = 11, ["min"] = 9, @@ -2867,7 +3005,7 @@ return { ["type"] = "implicit", }, }, - ["2482_DamageRemovedFromManaBeforeLife"] = { + ["2528_DamageRemovedFromManaBeforeLife"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 3, @@ -2881,7 +3019,83 @@ return { ["type"] = "implicit", }, }, - ["250_SupportedByLifeGainOnHit"] = { + ["2576_LocalMeleeWeaponRange"] = { + ["1HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["1HMace"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["1HSword"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["1HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["2HAxe"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["2HMace"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["2HSword"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["2HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["Bow"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["Claw"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["Dagger"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["Staff"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["Wand"] = { + ["max"] = 0.2, + ["min"] = 0.1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_350598685", + ["text"] = "+# metres to Weapon Range", + ["type"] = "implicit", + }, + }, + ["2580_ProjectileDamageTaken"] = { + ["Shield"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1425651005", + ["text"] = "#% reduced Damage taken from Projectile Hits", + ["type"] = "implicit", + }, + }, + ["260_SupportedByLifeGainOnHit"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 10, @@ -2927,7 +3141,7 @@ return { ["type"] = "implicit", }, }, - ["251_SocketedGemsSupportedByLifetap"] = { + ["261_SocketedGemsSupportedByLifetap"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -2973,83 +3187,7 @@ return { ["type"] = "implicit", }, }, - ["2530_LocalMeleeWeaponRange"] = { - ["1HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["1HMace"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["1HSword"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["1HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["2HAxe"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["2HMace"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["2HSword"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["2HWeapon"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["Bow"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["Claw"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["Dagger"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["Staff"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["Wand"] = { - ["max"] = 0.2, - ["min"] = 0.1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_350598685", - ["text"] = "+# metres to Weapon Range", - ["type"] = "implicit", - }, - }, - ["2534_ProjectileDamageTaken"] = { - ["Shield"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1425651005", - ["text"] = "#% reduced Damage taken from Projectile Hits", - ["type"] = "implicit", - }, - }, - ["2632_FishingQuantity"] = { + ["2678_FishingQuantity"] = { ["FishingRod"] = { ["max"] = 10, ["min"] = 5, @@ -3063,7 +3201,7 @@ return { ["type"] = "implicit", }, }, - ["2633_FishingRarity"] = { + ["2679_FishingRarity"] = { ["FishingRod"] = { ["max"] = 10, ["min"] = 5, @@ -3077,7 +3215,7 @@ return { ["type"] = "implicit", }, }, - ["2639_CorruptFish"] = { + ["2685_CorruptFish"] = { ["FishingRod"] = { ["max"] = 1, ["min"] = 1, @@ -3090,7 +3228,7 @@ return { ["type"] = "implicit", }, }, - ["264_SupportedByOnslaught"] = { + ["274_SupportedByOnslaught"] = { ["2HAxe"] = { ["max"] = 10, ["min"] = 10, @@ -3124,7 +3262,7 @@ return { ["type"] = "implicit", }, }, - ["2756_ImmunityToBlind"] = { + ["2802_ImmunityToBlind"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -3137,7 +3275,7 @@ return { ["type"] = "implicit", }, }, - ["2760_ArmourPenetration"] = { + ["2806_ArmourPenetration"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 2, @@ -3159,7 +3297,7 @@ return { ["type"] = "implicit", }, }, - ["2762_ElementalPenetration"] = { + ["2808_ElementalPenetration"] = { ["1HSword"] = { ["max"] = 10, ["min"] = 8, @@ -3193,7 +3331,7 @@ return { ["type"] = "implicit", }, }, - ["2763_FireResistancePenetration"] = { + ["2809_FireResistancePenetration"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3215,7 +3353,7 @@ return { ["type"] = "implicit", }, }, - ["2764_ColdResistancePenetration"] = { + ["2810_ColdResistancePenetration"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3237,7 +3375,7 @@ return { ["type"] = "implicit", }, }, - ["2765_LightningResistancePenetration"] = { + ["2811_LightningResistancePenetration"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3259,7 +3397,7 @@ return { ["type"] = "implicit", }, }, - ["2774_ChanceToGainOnslaughtOnKill"] = { + ["2820_ChanceToGainOnslaughtOnKill"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 10, @@ -3297,7 +3435,7 @@ return { ["type"] = "implicit", }, }, - ["2807_ChargeDuration"] = { + ["2853_ChargeDuration"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -3315,7 +3453,7 @@ return { ["type"] = "implicit", }, }, - ["2870_ImmuneToSilence"] = { + ["2916_ImmuneToSilence"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3336,7 +3474,7 @@ return { ["type"] = "implicit", }, }, - ["2871_VaalSkillDamage"] = { + ["2917_VaalSkillDamage"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -3354,7 +3492,7 @@ return { ["type"] = "implicit", }, }, - ["2872_DamageWhileDead"] = { + ["2918_DamageWhileDead"] = { ["AnyJewel"] = { ["max"] = 30, ["min"] = 20, @@ -3372,7 +3510,7 @@ return { ["type"] = "implicit", }, }, - ["2875_ChaosDamagePerCorruptedItem"] = { + ["2921_ChaosDamagePerCorruptedItem"] = { ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3390,7 +3528,7 @@ return { ["type"] = "implicit", }, }, - ["2876_LifeLeechRatePerCorruptedItem"] = { + ["2922_LifeLeechRatePerCorruptedItem"] = { ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3408,7 +3546,7 @@ return { ["type"] = "implicit", }, }, - ["2878_ManaLeechRatePerCorrupteditem"] = { + ["2924_ManaLeechRatePerCorrupteditem"] = { ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, @@ -3426,7 +3564,7 @@ return { ["type"] = "implicit", }, }, - ["2908_ChanceToTakeCriticalStrike"] = { + ["2954_ChanceToTakeCriticalStrike"] = { ["AnyJewel"] = { ["max"] = 100, ["min"] = 60, @@ -3444,7 +3582,7 @@ return { ["type"] = "implicit", }, }, - ["2962_MovementSpeedDuringFlaskEffect"] = { + ["3008_MovementSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 12, ["min"] = 8, @@ -3458,7 +3596,7 @@ return { ["type"] = "implicit", }, }, - ["3078_AttackSpeedDuringFlaskEffect"] = { + ["3124_AttackSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 12, ["min"] = 8, @@ -3472,7 +3610,7 @@ return { ["type"] = "implicit", }, }, - ["3133_IncreasedAuraEffectAngerCorrupted"] = { + ["3179_IncreasedAuraEffectAngerCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3494,7 +3632,7 @@ return { ["type"] = "implicit", }, }, - ["3138_IncreasedAuraEffectWrathCorrupted"] = { + ["3184_IncreasedAuraEffectWrathCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3516,7 +3654,7 @@ return { ["type"] = "implicit", }, }, - ["3140_IncreasedAuraEffectGraceCorrupted"] = { + ["3186_IncreasedAuraEffectGraceCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3538,7 +3676,7 @@ return { ["type"] = "implicit", }, }, - ["3143_IncreasedAuraEffectHatredCorrupted"] = { + ["3189_IncreasedAuraEffectHatredCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3560,7 +3698,7 @@ return { ["type"] = "implicit", }, }, - ["3144_IncreasedAuraEffectDeterminationCorrupted"] = { + ["3190_IncreasedAuraEffectDeterminationCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3582,7 +3720,7 @@ return { ["type"] = "implicit", }, }, - ["3145_IncreasedAuraEffectDisciplineCorrupted"] = { + ["3191_IncreasedAuraEffectDisciplineCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -3604,7 +3742,7 @@ return { ["type"] = "implicit", }, }, - ["3146_CannotBePoisoned"] = { + ["3192_CannotBePoisoned"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -3617,7 +3755,7 @@ return { ["type"] = "implicit", }, }, - ["3154_UnholyMightOnKillPercentChance"] = { + ["3200_UnholyMightOnKillPercentChance"] = { ["1HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -3639,7 +3777,7 @@ return { ["type"] = "implicit", }, }, - ["3165_LightningDamageTaken"] = { + ["3211_LightningDamageTaken"] = { ["Chest"] = { ["max"] = 6, ["min"] = 4, @@ -3653,7 +3791,7 @@ return { ["type"] = "implicit", }, }, - ["3166_ColdDamageTakenPercentage"] = { + ["3212_ColdDamageTakenPercentage"] = { ["Chest"] = { ["max"] = 6, ["min"] = 4, @@ -3667,7 +3805,7 @@ return { ["type"] = "implicit", }, }, - ["360_DisplaySocketedGemsGetAddedFireDamage"] = { + ["371_DisplaySocketedGemsGetAddedFireDamage"] = { ["1HMace"] = { ["max"] = 12, ["min"] = 12, @@ -3709,7 +3847,7 @@ return { ["type"] = "implicit", }, }, - ["364_DisplaySocketedGemGetsElementalProliferation"] = { + ["375_DisplaySocketedGemGetsElementalProliferation"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -3727,7 +3865,7 @@ return { ["type"] = "implicit", }, }, - ["368_SupportedByBlind"] = { + ["379_SupportedByBlind"] = { ["2HWeapon"] = { ["max"] = 10, ["min"] = 10, @@ -3745,7 +3883,7 @@ return { ["type"] = "implicit", }, }, - ["369_SupportedByMeleeSplash"] = { + ["380_SupportedByMeleeSplash"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 10, @@ -3783,7 +3921,7 @@ return { ["type"] = "implicit", }, }, - ["370_SupportedByCastOnCrit"] = { + ["381_SupportedByCastOnCrit"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 12, @@ -3801,7 +3939,7 @@ return { ["type"] = "implicit", }, }, - ["371_SupportedByCastOnStun"] = { + ["386_SupportedByCastOnStun"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 12, @@ -3819,7 +3957,7 @@ return { ["type"] = "implicit", }, }, - ["373_SupportedByStun"] = { + ["388_SupportedByStun"] = { ["1HMace"] = { ["max"] = 6, ["min"] = 6, @@ -3845,7 +3983,7 @@ return { ["type"] = "implicit", }, }, - ["374_SupportedByAccuracy"] = { + ["389_SupportedByAccuracy"] = { ["1HAxe"] = { ["max"] = 12, ["min"] = 10, @@ -3907,7 +4045,7 @@ return { ["type"] = "implicit", }, }, - ["375_SupportedByMultistrike"] = { + ["390_SupportedByMultistrike"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -3949,7 +4087,7 @@ return { ["type"] = "implicit", }, }, - ["376_SupportedByProjectileSpeed"] = { + ["391_SupportedByProjectileSpeed"] = { ["2HWeapon"] = { ["max"] = 10, ["min"] = 10, @@ -3967,7 +4105,7 @@ return { ["type"] = "implicit", }, }, - ["377_SupportedByLifeLeech"] = { + ["392_SupportedByLifeLeech"] = { ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, @@ -3985,7 +4123,7 @@ return { ["type"] = "implicit", }, }, - ["379_SupportedByCriticalMultiplier"] = { + ["394_SupportedByCriticalMultiplier"] = { ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, @@ -4003,7 +4141,7 @@ return { ["type"] = "implicit", }, }, - ["380_SupportedByFork"] = { + ["395_SupportedByFork"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -4021,7 +4159,7 @@ return { ["type"] = "implicit", }, }, - ["381_SupportedByWeaponElementalDamage"] = { + ["396_SupportedByWeaponElementalDamage"] = { ["1HMace"] = { ["max"] = 12, ["min"] = 12, @@ -4039,49 +4177,50 @@ return { ["type"] = "implicit", }, }, - ["383_SupportedByReducedMana"] = { - ["1HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, + ["4028_BleedingImmunity"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1901158930", + ["text"] = "Bleeding cannot be inflicted on you", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["4029_ChanceToAvoidBleeding"] = { + ["AbyssJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1866911844", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "implicit.stat_1618589784", + ["text"] = "#% chance to Avoid Bleeding", ["type"] = "implicit", }, }, - ["385_SupportedByFortify"] = { + ["403_SupportedByReducedMana"] = { + ["1HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, ["2HAxe"] = { ["max"] = 10, ["min"] = 10, @@ -4110,65 +4249,64 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["id"] = "implicit.stat_1866911844", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", ["type"] = "implicit", }, }, - ["388_DisplaySocketedGemsGetFasterCast"] = { - ["1HMace"] = { + ["405_SupportedByFortify"] = { + ["2HAxe"] = { ["max"] = 10, ["min"] = 10, }, - ["1HWeapon"] = { + ["2HMace"] = { ["max"] = 10, ["min"] = 10, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - ["type"] = "implicit", + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - }, - ["3982_BleedingImmunity"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1901158930", - ["text"] = "Bleeding cannot be inflicted on you", + ["id"] = "implicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", ["type"] = "implicit", }, }, - ["3983_ChanceToAvoidBleeding"] = { - ["AbyssJewel"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 20, + ["408_DisplaySocketedGemsGetFasterCast"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 20, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1618589784", - ["text"] = "#% chance to Avoid Bleeding", + ["id"] = "implicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", ["type"] = "implicit", }, }, - ["4080_PhysicalDamageReductionWhileNotMoving"] = { + ["4126_PhysicalDamageReductionWhileNotMoving"] = { ["Chest"] = { ["max"] = 5, ["min"] = 3, @@ -4182,7 +4320,7 @@ return { ["type"] = "implicit", }, }, - ["4081_AddedArmourWhileStationary"] = { + ["4127_AddedArmourWhileStationary"] = { ["Boots"] = { ["max"] = 322, ["min"] = 35, @@ -4196,7 +4334,7 @@ return { ["type"] = "implicit", }, }, - ["414_SocketedSkillsManaMultiplier"] = { + ["437_SocketedSkillsManaMultiplier"] = { ["Chest"] = { ["max"] = 95, ["min"] = 95, @@ -4214,7 +4352,7 @@ return { ["type"] = "implicit", }, }, - ["4423_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["4478_AdditionalCriticalStrikeChanceWithAttacks"] = { ["Gloves"] = { ["max"] = 0.8, ["min"] = 0.5, @@ -4228,7 +4366,7 @@ return { ["type"] = "implicit", }, }, - ["4556_AvoidMaimChance"] = { + ["4611_AvoidMaimChance"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -4249,7 +4387,7 @@ return { ["type"] = "implicit", }, }, - ["4883_CorruptedBloodImmunity"] = { + ["4937_CorruptedBloodImmunity"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -4270,7 +4408,7 @@ return { ["type"] = "implicit", }, }, - ["4934_CastSpeedDuringFlaskEffect"] = { + ["4987_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 12, ["min"] = 8, @@ -4284,7 +4422,7 @@ return { ["type"] = "implicit", }, }, - ["5107_GainEnduranceChargeOnStunChance"] = { + ["5160_GainEnduranceChargeOnStunChance"] = { ["1HMace"] = { ["max"] = 7, ["min"] = 5, @@ -4314,7 +4452,7 @@ return { ["type"] = "implicit", }, }, - ["5211_ChillEffect"] = { + ["5265_ChillEffect"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 25, @@ -4328,7 +4466,7 @@ return { ["type"] = "implicit", }, }, - ["5321_IncreasedCriticalStrikeUnderFlaskEffect"] = { + ["5377_IncreasedCriticalStrikeUnderFlaskEffect"] = { ["Belt"] = { ["max"] = 40, ["min"] = 35, @@ -4342,7 +4480,7 @@ return { ["type"] = "implicit", }, }, - ["5351_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { + ["5407_AdditionalCriticalStrikeMultiplierUnderFlaskEffect"] = { ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -4356,7 +4494,7 @@ return { ["type"] = "implicit", }, }, - ["5542_IncreasedAuraEffectMalevolenceCorrupted"] = { + ["5599_IncreasedAuraEffectMalevolenceCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -4378,7 +4516,7 @@ return { ["type"] = "implicit", }, }, - ["5685_IncreasedWeaponElementalDamagePercent"] = { + ["5745_IncreasedWeaponElementalDamagePercent"] = { ["Amulet"] = { ["max"] = 24, ["min"] = 6, @@ -4396,7 +4534,7 @@ return { ["type"] = "implicit", }, }, - ["6013_GainFrenzyChargeAfterSpending200Mana"] = { + ["6080_GainFrenzyChargeAfterSpending200Mana"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -4413,7 +4551,7 @@ return { ["type"] = "implicit", }, }, - ["6147_AddedEvasionWhileMovingCorrupted"] = { + ["6217_AddedEvasionWhileMovingCorrupted"] = { ["Boots"] = { ["max"] = 322, ["min"] = 35, @@ -4427,7 +4565,7 @@ return { ["type"] = "implicit", }, }, - ["6612_LifeRegenerationWhileMoving"] = { + ["6685_LifeRegenerationWhileMoving"] = { ["Boots"] = { ["max"] = 100, ["min"] = 100, @@ -4441,7 +4579,7 @@ return { ["type"] = "implicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemies"] = { + ["8490_IncreasedAilmentEffectOnEnemies"] = { ["AbyssJewel"] = { ["max"] = 7, ["min"] = 5, @@ -4463,7 +4601,7 @@ return { ["type"] = "implicit", }, }, - ["8491_IncreasedAuraEffectPrideCorrupted"] = { + ["8674_IncreasedAuraEffectPrideCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -4485,7 +4623,7 @@ return { ["type"] = "implicit", }, }, - ["8509_IncreasedProjectileDamageForEachChain"] = { + ["8693_IncreasedProjectileDamageForEachChain"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 20, @@ -4499,7 +4637,7 @@ return { ["type"] = "implicit", }, }, - ["8510_ProjectileDamagePerEnemyPierced"] = { + ["8694_ProjectileDamagePerEnemyPierced"] = { ["Quiver"] = { ["max"] = 10, ["min"] = 8, @@ -4513,7 +4651,7 @@ return { ["type"] = "implicit", }, }, - ["8701_ReducedBleedDuration"] = { + ["8886_ReducedBleedDuration"] = { ["AnyJewel"] = { ["max"] = -20, ["min"] = -25, @@ -4531,7 +4669,7 @@ return { ["type"] = "implicit", }, }, - ["8708_ReducedPoisonDuration"] = { + ["8894_ReducedPoisonDuration"] = { ["AnyJewel"] = { ["max"] = -20, ["min"] = -25, @@ -4549,7 +4687,7 @@ return { ["type"] = "implicit", }, }, - ["8736_ShockEffect"] = { + ["8922_ShockEffect"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 25, @@ -4563,7 +4701,7 @@ return { ["type"] = "implicit", }, }, - ["8747_ReducedShockEffectOnSelf"] = { + ["8933_ReducedShockEffectOnSelf"] = { ["AnyJewel"] = { ["max"] = 25, ["min"] = 20, @@ -4581,7 +4719,7 @@ return { ["type"] = "implicit", }, }, - ["8842_AdditionalCriticalStrikeChanceWithSpells"] = { + ["9028_AdditionalCriticalStrikeChanceWithSpells"] = { ["Gloves"] = { ["max"] = 0.8, ["min"] = 0.5, @@ -4595,7 +4733,7 @@ return { ["type"] = "implicit", }, }, - ["8887_DodgeSpellHitsWhileMoving"] = { + ["9074_DodgeSpellHitsWhileMoving"] = { ["Boots"] = { ["max"] = 10, ["min"] = 6, @@ -4609,7 +4747,7 @@ return { ["type"] = "implicit", }, }, - ["9300_YouCannotBeHindered"] = { + ["9490_YouCannotBeHindered"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 1, @@ -4630,7 +4768,7 @@ return { ["type"] = "implicit", }, }, - ["9349_IncreasedAuraEffectZealotryCorrupted"] = { + ["9540_IncreasedAuraEffectZealotryCorrupted"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 15, @@ -4652,7 +4790,7 @@ return { ["type"] = "implicit", }, }, - ["9402_PointBlank"] = { + ["9593_PointBlank"] = { ["Quiver"] = { ["max"] = 1, ["min"] = 1, @@ -4665,7 +4803,7 @@ return { ["type"] = "implicit", }, }, - ["9422_ResoluteTechnique"] = { + ["9613_ResoluteTechnique"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -4690,7 +4828,7 @@ return { ["type"] = "implicit", }, }, - ["957_BlockPercent"] = { + ["992_BlockPercent"] = { ["2HWeapon"] = { ["max"] = 4, ["min"] = 2, @@ -4712,7 +4850,7 @@ return { ["type"] = "implicit", }, }, - ["957_MonsterBlock"] = { + ["992_MonsterBlock"] = { ["Amulet"] = { ["max"] = 5, ["min"] = 4, @@ -4726,7 +4864,7 @@ return { ["type"] = "implicit", }, }, - ["961_ChanceToSuppressSpellsOld"] = { + ["996_ChanceToSuppressSpellsOld"] = { ["Boots"] = { ["max"] = 6, ["min"] = 3, @@ -4740,7 +4878,7 @@ return { ["type"] = "implicit", }, }, - ["962_ChanceToSuppressSpells"] = { + ["997_ChanceToSuppressSpells"] = { ["Boots"] = { ["max"] = 9, ["min"] = 4, @@ -4758,147 +4896,63 @@ return { ["type"] = "implicit", }, }, - ["971_BlockingBlocksSpells"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, - ["976_SpellBlockPercentage"] = { - ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 2, - }, + }, + ["Eater"] = { + ["1011_SpellBlockPercentage"] = { ["Amulet"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, - ["977_BlockWhileDualWielding"] = { - ["1HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["1HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["1HSword"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["1HWeapon"] = { ["max"] = 10, - ["min"] = 3, - }, - ["2HAxe"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["2HMace"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 3, + ["min"] = 5, }, - ["Claw"] = { + ["Chest"] = { ["max"] = 10, - ["min"] = 3, - }, - ["Dagger"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["Wand"] = { - ["max"] = 6, - ["min"] = 3, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "implicit", }, }, - ["999_IncreasedDexterityStrengthCorrupted"] = { + ["1011_SpellBlockPercentagePinnaclePresence"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 14, + ["min"] = 11, }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, + ["Chest"] = { + ["max"] = 14, + ["min"] = 11, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "implicit.stat_2996280658", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", ["type"] = "implicit", }, }, - ["999_IncreasedStrengthIntelligenceCorrupted"] = { + ["1011_SpellBlockPercentageUniquePresence"] = { ["Amulet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 12, + ["min"] = 8, }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "implicit.stat_1358320252", + ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", ["type"] = "implicit", }, }, - }, - ["Eater"] = { - ["1013_AttackDamage"] = { + ["1048_AttackDamage"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 14, @@ -4916,7 +4970,7 @@ return { ["type"] = "implicit", }, }, - ["1013_AttackDamagePinnaclePresence"] = { + ["1048_AttackDamagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 53, ["min"] = 44, @@ -4934,7 +4988,7 @@ return { ["type"] = "implicit", }, }, - ["1013_AttackDamageUniquePresence"] = { + ["1048_AttackDamageUniquePresence"] = { ["Amulet"] = { ["max"] = 41, ["min"] = 29, @@ -4952,7 +5006,7 @@ return { ["type"] = "implicit", }, }, - ["1038_SpellDamage"] = { + ["1073_SpellDamage"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 14, @@ -4970,7 +5024,7 @@ return { ["type"] = "implicit", }, }, - ["1038_SpellDamagePinnaclePresence"] = { + ["1073_SpellDamagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 53, ["min"] = 44, @@ -4988,7 +5042,7 @@ return { ["type"] = "implicit", }, }, - ["1038_SpellDamageUniquePresence"] = { + ["1073_SpellDamageUniquePresence"] = { ["Amulet"] = { ["max"] = 41, ["min"] = 29, @@ -5006,7 +5060,7 @@ return { ["type"] = "implicit", }, }, - ["1244_IncreasedAccuracyPercent"] = { + ["1279_IncreasedAccuracyPercent"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 9, @@ -5020,7 +5074,7 @@ return { ["type"] = "implicit", }, }, - ["1244_IncreasedAccuracyPercentPinnaclePresence"] = { + ["1279_IncreasedAccuracyPercentPinnaclePresence"] = { ["Gloves"] = { ["max"] = 28, ["min"] = 21, @@ -5034,7 +5088,7 @@ return { ["type"] = "implicit", }, }, - ["1244_IncreasedAccuracyPercentUniquePresence"] = { + ["1279_IncreasedAccuracyPercentUniquePresence"] = { ["Gloves"] = { ["max"] = 24, ["min"] = 15, @@ -5048,7 +5102,7 @@ return { ["type"] = "implicit", }, }, - ["1350_GlobalPhysicalDamageReductionRatingPercent"] = { + ["1385_GlobalPhysicalDamageReductionRatingPercent"] = { ["Amulet"] = { ["max"] = 28, ["min"] = 17, @@ -5066,7 +5120,7 @@ return { ["type"] = "implicit", }, }, - ["1350_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { + ["1385_GlobalPhysicalDamageReductionRatingPercentPinnaclePresence"] = { ["Amulet"] = { ["max"] = 40, ["min"] = 33, @@ -5084,7 +5138,7 @@ return { ["type"] = "implicit", }, }, - ["1350_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { + ["1385_GlobalPhysicalDamageReductionRatingPercentUniquePresence"] = { ["Amulet"] = { ["max"] = 34, ["min"] = 25, @@ -5102,7 +5156,7 @@ return { ["type"] = "implicit", }, }, - ["1358_GlobalEvasionRatingPercent"] = { + ["1393_GlobalEvasionRatingPercent"] = { ["Amulet"] = { ["max"] = 28, ["min"] = 17, @@ -5120,7 +5174,7 @@ return { ["type"] = "implicit", }, }, - ["1358_GlobalEvasionRatingPercentPinnaclePresence"] = { + ["1393_GlobalEvasionRatingPercentPinnaclePresence"] = { ["Amulet"] = { ["max"] = 40, ["min"] = 33, @@ -5138,7 +5192,7 @@ return { ["type"] = "implicit", }, }, - ["1358_GlobalEvasionRatingPercentUniquePresence"] = { + ["1393_GlobalEvasionRatingPercentUniquePresence"] = { ["Amulet"] = { ["max"] = 34, ["min"] = 25, @@ -5156,7 +5210,7 @@ return { ["type"] = "implicit", }, }, - ["1369_GlobalEnergyShieldPercent"] = { + ["1404_GlobalEnergyShieldPercent"] = { ["Amulet"] = { ["max"] = 17, ["min"] = 6, @@ -5174,7 +5228,7 @@ return { ["type"] = "implicit", }, }, - ["1369_GlobalEnergyShieldPercentPinnaclePresence"] = { + ["1404_GlobalEnergyShieldPercentPinnaclePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 22, @@ -5192,7 +5246,7 @@ return { ["type"] = "implicit", }, }, - ["1369_GlobalEnergyShieldPercentUniquePresence"] = { + ["1404_GlobalEnergyShieldPercentUniquePresence"] = { ["Amulet"] = { ["max"] = 23, ["min"] = 14, @@ -5210,7 +5264,7 @@ return { ["type"] = "implicit", }, }, - ["1373_EnergyShieldRegeneration"] = { + ["1408_EnergyShieldRegeneration"] = { ["Amulet"] = { ["max"] = 26, ["min"] = 21, @@ -5228,7 +5282,7 @@ return { ["type"] = "implicit", }, }, - ["1373_EnergyShieldRegenerationPinnaclePresence"] = { + ["1408_EnergyShieldRegenerationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 32, ["min"] = 29, @@ -5246,7 +5300,7 @@ return { ["type"] = "implicit", }, }, - ["1373_EnergyShieldRegenerationUniquePresence"] = { + ["1408_EnergyShieldRegenerationUniquePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 25, @@ -5264,7 +5318,7 @@ return { ["type"] = "implicit", }, }, - ["1376_EnergyShieldRecoveryRate"] = { + ["1411_EnergyShieldRecoveryRate"] = { ["Chest"] = { ["max"] = 12, ["min"] = 7, @@ -5278,7 +5332,7 @@ return { ["type"] = "implicit", }, }, - ["1376_EnergyShieldRecoveryRatePinnaclePresence"] = { + ["1411_EnergyShieldRecoveryRatePinnaclePresence"] = { ["Chest"] = { ["max"] = 16, ["min"] = 13, @@ -5292,7 +5346,7 @@ return { ["type"] = "implicit", }, }, - ["1376_EnergyShieldRecoveryRateUniquePresence"] = { + ["1411_EnergyShieldRecoveryRateUniquePresence"] = { ["Chest"] = { ["max"] = 14, ["min"] = 10, @@ -5306,7 +5360,7 @@ return { ["type"] = "implicit", }, }, - ["1384_LifeRegenerationPercentPerEnduranceCharge"] = { + ["1419_LifeRegenerationPercentPerEnduranceCharge"] = { ["Boots"] = { ["max"] = 0.3, ["min"] = 0.2, @@ -5320,7 +5374,7 @@ return { ["type"] = "implicit", }, }, - ["1384_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { + ["1419_LifeRegenerationPercentPerEnduranceChargePinnaclePresence"] = { ["Boots"] = { ["max"] = 0.5, ["min"] = 0.4, @@ -5334,7 +5388,7 @@ return { ["type"] = "implicit", }, }, - ["1384_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { + ["1419_LifeRegenerationPercentPerEnduranceChargeUniquePresence"] = { ["Boots"] = { ["max"] = 0.4, ["min"] = 0.3, @@ -5348,7 +5402,7 @@ return { ["type"] = "implicit", }, }, - ["1385_LifeRegenerationRate"] = { + ["1420_LifeRegenerationRate"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 7, @@ -5366,7 +5420,7 @@ return { ["type"] = "implicit", }, }, - ["1385_LifeRegenerationRatePinnaclePresence"] = { + ["1420_LifeRegenerationRatePinnaclePresence"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 15, @@ -5384,7 +5438,7 @@ return { ["type"] = "implicit", }, }, - ["1385_LifeRegenerationRateUniquePresence"] = { + ["1420_LifeRegenerationRateUniquePresence"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 11, @@ -5402,7 +5456,7 @@ return { ["type"] = "implicit", }, }, - ["1386_LifeRecoveryRate"] = { + ["1421_LifeRecoveryRate"] = { ["Chest"] = { ["max"] = 12, ["min"] = 7, @@ -5416,7 +5470,7 @@ return { ["type"] = "implicit", }, }, - ["1386_LifeRecoveryRatePinnaclePresence"] = { + ["1421_LifeRecoveryRatePinnaclePresence"] = { ["Chest"] = { ["max"] = 16, ["min"] = 13, @@ -5430,7 +5484,7 @@ return { ["type"] = "implicit", }, }, - ["1386_LifeRecoveryRateUniquePresence"] = { + ["1421_LifeRecoveryRateUniquePresence"] = { ["Chest"] = { ["max"] = 14, ["min"] = 10, @@ -5444,7 +5498,7 @@ return { ["type"] = "implicit", }, }, - ["1392_ManaRegeneration"] = { + ["1427_ManaRegeneration"] = { ["Helmet"] = { ["max"] = 36, ["min"] = 19, @@ -5458,7 +5512,7 @@ return { ["type"] = "implicit", }, }, - ["1392_ManaRegenerationPinnaclePresence"] = { + ["1427_ManaRegenerationPinnaclePresence"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 49, @@ -5472,7 +5526,7 @@ return { ["type"] = "implicit", }, }, - ["1392_ManaRegenerationUniquePresence"] = { + ["1427_ManaRegenerationUniquePresence"] = { ["Helmet"] = { ["max"] = 48, ["min"] = 34, @@ -5486,7 +5540,7 @@ return { ["type"] = "implicit", }, }, - ["1394_ManaRecoveryRate"] = { + ["1429_ManaRecoveryRate"] = { ["Chest"] = { ["max"] = 12, ["min"] = 7, @@ -5500,7 +5554,7 @@ return { ["type"] = "implicit", }, }, - ["1394_ManaRecoveryRatePinnaclePresence"] = { + ["1429_ManaRecoveryRatePinnaclePresence"] = { ["Chest"] = { ["max"] = 16, ["min"] = 13, @@ -5514,7 +5568,7 @@ return { ["type"] = "implicit", }, }, - ["1394_ManaRecoveryRateUniquePresence"] = { + ["1429_ManaRecoveryRateUniquePresence"] = { ["Chest"] = { ["max"] = 14, ["min"] = 10, @@ -5528,7 +5582,7 @@ return { ["type"] = "implicit", }, }, - ["1427_AllResistances"] = { + ["1462_AllResistances"] = { ["Chest"] = { ["max"] = 16, ["min"] = 5, @@ -5542,7 +5596,7 @@ return { ["type"] = "implicit", }, }, - ["1427_AllResistancesPinnaclePresence"] = { + ["1462_AllResistancesPinnaclePresence"] = { ["Chest"] = { ["max"] = 28, ["min"] = 21, @@ -5556,7 +5610,7 @@ return { ["type"] = "implicit", }, }, - ["1427_AllResistancesUniquePresence"] = { + ["1462_AllResistancesUniquePresence"] = { ["Chest"] = { ["max"] = 22, ["min"] = 13, @@ -5570,7 +5624,7 @@ return { ["type"] = "implicit", }, }, - ["1475_PhysicalDamageLifeLeechHundredThousand"] = { + ["1510_PhysicalDamageLifeLeechHundredThousand"] = { ["Gloves"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -5579,12 +5633,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2508100173", + ["id"] = "implicit.stat_3764265320", ["text"] = "#% of Physical Damage Leeched as Life", ["type"] = "implicit", }, }, - ["1475_PhysicalDamageLifeLeechPinnaclePresence"] = { + ["1510_PhysicalDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { ["max"] = 1.1, ["min"] = 0.8, @@ -5598,7 +5652,7 @@ return { ["type"] = "implicit", }, }, - ["1475_PhysicalDamageLifeLeechUniquePresence"] = { + ["1510_PhysicalDamageLifeLeechUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -5612,7 +5666,7 @@ return { ["type"] = "implicit", }, }, - ["1479_FireDamageLifeLeechHundredThousand"] = { + ["1514_FireDamageLifeLeechHundredThousand"] = { ["Gloves"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -5626,7 +5680,7 @@ return { ["type"] = "implicit", }, }, - ["1479_FireDamageLifeLeechPinnaclePresence"] = { + ["1514_FireDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { ["max"] = 1.1, ["min"] = 0.8, @@ -5640,7 +5694,7 @@ return { ["type"] = "implicit", }, }, - ["1479_FireDamageLifeLeechUniquePresence"] = { + ["1514_FireDamageLifeLeechUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -5654,7 +5708,7 @@ return { ["type"] = "implicit", }, }, - ["1484_ColdDamageLifeLeechHundredThousand"] = { + ["1519_ColdDamageLifeLeechHundredThousand"] = { ["Gloves"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -5668,7 +5722,7 @@ return { ["type"] = "implicit", }, }, - ["1484_ColdDamageLifeLeechPinnaclePresence"] = { + ["1519_ColdDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { ["max"] = 1.1, ["min"] = 0.8, @@ -5682,7 +5736,7 @@ return { ["type"] = "implicit", }, }, - ["1484_ColdDamageLifeLeechUniquePresence"] = { + ["1519_ColdDamageLifeLeechUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -5696,7 +5750,7 @@ return { ["type"] = "implicit", }, }, - ["1488_LightningDamageLifeLeechHundredThousand"] = { + ["1523_LightningDamageLifeLeechHundredThousand"] = { ["Gloves"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -5710,7 +5764,7 @@ return { ["type"] = "implicit", }, }, - ["1488_LightningDamageLifeLeechPinnaclePresence"] = { + ["1523_LightningDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { ["max"] = 1.1, ["min"] = 0.8, @@ -5724,7 +5778,7 @@ return { ["type"] = "implicit", }, }, - ["1488_LightningDamageLifeLeechUniquePresence"] = { + ["1523_LightningDamageLifeLeechUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -5738,7 +5792,7 @@ return { ["type"] = "implicit", }, }, - ["1491_ChaosDamageLifeLeechHundredThousand"] = { + ["1526_ChaosDamageLifeLeechHundredThousand"] = { ["Gloves"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -5747,12 +5801,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2238792070", + ["id"] = "implicit.stat_744082851", ["text"] = "#% of Chaos Damage Leeched as Life", ["type"] = "implicit", }, }, - ["1491_ChaosDamageLifeLeechPinnaclePresence"] = { + ["1526_ChaosDamageLifeLeechPinnaclePresence"] = { ["Gloves"] = { ["max"] = 1.1, ["min"] = 0.8, @@ -5766,7 +5820,7 @@ return { ["type"] = "implicit", }, }, - ["1491_ChaosDamageLifeLeechUniquePresence"] = { + ["1526_ChaosDamageLifeLeechUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -5780,7 +5834,7 @@ return { ["type"] = "implicit", }, }, - ["1596_AdditionalPierce"] = { + ["1631_AdditionalPierce"] = { ["Gloves"] = { ["max"] = 2, ["min"] = 1, @@ -5795,7 +5849,7 @@ return { ["type"] = "implicit", }, }, - ["1596_AdditionalPiercePinnaclePresence"] = { + ["1631_AdditionalPiercePinnaclePresence"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 3, @@ -5809,7 +5863,7 @@ return { ["type"] = "implicit", }, }, - ["1596_AdditionalPierceUniquePresence"] = { + ["1631_AdditionalPierceUniquePresence"] = { ["Gloves"] = { ["max"] = 3, ["min"] = 2, @@ -5823,7 +5877,7 @@ return { ["type"] = "implicit", }, }, - ["1649_AvoidElementalStatusAilments"] = { + ["1684_AvoidElementalStatusAilments"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -5837,7 +5891,7 @@ return { ["type"] = "implicit", }, }, - ["1649_AvoidElementalStatusAilmentsPinnaclePresence"] = { + ["1684_AvoidElementalStatusAilmentsPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -5851,7 +5905,7 @@ return { ["type"] = "implicit", }, }, - ["1649_AvoidElementalStatusAilmentsUniquePresence"] = { + ["1684_AvoidElementalStatusAilmentsUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -5865,7 +5919,7 @@ return { ["type"] = "implicit", }, }, - ["1655_ChanceToAvoidPoison"] = { + ["1690_ChanceToAvoidPoison"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -5879,7 +5933,7 @@ return { ["type"] = "implicit", }, }, - ["1655_ChanceToAvoidPoisonPinnaclePresence"] = { + ["1690_ChanceToAvoidPoisonPinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -5893,7 +5947,7 @@ return { ["type"] = "implicit", }, }, - ["1655_ChanceToAvoidPoisonUniquePresence"] = { + ["1690_ChanceToAvoidPoisonUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -5907,7 +5961,7 @@ return { ["type"] = "implicit", }, }, - ["1666_IncreasedAilmentDuration"] = { + ["1701_IncreasedAilmentDuration"] = { ["Amulet"] = { ["max"] = 24, ["min"] = 13, @@ -5925,7 +5979,7 @@ return { ["type"] = "implicit", }, }, - ["1666_IncreasedAilmentDurationPinnaclePresence"] = { + ["1701_IncreasedAilmentDurationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 29, @@ -5943,7 +5997,7 @@ return { ["type"] = "implicit", }, }, - ["1666_IncreasedAilmentDurationUniquePresence"] = { + ["1701_IncreasedAilmentDurationUniquePresence"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 21, @@ -5961,7 +6015,7 @@ return { ["type"] = "implicit", }, }, - ["1680_ReducedFreezeDuration"] = { + ["1715_ReducedFreezeDuration"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 33, @@ -5975,7 +6029,7 @@ return { ["type"] = "implicit", }, }, - ["1680_ReducedFreezeDurationPinnaclePresence"] = { + ["1715_ReducedFreezeDurationPinnaclePresence"] = { ["Helmet"] = { ["max"] = 70, ["min"] = 57, @@ -5989,7 +6043,7 @@ return { ["type"] = "implicit", }, }, - ["1680_ReducedFreezeDurationUniquePresence"] = { + ["1715_ReducedFreezeDurationUniquePresence"] = { ["Helmet"] = { ["max"] = 61, ["min"] = 45, @@ -6003,7 +6057,7 @@ return { ["type"] = "implicit", }, }, - ["1681_ReducedIgniteDurationOnSelf"] = { + ["1716_ReducedIgniteDurationOnSelf"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 33, @@ -6017,7 +6071,7 @@ return { ["type"] = "implicit", }, }, - ["1681_ReducedIgniteDurationOnSelfPinnaclePresence"] = { + ["1716_ReducedIgniteDurationOnSelfPinnaclePresence"] = { ["Helmet"] = { ["max"] = 70, ["min"] = 57, @@ -6031,7 +6085,7 @@ return { ["type"] = "implicit", }, }, - ["1681_ReducedIgniteDurationOnSelfUniquePresence"] = { + ["1716_ReducedIgniteDurationOnSelfUniquePresence"] = { ["Helmet"] = { ["max"] = 61, ["min"] = 45, @@ -6045,7 +6099,7 @@ return { ["type"] = "implicit", }, }, - ["1701_SkillEffectDuration"] = { + ["1736_SkillEffectDuration"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 7, @@ -6059,7 +6113,7 @@ return { ["type"] = "implicit", }, }, - ["1701_SkillEffectDurationPinnaclePresence"] = { + ["1736_SkillEffectDurationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 23, @@ -6073,7 +6127,7 @@ return { ["type"] = "implicit", }, }, - ["1701_SkillEffectDurationUniquePresence"] = { + ["1736_SkillEffectDurationUniquePresence"] = { ["Amulet"] = { ["max"] = 24, ["min"] = 15, @@ -6087,7 +6141,7 @@ return { ["type"] = "implicit", }, }, - ["1736_PhysicalAddedAsFire"] = { + ["1771_PhysicalAddedAsFire"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -6101,7 +6155,7 @@ return { ["type"] = "implicit", }, }, - ["1736_PhysicalAddedAsFirePinnaclePresence"] = { + ["1771_PhysicalAddedAsFirePinnaclePresence"] = { ["Boots"] = { ["max"] = 10, ["min"] = 9, @@ -6115,7 +6169,7 @@ return { ["type"] = "implicit", }, }, - ["1736_PhysicalAddedAsFireUniquePresence"] = { + ["1771_PhysicalAddedAsFireUniquePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 6, @@ -6129,7 +6183,7 @@ return { ["type"] = "implicit", }, }, - ["1737_PhysicalAddedAsCold"] = { + ["1772_PhysicalAddedAsCold"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -6143,7 +6197,7 @@ return { ["type"] = "implicit", }, }, - ["1737_PhysicalAddedAsColdPinnaclePresence"] = { + ["1772_PhysicalAddedAsColdPinnaclePresence"] = { ["Boots"] = { ["max"] = 10, ["min"] = 9, @@ -6157,7 +6211,7 @@ return { ["type"] = "implicit", }, }, - ["1737_PhysicalAddedAsColdUniquePresence"] = { + ["1772_PhysicalAddedAsColdUniquePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 6, @@ -6171,7 +6225,7 @@ return { ["type"] = "implicit", }, }, - ["1738_PhysicalAddedAsLightning"] = { + ["1773_PhysicalAddedAsLightning"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -6185,7 +6239,7 @@ return { ["type"] = "implicit", }, }, - ["1738_PhysicalAddedAsLightningPinnaclePresence"] = { + ["1773_PhysicalAddedAsLightningPinnaclePresence"] = { ["Boots"] = { ["max"] = 10, ["min"] = 9, @@ -6199,7 +6253,7 @@ return { ["type"] = "implicit", }, }, - ["1738_PhysicalAddedAsLightningUniquePresence"] = { + ["1773_PhysicalAddedAsLightningUniquePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 6, @@ -6213,7 +6267,7 @@ return { ["type"] = "implicit", }, }, - ["1739_PhysicalDamageAddedAsChaos"] = { + ["1774_PhysicalDamageAddedAsChaos"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -6227,7 +6281,7 @@ return { ["type"] = "implicit", }, }, - ["1739_PhysicalDamageAddedAsChaosPinnaclePresence"] = { + ["1774_PhysicalDamageAddedAsChaosPinnaclePresence"] = { ["Boots"] = { ["max"] = 10, ["min"] = 9, @@ -6241,7 +6295,7 @@ return { ["type"] = "implicit", }, }, - ["1739_PhysicalDamageAddedAsChaosUniquePresence"] = { + ["1774_PhysicalDamageAddedAsChaosUniquePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 6, @@ -6255,7 +6309,7 @@ return { ["type"] = "implicit", }, }, - ["1759_ConvertPhysicalToFireImplicit"] = { + ["1794_ConvertPhysicalToFireImplicit"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 10, @@ -6269,7 +6323,7 @@ return { ["type"] = "implicit", }, }, - ["1759_ConvertPhysicalToFirePinnaclePresence"] = { + ["1794_ConvertPhysicalToFirePinnaclePresence"] = { ["Gloves"] = { ["max"] = 65, ["min"] = 50, @@ -6283,7 +6337,7 @@ return { ["type"] = "implicit", }, }, - ["1759_ConvertPhysicalToFireUniquePresence"] = { + ["1794_ConvertPhysicalToFireUniquePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 30, @@ -6297,7 +6351,7 @@ return { ["type"] = "implicit", }, }, - ["1761_ConvertPhysicalToColdImplicit"] = { + ["1796_ConvertPhysicalToColdImplicit"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 10, @@ -6311,7 +6365,7 @@ return { ["type"] = "implicit", }, }, - ["1761_ConvertPhysicalToColdPinnaclePresence"] = { + ["1796_ConvertPhysicalToColdPinnaclePresence"] = { ["Gloves"] = { ["max"] = 65, ["min"] = 50, @@ -6325,7 +6379,7 @@ return { ["type"] = "implicit", }, }, - ["1761_ConvertPhysicalToColdUniquePresence"] = { + ["1796_ConvertPhysicalToColdUniquePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 30, @@ -6339,7 +6393,7 @@ return { ["type"] = "implicit", }, }, - ["1763_ConvertPhysicalToLightningImplicit"] = { + ["1798_ConvertPhysicalToLightningImplicit"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 10, @@ -6353,7 +6407,7 @@ return { ["type"] = "implicit", }, }, - ["1763_ConvertPhysicalToLightningPinnaclePresence"] = { + ["1798_ConvertPhysicalToLightningPinnaclePresence"] = { ["Gloves"] = { ["max"] = 65, ["min"] = 50, @@ -6367,7 +6421,7 @@ return { ["type"] = "implicit", }, }, - ["1763_ConvertPhysicalToLightningUniquePresence"] = { + ["1798_ConvertPhysicalToLightningUniquePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 30, @@ -6381,7 +6435,7 @@ return { ["type"] = "implicit", }, }, - ["1766_ConvertPhysicalToChaosPinnaclePresence"] = { + ["1801_ConvertPhysicalToChaosPinnaclePresence"] = { ["Gloves"] = { ["max"] = 65, ["min"] = 50, @@ -6395,7 +6449,7 @@ return { ["type"] = "implicit", }, }, - ["1766_ConvertPhysicalToChaosUniquePresence"] = { + ["1801_ConvertPhysicalToChaosUniquePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 30, @@ -6409,7 +6463,7 @@ return { ["type"] = "implicit", }, }, - ["1766_PhysicalDamageConvertToChaosImplicit"] = { + ["1801_PhysicalDamageConvertToChaosImplicit"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 10, @@ -6423,7 +6477,7 @@ return { ["type"] = "implicit", }, }, - ["1781_IncreasedManaRegenerationPerPowerCharge"] = { + ["1816_IncreasedManaRegenerationPerPowerCharge"] = { ["Helmet"] = { ["max"] = 6, ["min"] = 5, @@ -6437,7 +6491,7 @@ return { ["type"] = "implicit", }, }, - ["1781_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { + ["1816_IncreasedManaRegenerationPerPowerChargePinnaclePresence"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 7, @@ -6451,7 +6505,7 @@ return { ["type"] = "implicit", }, }, - ["1781_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { + ["1816_IncreasedManaRegenerationPerPowerChargeUniquePresence"] = { ["Helmet"] = { ["max"] = 7, ["min"] = 6, @@ -6465,7 +6519,7 @@ return { ["type"] = "implicit", }, }, - ["1827_ChanceToIgnite"] = { + ["1862_ChanceToIgnite"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 5, @@ -6479,7 +6533,7 @@ return { ["type"] = "implicit", }, }, - ["1827_ChanceToIgnitePinnaclePresence"] = { + ["1862_ChanceToIgnitePinnaclePresence"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 35, @@ -6493,7 +6547,7 @@ return { ["type"] = "implicit", }, }, - ["1827_ChanceToIgniteUniquePresence"] = { + ["1862_ChanceToIgniteUniquePresence"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 20, @@ -6507,7 +6561,7 @@ return { ["type"] = "implicit", }, }, - ["1830_ChanceToFreeze"] = { + ["1865_ChanceToFreeze"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 5, @@ -6521,7 +6575,7 @@ return { ["type"] = "implicit", }, }, - ["1830_ChanceToFreezePinnaclePresence"] = { + ["1865_ChanceToFreezePinnaclePresence"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 35, @@ -6535,7 +6589,7 @@ return { ["type"] = "implicit", }, }, - ["1830_ChanceToFreezeUniquePresence"] = { + ["1865_ChanceToFreezeUniquePresence"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 20, @@ -6549,7 +6603,7 @@ return { ["type"] = "implicit", }, }, - ["1834_ChanceToShock"] = { + ["1869_ChanceToShock"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 5, @@ -6563,7 +6617,7 @@ return { ["type"] = "implicit", }, }, - ["1834_ChanceToShockPinnaclePresence"] = { + ["1869_ChanceToShockPinnaclePresence"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 35, @@ -6577,7 +6631,7 @@ return { ["type"] = "implicit", }, }, - ["1834_ChanceToShockUniquePresence"] = { + ["1869_ChanceToShockUniquePresence"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 20, @@ -6591,7 +6645,7 @@ return { ["type"] = "implicit", }, }, - ["2028_ManaReservationEfficiency"] = { + ["2064_ManaReservationEfficiency"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 7, @@ -6609,7 +6663,7 @@ return { ["type"] = "implicit", }, }, - ["2028_ManaReservationEfficiencyPinnaclePresence"] = { + ["2064_ManaReservationEfficiencyPinnaclePresence"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 15, @@ -6627,7 +6681,7 @@ return { ["type"] = "implicit", }, }, - ["2028_ManaReservationEfficiencyUniquePresence"] = { + ["2064_ManaReservationEfficiencyUniquePresence"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 11, @@ -6645,7 +6699,7 @@ return { ["type"] = "implicit", }, }, - ["2238_PhysicalDamageTakenAsFireUber"] = { + ["2280_PhysicalDamageTakenAsFireUber"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -6659,7 +6713,7 @@ return { ["type"] = "implicit", }, }, - ["2238_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { + ["2280_PhysicalDamageTakenAsFireUberPinnaclePresence"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 11, @@ -6673,7 +6727,7 @@ return { ["type"] = "implicit", }, }, - ["2238_PhysicalDamageTakenAsFireUberUniquePresence"] = { + ["2280_PhysicalDamageTakenAsFireUberUniquePresence"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 8, @@ -6687,7 +6741,7 @@ return { ["type"] = "implicit", }, }, - ["2239_PhysicalDamageTakenAsColdUber"] = { + ["2281_PhysicalDamageTakenAsColdUber"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -6701,7 +6755,7 @@ return { ["type"] = "implicit", }, }, - ["2239_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { + ["2281_PhysicalDamageTakenAsColdUberPinnaclePresence"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 11, @@ -6715,7 +6769,7 @@ return { ["type"] = "implicit", }, }, - ["2239_PhysicalDamageTakenAsColdUberUniquePresence"] = { + ["2281_PhysicalDamageTakenAsColdUberUniquePresence"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 8, @@ -6729,7 +6783,7 @@ return { ["type"] = "implicit", }, }, - ["2240_PhysicalDamageTakenAsLightningUber"] = { + ["2282_PhysicalDamageTakenAsLightningUber"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -6743,7 +6797,7 @@ return { ["type"] = "implicit", }, }, - ["2240_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { + ["2282_PhysicalDamageTakenAsLightningUberPinnaclePresence"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 11, @@ -6757,7 +6811,7 @@ return { ["type"] = "implicit", }, }, - ["2240_PhysicalDamageTakenAsLightningUberUniquePresence"] = { + ["2282_PhysicalDamageTakenAsLightningUberUniquePresence"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 8, @@ -6771,7 +6825,7 @@ return { ["type"] = "implicit", }, }, - ["2242_PhysicalDamageTakenAsChaosUber"] = { + ["2284_PhysicalDamageTakenAsChaosUber"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -6785,7 +6839,7 @@ return { ["type"] = "implicit", }, }, - ["2242_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { + ["2284_PhysicalDamageTakenAsChaosUberPinnaclePresence"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 11, @@ -6799,7 +6853,7 @@ return { ["type"] = "implicit", }, }, - ["2242_PhysicalDamageTakenAsChaosUberUniquePresence"] = { + ["2284_PhysicalDamageTakenAsChaosUberUniquePresence"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 8, @@ -6813,7 +6867,7 @@ return { ["type"] = "implicit", }, }, - ["2280_ChanceToBleed"] = { + ["2322_ChanceToBleed"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 5, @@ -6827,7 +6881,7 @@ return { ["type"] = "implicit", }, }, - ["2280_ChanceToBleedPinnaclePresence"] = { + ["2322_ChanceToBleedPinnaclePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 35, @@ -6841,7 +6895,7 @@ return { ["type"] = "implicit", }, }, - ["2280_ChanceToBleedUniquePresence"] = { + ["2322_ChanceToBleedUniquePresence"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 20, @@ -6855,7 +6909,7 @@ return { ["type"] = "implicit", }, }, - ["2355_FasterIgniteDamage"] = { + ["2397_FasterIgniteDamage"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -6869,7 +6923,7 @@ return { ["type"] = "implicit", }, }, - ["2355_FasterIgniteDamagePinnaclePresence"] = { + ["2397_FasterIgniteDamagePinnaclePresence"] = { ["Boots"] = { ["max"] = 16, ["min"] = 13, @@ -6883,7 +6937,7 @@ return { ["type"] = "implicit", }, }, - ["2355_FasterIgniteDamageUniquePresence"] = { + ["2397_FasterIgniteDamageUniquePresence"] = { ["Boots"] = { ["max"] = 13, ["min"] = 9, @@ -6897,7 +6951,7 @@ return { ["type"] = "implicit", }, }, - ["2389_MarkEffect"] = { + ["2431_MarkEffect"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 6, @@ -6911,7 +6965,7 @@ return { ["type"] = "implicit", }, }, - ["2389_MarkEffectPinnaclePresence"] = { + ["2431_MarkEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 29, ["min"] = 22, @@ -6925,7 +6979,7 @@ return { ["type"] = "implicit", }, }, - ["2389_MarkEffectUniquePresence"] = { + ["2431_MarkEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 23, ["min"] = 14, @@ -6939,7 +6993,7 @@ return { ["type"] = "implicit", }, }, - ["2760_ArmourPenetration"] = { + ["2806_ArmourPenetration"] = { ["Gloves"] = { ["max"] = 19, ["min"] = 8, @@ -6953,7 +7007,7 @@ return { ["type"] = "implicit", }, }, - ["2760_ArmourPenetrationPinnaclePresence"] = { + ["2806_ArmourPenetrationPinnaclePresence"] = { ["Gloves"] = { ["max"] = 31, ["min"] = 24, @@ -6967,7 +7021,7 @@ return { ["type"] = "implicit", }, }, - ["2760_ArmourPenetrationUniquePresence"] = { + ["2806_ArmourPenetrationUniquePresence"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 16, @@ -6981,7 +7035,7 @@ return { ["type"] = "implicit", }, }, - ["2763_FireResistancePenetration"] = { + ["2809_FireResistancePenetration"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -6999,7 +7053,7 @@ return { ["type"] = "implicit", }, }, - ["2763_FireResistancePenetrationPinnaclePresence"] = { + ["2809_FireResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 9, @@ -7017,7 +7071,7 @@ return { ["type"] = "implicit", }, }, - ["2763_FireResistancePenetrationUniquePresence"] = { + ["2809_FireResistancePenetrationUniquePresence"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 6, @@ -7035,7 +7089,7 @@ return { ["type"] = "implicit", }, }, - ["2764_ColdResistancePenetration"] = { + ["2810_ColdResistancePenetration"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -7053,7 +7107,7 @@ return { ["type"] = "implicit", }, }, - ["2764_ColdResistancePenetrationPinnaclePresence"] = { + ["2810_ColdResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 9, @@ -7071,7 +7125,7 @@ return { ["type"] = "implicit", }, }, - ["2764_ColdResistancePenetrationUniquePresence"] = { + ["2810_ColdResistancePenetrationUniquePresence"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 6, @@ -7089,7 +7143,7 @@ return { ["type"] = "implicit", }, }, - ["2765_LightningResistancePenetration"] = { + ["2811_LightningResistancePenetration"] = { ["Amulet"] = { ["max"] = 6, ["min"] = 4, @@ -7107,7 +7161,7 @@ return { ["type"] = "implicit", }, }, - ["2765_LightningResistancePenetrationPinnaclePresence"] = { + ["2811_LightningResistancePenetrationPinnaclePresence"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 9, @@ -7125,7 +7179,7 @@ return { ["type"] = "implicit", }, }, - ["2765_LightningResistancePenetrationUniquePresence"] = { + ["2811_LightningResistancePenetrationUniquePresence"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 6, @@ -7143,7 +7197,7 @@ return { ["type"] = "implicit", }, }, - ["2949_PoisonOnHit"] = { + ["2995_PoisonOnHit"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 5, @@ -7157,7 +7211,7 @@ return { ["type"] = "implicit", }, }, - ["2949_PoisonOnHitPinnaclePresence"] = { + ["2995_PoisonOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 35, @@ -7171,7 +7225,7 @@ return { ["type"] = "implicit", }, }, - ["2949_PoisonOnHitUniquePresence"] = { + ["2995_PoisonOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 20, @@ -7185,7 +7239,7 @@ return { ["type"] = "implicit", }, }, - ["3050_IncreasedStunThreshold"] = { + ["3096_IncreasedStunThreshold"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -7199,7 +7253,7 @@ return { ["type"] = "implicit", }, }, - ["3050_IncreasedStunThresholdPinnaclePresence"] = { + ["3096_IncreasedStunThresholdPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -7213,7 +7267,7 @@ return { ["type"] = "implicit", }, }, - ["3050_IncreasedStunThresholdUniquePresence"] = { + ["3096_IncreasedStunThresholdUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -7227,7 +7281,7 @@ return { ["type"] = "implicit", }, }, - ["3055_WarcrySpeed"] = { + ["3101_WarcrySpeed"] = { ["Boots"] = { ["max"] = 26, ["min"] = 15, @@ -7241,7 +7295,7 @@ return { ["type"] = "implicit", }, }, - ["3055_WarcrySpeedPinnaclePresence"] = { + ["3101_WarcrySpeedPinnaclePresence"] = { ["Boots"] = { ["max"] = 34, ["min"] = 27, @@ -7255,7 +7309,7 @@ return { ["type"] = "implicit", }, }, - ["3055_WarcrySpeedUniquePresence"] = { + ["3101_WarcrySpeedUniquePresence"] = { ["Boots"] = { ["max"] = 30, ["min"] = 21, @@ -7269,7 +7323,7 @@ return { ["type"] = "implicit", }, }, - ["3066_ArcaneSurgeEffect"] = { + ["3112_ArcaneSurgeEffect"] = { ["Helmet"] = { ["max"] = 17, ["min"] = 6, @@ -7283,7 +7337,7 @@ return { ["type"] = "implicit", }, }, - ["3066_ArcaneSurgeEffectPinnaclePresence"] = { + ["3112_ArcaneSurgeEffectPinnaclePresence"] = { ["Helmet"] = { ["max"] = 29, ["min"] = 22, @@ -7297,7 +7351,7 @@ return { ["type"] = "implicit", }, }, - ["3066_ArcaneSurgeEffectUniquePresence"] = { + ["3112_ArcaneSurgeEffectUniquePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 14, @@ -7311,7 +7365,7 @@ return { ["type"] = "implicit", }, }, - ["3133_AngerAuraEffect"] = { + ["3179_AngerAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7325,7 +7379,7 @@ return { ["type"] = "implicit", }, }, - ["3133_AngerAuraEffectPinnaclePresence"] = { + ["3179_AngerAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7339,7 +7393,7 @@ return { ["type"] = "implicit", }, }, - ["3133_AngerAuraEffectUniquePresence"] = { + ["3179_AngerAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7353,7 +7407,7 @@ return { ["type"] = "implicit", }, }, - ["3134_PurityOfElementsEffect"] = { + ["3180_PurityOfElementsEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7367,7 +7421,7 @@ return { ["type"] = "implicit", }, }, - ["3134_PurityOfElementsEffectPinnaclePresence"] = { + ["3180_PurityOfElementsEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7381,7 +7435,7 @@ return { ["type"] = "implicit", }, }, - ["3134_PurityOfElementsEffectUniquePresence"] = { + ["3180_PurityOfElementsEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7395,7 +7449,7 @@ return { ["type"] = "implicit", }, }, - ["3135_PurityOfFireEffect"] = { + ["3181_PurityOfFireEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7409,7 +7463,7 @@ return { ["type"] = "implicit", }, }, - ["3135_PurityOfFireEffectPinnaclePresence"] = { + ["3181_PurityOfFireEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7423,7 +7477,7 @@ return { ["type"] = "implicit", }, }, - ["3135_PurityOfFireEffectUniquePresence"] = { + ["3181_PurityOfFireEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7437,7 +7491,7 @@ return { ["type"] = "implicit", }, }, - ["3136_PurityOfIceEffect"] = { + ["3182_PurityOfIceEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7451,7 +7505,7 @@ return { ["type"] = "implicit", }, }, - ["3136_PurityOfIceEffectPinnaclePresence"] = { + ["3182_PurityOfIceEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7465,7 +7519,7 @@ return { ["type"] = "implicit", }, }, - ["3136_PurityOfIceEffectUniquePresence"] = { + ["3182_PurityOfIceEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7479,7 +7533,7 @@ return { ["type"] = "implicit", }, }, - ["3137_PurityOfLightningEffect"] = { + ["3183_PurityOfLightningEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7493,7 +7547,7 @@ return { ["type"] = "implicit", }, }, - ["3137_PurityOfLightningEffectPinnaclePresence"] = { + ["3183_PurityOfLightningEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7507,7 +7561,7 @@ return { ["type"] = "implicit", }, }, - ["3137_PurityOfLightningEffectUniquePresence"] = { + ["3183_PurityOfLightningEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7521,7 +7575,7 @@ return { ["type"] = "implicit", }, }, - ["3138_WrathAuraEffect"] = { + ["3184_WrathAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7535,7 +7589,7 @@ return { ["type"] = "implicit", }, }, - ["3138_WrathAuraEffectPinnaclePresence"] = { + ["3184_WrathAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7549,7 +7603,7 @@ return { ["type"] = "implicit", }, }, - ["3138_WrathAuraEffectUniquePresence"] = { + ["3184_WrathAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7563,7 +7617,7 @@ return { ["type"] = "implicit", }, }, - ["3140_GraceAuraEffect"] = { + ["3186_GraceAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7577,7 +7631,7 @@ return { ["type"] = "implicit", }, }, - ["3140_GraceAuraEffectPinnaclePresence"] = { + ["3186_GraceAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7591,7 +7645,7 @@ return { ["type"] = "implicit", }, }, - ["3140_GraceAuraEffectUniquePresence"] = { + ["3186_GraceAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7605,7 +7659,7 @@ return { ["type"] = "implicit", }, }, - ["3141_HasteAuraEffect"] = { + ["3187_HasteAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7619,7 +7673,7 @@ return { ["type"] = "implicit", }, }, - ["3141_HasteAuraEffectPinnaclePresence"] = { + ["3187_HasteAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7633,7 +7687,7 @@ return { ["type"] = "implicit", }, }, - ["3141_HasteAuraEffectUniquePresence"] = { + ["3187_HasteAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7647,7 +7701,7 @@ return { ["type"] = "implicit", }, }, - ["3143_HatredAuraEffect"] = { + ["3189_HatredAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7661,7 +7715,7 @@ return { ["type"] = "implicit", }, }, - ["3143_HatredAuraEffectPinnaclePresence"] = { + ["3189_HatredAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7675,7 +7729,7 @@ return { ["type"] = "implicit", }, }, - ["3143_HatredAuraEffectUniquePresence"] = { + ["3189_HatredAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7689,7 +7743,7 @@ return { ["type"] = "implicit", }, }, - ["3144_DeterminationAuraEffect"] = { + ["3190_DeterminationAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7703,7 +7757,7 @@ return { ["type"] = "implicit", }, }, - ["3144_DeterminationAuraEffectPinnaclePresence"] = { + ["3190_DeterminationAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7717,7 +7771,7 @@ return { ["type"] = "implicit", }, }, - ["3144_DeterminationAuraEffectUniquePresence"] = { + ["3190_DeterminationAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7731,7 +7785,7 @@ return { ["type"] = "implicit", }, }, - ["3145_DisciplineAuraEffect"] = { + ["3191_DisciplineAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -7745,7 +7799,7 @@ return { ["type"] = "implicit", }, }, - ["3145_DisciplineAuraEffectPinnaclePresence"] = { + ["3191_DisciplineAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -7759,7 +7813,7 @@ return { ["type"] = "implicit", }, }, - ["3145_DisciplineAuraEffectUniquePresence"] = { + ["3191_DisciplineAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -7773,7 +7827,7 @@ return { ["type"] = "implicit", }, }, - ["3655_EnduringCryCooldownRecovery"] = { + ["3701_EnduringCryCooldownRecovery"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -7787,7 +7841,7 @@ return { ["type"] = "implicit", }, }, - ["3655_EnduringCryCooldownRecoveryPinnaclePresence"] = { + ["3701_EnduringCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -7801,7 +7855,7 @@ return { ["type"] = "implicit", }, }, - ["3655_EnduringCryCooldownRecoveryUniquePresence"] = { + ["3701_EnduringCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -7815,7 +7869,7 @@ return { ["type"] = "implicit", }, }, - ["3881_RallyingCryWarcryEffect"] = { + ["3927_RallyingCryWarcryEffect"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -7829,7 +7883,7 @@ return { ["type"] = "implicit", }, }, - ["3881_RallyingCryWarcryEffectPinnaclePresence"] = { + ["3927_RallyingCryWarcryEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 29, ["min"] = 22, @@ -7843,7 +7897,7 @@ return { ["type"] = "implicit", }, }, - ["3881_RallyingCryWarcryEffectUniquePresence"] = { + ["3927_RallyingCryWarcryEffectUniquePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 14, @@ -7857,7 +7911,7 @@ return { ["type"] = "implicit", }, }, - ["3983_ChanceToAvoidBleeding"] = { + ["4029_ChanceToAvoidBleeding"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -7871,7 +7925,7 @@ return { ["type"] = "implicit", }, }, - ["3983_ChanceToAvoidBleedingPinnaclePresence"] = { + ["4029_ChanceToAvoidBleedingPinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -7885,7 +7939,7 @@ return { ["type"] = "implicit", }, }, - ["3983_ChanceToAvoidBleedingUniquePresence"] = { + ["4029_ChanceToAvoidBleedingUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -7899,7 +7953,7 @@ return { ["type"] = "implicit", }, }, - ["4036_PlayerReflectedDamage"] = { + ["4082_PlayerReflectedDamage"] = { ["Chest"] = { ["max"] = 70, ["min"] = 45, @@ -7913,7 +7967,7 @@ return { ["type"] = "implicit", }, }, - ["4036_PlayerReflectedDamagePinnaclePresence"] = { + ["4082_PlayerReflectedDamagePinnaclePresence"] = { ["Chest"] = { ["max"] = 100, ["min"] = 85, @@ -7927,7 +7981,7 @@ return { ["type"] = "implicit", }, }, - ["4036_PlayerReflectedDamageUniquePresence"] = { + ["4082_PlayerReflectedDamageUniquePresence"] = { ["Chest"] = { ["max"] = 85, ["min"] = 65, @@ -7941,7 +7995,7 @@ return { ["type"] = "implicit", }, }, - ["4148_TravelSkillCooldownRecovery"] = { + ["4194_TravelSkillCooldownRecovery"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -7955,7 +8009,7 @@ return { ["type"] = "implicit", }, }, - ["4148_TravelSkillCooldownRecoveryPinnaclePresence"] = { + ["4194_TravelSkillCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -7969,7 +8023,7 @@ return { ["type"] = "implicit", }, }, - ["4148_TravelSkillCooldownRecoveryUniquePresence"] = { + ["4194_TravelSkillCooldownRecoveryUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -7983,7 +8037,7 @@ return { ["type"] = "implicit", }, }, - ["4213_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { + ["4266_FlatAccuracyPerFrenzyChargePinnaclePresence"] = { ["Gloves"] = { ["max"] = 72, ["min"] = 61, @@ -7997,7 +8051,7 @@ return { ["type"] = "implicit", }, }, - ["4213_FlatAccuracyPerFrenzyChargeUniquePresence"] = { + ["4266_FlatAccuracyPerFrenzyChargeUniquePresence"] = { ["Gloves"] = { ["max"] = 66, ["min"] = 52, @@ -8011,7 +8065,7 @@ return { ["type"] = "implicit", }, }, - ["4213_IncreasedAccuracyPerFrenzy"] = { + ["4266_IncreasedAccuracyPerFrenzy"] = { ["Gloves"] = { ["max"] = 60, ["min"] = 43, @@ -8025,7 +8079,7 @@ return { ["type"] = "implicit", }, }, - ["4316_AncestralCryExertedDamage"] = { + ["4370_AncestralCryExertedDamage"] = { ["Boots"] = { ["max"] = 35, ["min"] = 20, @@ -8039,7 +8093,7 @@ return { ["type"] = "implicit", }, }, - ["4316_AncestralCryExertedDamagePinnaclePresence"] = { + ["4370_AncestralCryExertedDamagePinnaclePresence"] = { ["Boots"] = { ["max"] = 47, ["min"] = 38, @@ -8053,7 +8107,7 @@ return { ["type"] = "implicit", }, }, - ["4316_AncestralCryExertedDamageUniquePresence"] = { + ["4370_AncestralCryExertedDamageUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 29, @@ -8067,7 +8121,7 @@ return { ["type"] = "implicit", }, }, - ["4394_ArmourFromHelmetGloves"] = { + ["4449_ArmourFromHelmetGloves"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -8081,7 +8135,7 @@ return { ["type"] = "implicit", }, }, - ["4394_ArmourFromHelmetGlovesPinnaclePresence"] = { + ["4449_ArmourFromHelmetGlovesPinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -8095,7 +8149,7 @@ return { ["type"] = "implicit", }, }, - ["4394_ArmourFromHelmetGlovesUniquePresence"] = { + ["4449_ArmourFromHelmetGlovesUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -8109,7 +8163,7 @@ return { ["type"] = "implicit", }, }, - ["4535_AttackImpaleChance"] = { + ["4590_AttackImpaleChance"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 5, @@ -8123,7 +8177,7 @@ return { ["type"] = "implicit", }, }, - ["4535_AttackImpaleChancePinnaclePresence"] = { + ["4590_AttackImpaleChancePinnaclePresence"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 35, @@ -8137,7 +8191,7 @@ return { ["type"] = "implicit", }, }, - ["4535_AttackImpaleChanceUniquePresence"] = { + ["4590_AttackImpaleChanceUniquePresence"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 20, @@ -8151,7 +8205,7 @@ return { ["type"] = "implicit", }, }, - ["4595_GlobalCooldownRecovery"] = { + ["4654_GlobalCooldownRecovery"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -8165,7 +8219,7 @@ return { ["type"] = "implicit", }, }, - ["4595_GlobalCooldownRecoveryPinnaclePresence"] = { + ["4654_GlobalCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { ["max"] = 16, ["min"] = 13, @@ -8179,7 +8233,7 @@ return { ["type"] = "implicit", }, }, - ["4595_GlobalCooldownRecoveryUniquePresence"] = { + ["4654_GlobalCooldownRecoveryUniquePresence"] = { ["Boots"] = { ["max"] = 13, ["min"] = 9, @@ -8193,7 +8247,7 @@ return { ["type"] = "implicit", }, }, - ["4640_BattlemagesCryWarcryEffect"] = { + ["4700_BattlemagesCryWarcryEffect"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -8207,7 +8261,7 @@ return { ["type"] = "implicit", }, }, - ["4640_BattlemagesCryWarcryEffectPinnaclePresence"] = { + ["4700_BattlemagesCryWarcryEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 29, ["min"] = 22, @@ -8221,7 +8275,7 @@ return { ["type"] = "implicit", }, }, - ["4640_BattlemagesCryWarcryEffectUniquePresence"] = { + ["4700_BattlemagesCryWarcryEffectUniquePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 14, @@ -8235,7 +8289,7 @@ return { ["type"] = "implicit", }, }, - ["4796_BlindEffect"] = { + ["4856_BlindEffect"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 6, @@ -8249,7 +8303,7 @@ return { ["type"] = "implicit", }, }, - ["4796_BlindEffectPinnaclePresence"] = { + ["4856_BlindEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 29, ["min"] = 22, @@ -8263,7 +8317,7 @@ return { ["type"] = "implicit", }, }, - ["4796_BlindEffectUniquePresence"] = { + ["4856_BlindEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 23, ["min"] = 14, @@ -8277,7 +8331,7 @@ return { ["type"] = "implicit", }, }, - ["4817_BodyDamageTakenPerDexterity"] = { + ["4879_BodyDamageTakenPerDexterity"] = { ["Chest"] = { ["max"] = 230, ["min"] = 180, @@ -8291,7 +8345,7 @@ return { ["type"] = "implicit", }, }, - ["4817_BodyDamageTakenPerDexterityPinnaclePresence"] = { + ["4879_BodyDamageTakenPerDexterityPinnaclePresence"] = { ["Chest"] = { ["max"] = 170, ["min"] = 140, @@ -8305,7 +8359,7 @@ return { ["type"] = "implicit", }, }, - ["4817_BodyDamageTakenPerDexterityUniquePresence"] = { + ["4879_BodyDamageTakenPerDexterityUniquePresence"] = { ["Chest"] = { ["max"] = 200, ["min"] = 160, @@ -8319,7 +8373,7 @@ return { ["type"] = "implicit", }, }, - ["4818_BodyDamageTakenPerIntelligence"] = { + ["4880_BodyDamageTakenPerIntelligence"] = { ["Chest"] = { ["max"] = 230, ["min"] = 180, @@ -8333,7 +8387,7 @@ return { ["type"] = "implicit", }, }, - ["4818_BodyDamageTakenPerIntelligencePinnaclePresence"] = { + ["4880_BodyDamageTakenPerIntelligencePinnaclePresence"] = { ["Chest"] = { ["max"] = 170, ["min"] = 140, @@ -8347,7 +8401,7 @@ return { ["type"] = "implicit", }, }, - ["4818_BodyDamageTakenPerIntelligenceUniquePresence"] = { + ["4880_BodyDamageTakenPerIntelligenceUniquePresence"] = { ["Chest"] = { ["max"] = 200, ["min"] = 160, @@ -8361,7 +8415,7 @@ return { ["type"] = "implicit", }, }, - ["4819_BodyDamageTakenPerStrength"] = { + ["4881_BodyDamageTakenPerStrength"] = { ["Chest"] = { ["max"] = 230, ["min"] = 180, @@ -8375,7 +8429,7 @@ return { ["type"] = "implicit", }, }, - ["4819_BodyDamageTakenPerStrengthPinnaclePresence"] = { + ["4881_BodyDamageTakenPerStrengthPinnaclePresence"] = { ["Chest"] = { ["max"] = 170, ["min"] = 140, @@ -8389,7 +8443,7 @@ return { ["type"] = "implicit", }, }, - ["4819_BodyDamageTakenPerStrengthUniquePresence"] = { + ["4881_BodyDamageTakenPerStrengthUniquePresence"] = { ["Chest"] = { ["max"] = 200, ["min"] = 160, @@ -8403,7 +8457,7 @@ return { ["type"] = "implicit", }, }, - ["5234_ColdExposureEffectOnHit"] = { + ["5288_ColdExposureEffectOnHit"] = { ["Gloves"] = { ["max"] = 16, ["min"] = 11, @@ -8417,7 +8471,7 @@ return { ["type"] = "implicit", }, }, - ["5234_ColdExposureEffectOnHitPinnaclePresence"] = { + ["5288_ColdExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 19, @@ -8431,7 +8485,7 @@ return { ["type"] = "implicit", }, }, - ["5234_ColdExposureEffectOnHitUniquePresence"] = { + ["5288_ColdExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 19, ["min"] = 15, @@ -8445,7 +8499,7 @@ return { ["type"] = "implicit", }, }, - ["5445_DamagePer100DEX"] = { + ["5502_DamagePer100DEX"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 3, @@ -8459,7 +8513,7 @@ return { ["type"] = "implicit", }, }, - ["5445_DamagePer100DEXPinnaclePresence"] = { + ["5502_DamagePer100DEXPinnaclePresence"] = { ["Gloves"] = { ["max"] = 6, ["min"] = 5, @@ -8473,7 +8527,7 @@ return { ["type"] = "implicit", }, }, - ["5445_DamagePer100DEXUniquePresence"] = { + ["5502_DamagePer100DEXUniquePresence"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 4, @@ -8487,7 +8541,7 @@ return { ["type"] = "implicit", }, }, - ["5446_DamagePer100INT"] = { + ["5503_DamagePer100INT"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 3, @@ -8501,7 +8555,7 @@ return { ["type"] = "implicit", }, }, - ["5446_DamagePer100INTPinnaclePresence"] = { + ["5503_DamagePer100INTPinnaclePresence"] = { ["Gloves"] = { ["max"] = 6, ["min"] = 5, @@ -8515,7 +8569,7 @@ return { ["type"] = "implicit", }, }, - ["5446_DamagePer100INTUniquePresence"] = { + ["5503_DamagePer100INTUniquePresence"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 4, @@ -8529,7 +8583,7 @@ return { ["type"] = "implicit", }, }, - ["5447_DamagePer100STR"] = { + ["5504_DamagePer100STR"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 3, @@ -8543,7 +8597,7 @@ return { ["type"] = "implicit", }, }, - ["5447_DamagePer100STRPinnaclePresence"] = { + ["5504_DamagePer100STRPinnaclePresence"] = { ["Gloves"] = { ["max"] = 6, ["min"] = 5, @@ -8557,7 +8611,7 @@ return { ["type"] = "implicit", }, }, - ["5447_DamagePer100STRUniquePresence"] = { + ["5504_DamagePer100STRUniquePresence"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 4, @@ -8571,7 +8625,7 @@ return { ["type"] = "implicit", }, }, - ["5542_MalevolenceAuraEffect"] = { + ["5599_MalevolenceAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -8585,7 +8639,7 @@ return { ["type"] = "implicit", }, }, - ["5542_MalevolenceAuraEffectPinnaclePresence"] = { + ["5599_MalevolenceAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -8599,7 +8653,7 @@ return { ["type"] = "implicit", }, }, - ["5542_MalevolenceAuraEffectUniquePresence"] = { + ["5599_MalevolenceAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -8613,7 +8667,7 @@ return { ["type"] = "implicit", }, }, - ["5711_ElusiveEffect"] = { + ["5773_ElusiveEffect"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -8627,7 +8681,7 @@ return { ["type"] = "implicit", }, }, - ["5711_ElusiveEffectPinnaclePresence"] = { + ["5773_ElusiveEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 29, ["min"] = 22, @@ -8641,7 +8695,7 @@ return { ["type"] = "implicit", }, }, - ["5711_ElusiveEffectUniquePresence"] = { + ["5773_ElusiveEffectUniquePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 14, @@ -8655,7 +8709,7 @@ return { ["type"] = "implicit", }, }, - ["5713_ExertedAttackDamage"] = { + ["5775_ExertedAttackDamage"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 20, @@ -8669,7 +8723,7 @@ return { ["type"] = "implicit", }, }, - ["5713_ExertedAttackDamagePinnaclePresence"] = { + ["5775_ExertedAttackDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 47, ["min"] = 38, @@ -8683,7 +8737,7 @@ return { ["type"] = "implicit", }, }, - ["5713_ExertedAttackDamageUniquePresence"] = { + ["5775_ExertedAttackDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 41, ["min"] = 29, @@ -8697,7 +8751,7 @@ return { ["type"] = "implicit", }, }, - ["5770_EnemyLifeRegenerationRate"] = { + ["5833_EnemyLifeRegenerationRate"] = { ["Helmet"] = { ["max"] = 82, ["min"] = 65, @@ -8711,7 +8765,7 @@ return { ["type"] = "implicit", }, }, - ["5770_EnemyLifeRegenerationRatePinnaclePresence"] = { + ["5833_EnemyLifeRegenerationRatePinnaclePresence"] = { ["Helmet"] = { ["max"] = 100, ["min"] = 89, @@ -8725,7 +8779,7 @@ return { ["type"] = "implicit", }, }, - ["5770_EnemyLifeRegenerationRateUniquePresence"] = { + ["5833_EnemyLifeRegenerationRateUniquePresence"] = { ["Helmet"] = { ["max"] = 91, ["min"] = 77, @@ -8739,7 +8793,7 @@ return { ["type"] = "implicit", }, }, - ["5775_EnergyShieldFromGlovesBoots"] = { + ["5839_EnergyShieldFromGlovesBoots"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 33, @@ -8753,7 +8807,7 @@ return { ["type"] = "implicit", }, }, - ["5775_EnergyShieldFromGlovesBootsPinnaclePresence"] = { + ["5839_EnergyShieldFromGlovesBootsPinnaclePresence"] = { ["Helmet"] = { ["max"] = 70, ["min"] = 57, @@ -8767,7 +8821,7 @@ return { ["type"] = "implicit", }, }, - ["5775_EnergyShieldFromGlovesBootsUniquePresence"] = { + ["5839_EnergyShieldFromGlovesBootsUniquePresence"] = { ["Helmet"] = { ["max"] = 61, ["min"] = 45, @@ -8781,7 +8835,7 @@ return { ["type"] = "implicit", }, }, - ["5822_EvasionRatingFromHelmetBoots"] = { + ["5886_EvasionRatingFromHelmetBoots"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 33, @@ -8795,7 +8849,7 @@ return { ["type"] = "implicit", }, }, - ["5822_EvasionRatingHelmetBootsPinnaclePresence"] = { + ["5886_EvasionRatingHelmetBootsPinnaclePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 57, @@ -8809,7 +8863,7 @@ return { ["type"] = "implicit", }, }, - ["5822_EvasionRatingHelmetBootsUniquePresence"] = { + ["5886_EvasionRatingHelmetBootsUniquePresence"] = { ["Gloves"] = { ["max"] = 61, ["min"] = 45, @@ -8823,7 +8877,7 @@ return { ["type"] = "implicit", }, }, - ["5873_FasterBleedDamage"] = { + ["5937_FasterBleedDamage"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -8837,7 +8891,7 @@ return { ["type"] = "implicit", }, }, - ["5873_FasterBleedDamagePinnaclePresence"] = { + ["5937_FasterBleedDamagePinnaclePresence"] = { ["Boots"] = { ["max"] = 16, ["min"] = 13, @@ -8851,7 +8905,7 @@ return { ["type"] = "implicit", }, }, - ["5873_FasterBleedDamageUniquePresence"] = { + ["5937_FasterBleedDamageUniquePresence"] = { ["Boots"] = { ["max"] = 13, ["min"] = 9, @@ -8865,7 +8919,7 @@ return { ["type"] = "implicit", }, }, - ["5874_FasterPoisonDamage"] = { + ["5938_FasterPoisonDamage"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -8879,7 +8933,7 @@ return { ["type"] = "implicit", }, }, - ["5874_FasterPoisonDamagePinnaclePresence"] = { + ["5938_FasterPoisonDamagePinnaclePresence"] = { ["Boots"] = { ["max"] = 16, ["min"] = 13, @@ -8893,7 +8947,7 @@ return { ["type"] = "implicit", }, }, - ["5874_FasterPoisonDamageUniquePresence"] = { + ["5938_FasterPoisonDamageUniquePresence"] = { ["Boots"] = { ["max"] = 13, ["min"] = 9, @@ -8907,7 +8961,7 @@ return { ["type"] = "implicit", }, }, - ["5905_FireExposureEffectOnHit"] = { + ["5969_FireExposureEffectOnHit"] = { ["Gloves"] = { ["max"] = 16, ["min"] = 11, @@ -8921,7 +8975,7 @@ return { ["type"] = "implicit", }, }, - ["5905_FireExposureEffectOnHitPinnaclePresence"] = { + ["5969_FireExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 19, @@ -8935,7 +8989,7 @@ return { ["type"] = "implicit", }, }, - ["5905_FireExposureEffectOnHitUniquePresence"] = { + ["5969_FireExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 19, ["min"] = 15, @@ -8949,7 +9003,7 @@ return { ["type"] = "implicit", }, }, - ["6135_GeneralsCryCooldownRecovery"] = { + ["6205_GeneralsCryCooldownRecovery"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -8963,7 +9017,7 @@ return { ["type"] = "implicit", }, }, - ["6135_GeneralsCryCooldownRecoveryPinnaclePresence"] = { + ["6205_GeneralsCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -8977,7 +9031,7 @@ return { ["type"] = "implicit", }, }, - ["6135_GeneralsCryCooldownRecoveryUniquePresence"] = { + ["6205_GeneralsCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -8991,7 +9045,7 @@ return { ["type"] = "implicit", }, }, - ["6490_InfernalCryWarcryAreaOfEffect"] = { + ["6563_InfernalCryWarcryAreaOfEffect"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -9005,7 +9059,7 @@ return { ["type"] = "implicit", }, }, - ["6490_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { + ["6563_InfernalCryWarcryAreaOfEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -9019,7 +9073,7 @@ return { ["type"] = "implicit", }, }, - ["6490_InfernalCryWarcryAreaOfEffectUniquePresence"] = { + ["6563_InfernalCryWarcryAreaOfEffectUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -9033,7 +9087,7 @@ return { ["type"] = "implicit", }, }, - ["6518_IntimidatingCryCooldownRecovery"] = { + ["6591_IntimidatingCryCooldownRecovery"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -9047,7 +9101,7 @@ return { ["type"] = "implicit", }, }, - ["6518_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { + ["6591_IntimidatingCryCooldownRecoveryPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -9061,7 +9115,7 @@ return { ["type"] = "implicit", }, }, - ["6518_IntimidatingCryCooldownRecoveryUniquePresence"] = { + ["6591_IntimidatingCryCooldownRecoveryUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -9075,7 +9129,7 @@ return { ["type"] = "implicit", }, }, - ["6663_LightningExposureEffectOnHit"] = { + ["6737_LightningExposureEffectOnHit"] = { ["Gloves"] = { ["max"] = 16, ["min"] = 11, @@ -9089,7 +9143,7 @@ return { ["type"] = "implicit", }, }, - ["6663_LightningExposureEffectOnHitPinnaclePresence"] = { + ["6737_LightningExposureEffectOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 19, @@ -9103,7 +9157,7 @@ return { ["type"] = "implicit", }, }, - ["6663_LightningExposureEffectOnHitUniquePresence"] = { + ["6737_LightningExposureEffectOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 19, ["min"] = 15, @@ -9117,7 +9171,7 @@ return { ["type"] = "implicit", }, }, - ["7282_GlobalMaimOnHit"] = { + ["7362_GlobalMaimOnHit"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 15, @@ -9131,7 +9185,7 @@ return { ["type"] = "implicit", }, }, - ["7282_GlobalMaimOnHitPinnaclePresence"] = { + ["7362_GlobalMaimOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 95, ["min"] = 85, @@ -9145,7 +9199,7 @@ return { ["type"] = "implicit", }, }, - ["7282_GlobalMaimOnHitUniquePresence"] = { + ["7362_GlobalMaimOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 50, @@ -9159,7 +9213,7 @@ return { ["type"] = "implicit", }, }, - ["8223_MinionReflectedDamage"] = { + ["8391_MinionReflectedDamage"] = { ["Chest"] = { ["max"] = 70, ["min"] = 45, @@ -9173,7 +9227,7 @@ return { ["type"] = "implicit", }, }, - ["8223_MinionReflectedDamagePinnaclePresence"] = { + ["8391_MinionReflectedDamagePinnaclePresence"] = { ["Chest"] = { ["max"] = 100, ["min"] = 85, @@ -9187,7 +9241,7 @@ return { ["type"] = "implicit", }, }, - ["8223_MinionReflectedDamageUniquePresence"] = { + ["8391_MinionReflectedDamageUniquePresence"] = { ["Chest"] = { ["max"] = 85, ["min"] = 65, @@ -9201,7 +9255,7 @@ return { ["type"] = "implicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemies"] = { + ["8490_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 14, @@ -9219,7 +9273,7 @@ return { ["type"] = "implicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { + ["8490_IncreasedAilmentEffectOnEnemiesPinnaclePresence"] = { ["Amulet"] = { ["max"] = 41, ["min"] = 32, @@ -9237,7 +9291,7 @@ return { ["type"] = "implicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { + ["8490_IncreasedAilmentEffectOnEnemiesUniquePresence"] = { ["Amulet"] = { ["max"] = 35, ["min"] = 23, @@ -9255,7 +9309,7 @@ return { ["type"] = "implicit", }, }, - ["8491_PrideAuraEffect"] = { + ["8674_PrideAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -9269,7 +9323,7 @@ return { ["type"] = "implicit", }, }, - ["8491_PrideAuraEffectPinnaclePresence"] = { + ["8674_PrideAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -9283,7 +9337,7 @@ return { ["type"] = "implicit", }, }, - ["8491_PrideAuraEffectUniquePresence"] = { + ["8674_PrideAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -9297,7 +9351,7 @@ return { ["type"] = "implicit", }, }, - ["8699_SeismicCryExertedDamage"] = { + ["8884_SeismicCryExertedDamage"] = { ["Boots"] = { ["max"] = 35, ["min"] = 20, @@ -9311,7 +9365,7 @@ return { ["type"] = "implicit", }, }, - ["8699_SeismicCryExertedDamagePinnaclePresence"] = { + ["8884_SeismicCryExertedDamagePinnaclePresence"] = { ["Boots"] = { ["max"] = 47, ["min"] = 38, @@ -9325,7 +9379,7 @@ return { ["type"] = "implicit", }, }, - ["8699_SeismicCryExertedDamageUniquePresence"] = { + ["8884_SeismicCryExertedDamageUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 29, @@ -9339,7 +9393,7 @@ return { ["type"] = "implicit", }, }, - ["8747_ReducedShockEffectOnSelf"] = { + ["8933_ReducedShockEffectOnSelf"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 33, @@ -9353,7 +9407,7 @@ return { ["type"] = "implicit", }, }, - ["8747_ReducedShockEffectOnSelfPinnaclePresence"] = { + ["8933_ReducedShockEffectOnSelfPinnaclePresence"] = { ["Helmet"] = { ["max"] = 70, ["min"] = 57, @@ -9367,7 +9421,7 @@ return { ["type"] = "implicit", }, }, - ["8747_ReducedShockEffectOnSelfUniquePresence"] = { + ["8933_ReducedShockEffectOnSelfUniquePresence"] = { ["Helmet"] = { ["max"] = 61, ["min"] = 45, @@ -9381,7 +9435,7 @@ return { ["type"] = "implicit", }, }, - ["8895_SpellsHinderOnHitChance"] = { + ["9082_SpellsHinderOnHitChance"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 15, @@ -9395,7 +9449,7 @@ return { ["type"] = "implicit", }, }, - ["8895_SpellsHinderOnHitChancePinnaclePresence"] = { + ["9082_SpellsHinderOnHitChancePinnaclePresence"] = { ["Gloves"] = { ["max"] = 95, ["min"] = 85, @@ -9409,7 +9463,7 @@ return { ["type"] = "implicit", }, }, - ["8895_SpellsHinderOnHitChanceUniquePresence"] = { + ["9082_SpellsHinderOnHitChanceUniquePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 50, @@ -9423,7 +9477,7 @@ return { ["type"] = "implicit", }, }, - ["9274_WitherExpireSpeed"] = { + ["9464_WitherExpireSpeed"] = { ["Gloves"] = { ["max"] = -10, ["min"] = -24, @@ -9437,7 +9491,7 @@ return { ["type"] = "implicit", }, }, - ["9274_WitherExpireSpeedPinnaclePresence"] = { + ["9464_WitherExpireSpeedPinnaclePresence"] = { ["Gloves"] = { ["max"] = -34, ["min"] = -45, @@ -9451,7 +9505,7 @@ return { ["type"] = "implicit", }, }, - ["9274_WitherExpireSpeedUniquePresence"] = { + ["9464_WitherExpireSpeedUniquePresence"] = { ["Gloves"] = { ["max"] = -22, ["min"] = -33, @@ -9465,7 +9519,7 @@ return { ["type"] = "implicit", }, }, - ["9349_ZealotryAuraEffect"] = { + ["9540_ZealotryAuraEffect"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -9479,7 +9533,7 @@ return { ["type"] = "implicit", }, }, - ["9349_ZealotryAuraEffectPinnaclePresence"] = { + ["9540_ZealotryAuraEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -9493,7 +9547,7 @@ return { ["type"] = "implicit", }, }, - ["9349_ZealotryAuraEffectUniquePresence"] = { + ["9540_ZealotryAuraEffectUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -9507,7 +9561,7 @@ return { ["type"] = "implicit", }, }, - ["957_BlockPercent"] = { + ["992_BlockPercent"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 5, @@ -9525,7 +9579,7 @@ return { ["type"] = "implicit", }, }, - ["957_BlockPercentPinnaclePresence"] = { + ["992_BlockPercentPinnaclePresence"] = { ["Amulet"] = { ["max"] = 14, ["min"] = 11, @@ -9543,7 +9597,7 @@ return { ["type"] = "implicit", }, }, - ["957_BlockPercentUniquePresence"] = { + ["992_BlockPercentUniquePresence"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 8, @@ -9561,7 +9615,7 @@ return { ["type"] = "implicit", }, }, - ["962_ChanceToSuppressSpells"] = { + ["997_ChanceToSuppressSpells"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 5, @@ -9579,7 +9633,7 @@ return { ["type"] = "implicit", }, }, - ["962_ChanceToSuppressSpellsPinnaclePresence"] = { + ["997_ChanceToSuppressSpellsPinnaclePresence"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 12, @@ -9597,7 +9651,7 @@ return { ["type"] = "implicit", }, }, - ["962_ChanceToSuppressSpellsUniquePresence"] = { + ["997_ChanceToSuppressSpellsUniquePresence"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 8, @@ -9615,63 +9669,135 @@ return { ["type"] = "implicit", }, }, - ["976_SpellBlockPercentage"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, + }, + ["Exarch"] = { + ["1022_BoneOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1801289192", + ["text"] = "Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1022_BoneOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", + ["id"] = "implicit.stat_3774100463", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", ["type"] = "implicit", }, }, - ["976_SpellBlockPercentagePinnaclePresence"] = { - ["Amulet"] = { - ["max"] = 14, - ["min"] = 11, + ["1022_BoneOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 11, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2290911895", + ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1023_FleshOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2996280658", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, #% Chance to Block Spell Damage", + ["id"] = "implicit.stat_3456379680", + ["text"] = "Flesh Offering has #% increased Effect", ["type"] = "implicit", }, }, - ["976_SpellBlockPercentageUniquePresence"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 8, + ["1023_FleshOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_862077496", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1023_FleshOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1358320252", - ["text"] = "While a Unique Enemy is in your Presence, #% Chance to Block Spell Damage", + ["id"] = "implicit.stat_3599488608", + ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", ["type"] = "implicit", }, }, - }, - ["Exarch"] = { - ["1045_PhysicalDamagePercent"] = { + ["1024_SpiritOfferingEffect"] = { + ["Boots"] = { + ["max"] = 17, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544391750", + ["text"] = "Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1024_SpiritOfferingEffectPinnaclePresence"] = { + ["Boots"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2399066987", + ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1024_SpiritOfferingEffectUniquePresence"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2814835155", + ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", + ["type"] = "implicit", + }, + }, + ["1080_PhysicalDamagePercent"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 15, @@ -9689,7 +9815,7 @@ return { ["type"] = "implicit", }, }, - ["1045_PhysicalDamagePercentPinnaclePresence"] = { + ["1080_PhysicalDamagePercentPinnaclePresence"] = { ["Amulet"] = { ["max"] = 42, ["min"] = 33, @@ -9707,7 +9833,7 @@ return { ["type"] = "implicit", }, }, - ["1045_PhysicalDamagePercentUniquePresence"] = { + ["1080_PhysicalDamagePercentUniquePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 24, @@ -9725,7 +9851,7 @@ return { ["type"] = "implicit", }, }, - ["1060_PhysicalDamageOverTimeMultiplier"] = { + ["1095_PhysicalDamageOverTimeMultiplier"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 5, @@ -9743,7 +9869,7 @@ return { ["type"] = "implicit", }, }, - ["1060_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { + ["1095_PhysicalDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { ["max"] = 38, ["min"] = 29, @@ -9761,7 +9887,7 @@ return { ["type"] = "implicit", }, }, - ["1060_PhysicalDamageOverTimeMultiplierUniquePresence"] = { + ["1095_PhysicalDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 17, @@ -9779,7 +9905,7 @@ return { ["type"] = "implicit", }, }, - ["1064_FireDamageOverTimeMultiplier"] = { + ["1099_FireDamageOverTimeMultiplier"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 5, @@ -9797,7 +9923,7 @@ return { ["type"] = "implicit", }, }, - ["1064_FireDamageOverTimeMultiplierPinnaclePresence"] = { + ["1099_FireDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { ["max"] = 38, ["min"] = 29, @@ -9815,7 +9941,7 @@ return { ["type"] = "implicit", }, }, - ["1064_FireDamageOverTimeMultiplierUniquePresence"] = { + ["1099_FireDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 17, @@ -9833,7 +9959,7 @@ return { ["type"] = "implicit", }, }, - ["1069_ColdDamageOverTimeMultiplier"] = { + ["1104_ColdDamageOverTimeMultiplier"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 5, @@ -9851,7 +9977,7 @@ return { ["type"] = "implicit", }, }, - ["1069_ColdDamageOverTimeMultiplierPinnaclePresence"] = { + ["1104_ColdDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { ["max"] = 38, ["min"] = 29, @@ -9869,7 +9995,7 @@ return { ["type"] = "implicit", }, }, - ["1069_ColdDamageOverTimeMultiplierUniquePresence"] = { + ["1104_ColdDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 17, @@ -9887,7 +10013,7 @@ return { ["type"] = "implicit", }, }, - ["1072_ChaosDamageOverTimeMultiplier"] = { + ["1107_ChaosDamageOverTimeMultiplier"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 5, @@ -9905,7 +10031,7 @@ return { ["type"] = "implicit", }, }, - ["1072_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { + ["1107_ChaosDamageOverTimeMultiplierPinnaclePresence"] = { ["Amulet"] = { ["max"] = 38, ["min"] = 29, @@ -9923,7 +10049,7 @@ return { ["type"] = "implicit", }, }, - ["1072_ChaosDamageOverTimeMultiplierUniquePresence"] = { + ["1107_ChaosDamageOverTimeMultiplierUniquePresence"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 17, @@ -9941,7 +10067,7 @@ return { ["type"] = "implicit", }, }, - ["1079_PhysicalDamage"] = { + ["1114_PhysicalDamage"] = { ["Gloves"] = { ["max"] = 10.5, ["min"] = 5, @@ -9955,7 +10081,7 @@ return { ["type"] = "implicit", }, }, - ["1079_PhysicalDamagePinnaclePresence"] = { + ["1114_PhysicalDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 21.5, ["min"] = 12, @@ -9969,7 +10095,7 @@ return { ["type"] = "implicit", }, }, - ["1079_PhysicalDamageUniquePresence"] = { + ["1114_PhysicalDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 14, ["min"] = 8, @@ -9983,7 +10109,7 @@ return { ["type"] = "implicit", }, }, - ["1169_FireDamagePercentage"] = { + ["1204_FireDamagePercentage"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 15, @@ -10001,7 +10127,7 @@ return { ["type"] = "implicit", }, }, - ["1169_FireDamagePercentagePinnaclePresence"] = { + ["1204_FireDamagePercentagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 42, ["min"] = 33, @@ -10019,7 +10145,7 @@ return { ["type"] = "implicit", }, }, - ["1169_FireDamagePercentageUniquePresence"] = { + ["1204_FireDamagePercentageUniquePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 24, @@ -10037,7 +10163,7 @@ return { ["type"] = "implicit", }, }, - ["1172_FireDamage"] = { + ["1207_FireDamage"] = { ["Gloves"] = { ["max"] = 18.5, ["min"] = 9.5, @@ -10051,7 +10177,7 @@ return { ["type"] = "implicit", }, }, - ["1172_FireDamagePinnaclePresence"] = { + ["1207_FireDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 38, ["min"] = 20.5, @@ -10065,7 +10191,7 @@ return { ["type"] = "implicit", }, }, - ["1172_FireDamageUniquePresence"] = { + ["1207_FireDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 14, @@ -10079,7 +10205,7 @@ return { ["type"] = "implicit", }, }, - ["1178_ColdDamagePercentage"] = { + ["1213_ColdDamagePercentage"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 15, @@ -10097,7 +10223,7 @@ return { ["type"] = "implicit", }, }, - ["1178_ColdDamagePercentagePinnaclePresence"] = { + ["1213_ColdDamagePercentagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 42, ["min"] = 33, @@ -10115,7 +10241,7 @@ return { ["type"] = "implicit", }, }, - ["1178_ColdDamagePercentageUniquePresence"] = { + ["1213_ColdDamagePercentageUniquePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 24, @@ -10133,7 +10259,7 @@ return { ["type"] = "implicit", }, }, - ["1181_ColdDamage"] = { + ["1216_ColdDamage"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 8.5, @@ -10147,7 +10273,7 @@ return { ["type"] = "implicit", }, }, - ["1181_ColdDamagePinnaclePresence"] = { + ["1216_ColdDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 34, ["min"] = 18, @@ -10161,7 +10287,7 @@ return { ["type"] = "implicit", }, }, - ["1181_ColdDamageUniquePresence"] = { + ["1216_ColdDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 22.5, ["min"] = 12.5, @@ -10175,7 +10301,7 @@ return { ["type"] = "implicit", }, }, - ["1189_LightningDamagePercentage"] = { + ["1224_LightningDamagePercentage"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 15, @@ -10193,7 +10319,7 @@ return { ["type"] = "implicit", }, }, - ["1189_LightningDamagePercentagePinnaclePresence"] = { + ["1224_LightningDamagePercentagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 42, ["min"] = 33, @@ -10211,7 +10337,7 @@ return { ["type"] = "implicit", }, }, - ["1189_LightningDamagePercentageUniquePresence"] = { + ["1224_LightningDamagePercentageUniquePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 24, @@ -10229,7 +10355,7 @@ return { ["type"] = "implicit", }, }, - ["1192_LightningDamage"] = { + ["1227_LightningDamage"] = { ["Gloves"] = { ["max"] = 21, ["min"] = 11.5, @@ -10243,7 +10369,7 @@ return { ["type"] = "implicit", }, }, - ["1192_LightningDamagePinnaclePresence"] = { + ["1227_LightningDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 43, ["min"] = 25, @@ -10257,7 +10383,7 @@ return { ["type"] = "implicit", }, }, - ["1192_LightningDamageUniquePresence"] = { + ["1227_LightningDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 28, ["min"] = 17, @@ -10271,7 +10397,7 @@ return { ["type"] = "implicit", }, }, - ["1197_IncreasedChaosDamage"] = { + ["1232_IncreasedChaosDamage"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 15, @@ -10289,7 +10415,7 @@ return { ["type"] = "implicit", }, }, - ["1197_IncreasedChaosDamagePinnaclePresence"] = { + ["1232_IncreasedChaosDamagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 42, ["min"] = 33, @@ -10307,7 +10433,7 @@ return { ["type"] = "implicit", }, }, - ["1197_IncreasedChaosDamageUniquePresence"] = { + ["1232_IncreasedChaosDamageUniquePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 24, @@ -10325,7 +10451,7 @@ return { ["type"] = "implicit", }, }, - ["1199_ChaosDamage"] = { + ["1234_ChaosDamage"] = { ["Gloves"] = { ["max"] = 14, ["min"] = 7.5, @@ -10339,7 +10465,7 @@ return { ["type"] = "implicit", }, }, - ["1199_ChaosDamagePinnaclePresence"] = { + ["1234_ChaosDamagePinnaclePresence"] = { ["Gloves"] = { ["max"] = 28.5, ["min"] = 15.5, @@ -10353,7 +10479,7 @@ return { ["type"] = "implicit", }, }, - ["1199_ChaosDamageUniquePresence"] = { + ["1234_ChaosDamageUniquePresence"] = { ["Gloves"] = { ["max"] = 19, ["min"] = 10.5, @@ -10367,7 +10493,7 @@ return { ["type"] = "implicit", }, }, - ["1214_SpellAddedPhysicalDamage"] = { + ["1249_SpellAddedPhysicalDamage"] = { ["Helmet"] = { ["max"] = 22.5, ["min"] = 11.5, @@ -10381,7 +10507,7 @@ return { ["type"] = "implicit", }, }, - ["1214_SpellAddedPhysicalDamagePinnaclePresence"] = { + ["1249_SpellAddedPhysicalDamagePinnaclePresence"] = { ["Helmet"] = { ["max"] = 46, ["min"] = 24.5, @@ -10395,7 +10521,7 @@ return { ["type"] = "implicit", }, }, - ["1214_SpellAddedPhysicalDamageUniquePresence"] = { + ["1249_SpellAddedPhysicalDamageUniquePresence"] = { ["Helmet"] = { ["max"] = 30.5, ["min"] = 17, @@ -10409,7 +10535,7 @@ return { ["type"] = "implicit", }, }, - ["1215_SpellAddedFireDamage"] = { + ["1250_SpellAddedFireDamage"] = { ["Helmet"] = { ["max"] = 28, ["min"] = 15, @@ -10423,7 +10549,7 @@ return { ["type"] = "implicit", }, }, - ["1215_SpellAddedFireDamagePinnaclePresence"] = { + ["1250_SpellAddedFireDamagePinnaclePresence"] = { ["Helmet"] = { ["max"] = 56, ["min"] = 30.5, @@ -10437,7 +10563,7 @@ return { ["type"] = "implicit", }, }, - ["1215_SpellAddedFireDamageUniquePresence"] = { + ["1250_SpellAddedFireDamageUniquePresence"] = { ["Helmet"] = { ["max"] = 37.5, ["min"] = 21.5, @@ -10451,7 +10577,7 @@ return { ["type"] = "implicit", }, }, - ["1216_SpellAddedColdDamage"] = { + ["1251_SpellAddedColdDamage"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 13, @@ -10465,7 +10591,7 @@ return { ["type"] = "implicit", }, }, - ["1216_SpellAddedColdDamagePinnaclePresence"] = { + ["1251_SpellAddedColdDamagePinnaclePresence"] = { ["Helmet"] = { ["max"] = 50.5, ["min"] = 27.5, @@ -10479,7 +10605,7 @@ return { ["type"] = "implicit", }, }, - ["1216_SpellAddedColdDamageUniquePresence"] = { + ["1251_SpellAddedColdDamageUniquePresence"] = { ["Helmet"] = { ["max"] = 33.5, ["min"] = 19, @@ -10493,7 +10619,7 @@ return { ["type"] = "implicit", }, }, - ["1217_SpellAddedLightningDamage"] = { + ["1252_SpellAddedLightningDamage"] = { ["Helmet"] = { ["max"] = 32.5, ["min"] = 18, @@ -10507,7 +10633,7 @@ return { ["type"] = "implicit", }, }, - ["1217_SpellAddedLightningDamagePinnaclePresence"] = { + ["1252_SpellAddedLightningDamagePinnaclePresence"] = { ["Helmet"] = { ["max"] = 65, ["min"] = 37.5, @@ -10521,7 +10647,7 @@ return { ["type"] = "implicit", }, }, - ["1217_SpellAddedLightningDamageUniquePresence"] = { + ["1252_SpellAddedLightningDamageUniquePresence"] = { ["Helmet"] = { ["max"] = 43, ["min"] = 26, @@ -10535,7 +10661,7 @@ return { ["type"] = "implicit", }, }, - ["1218_SpellAddedChaosDamage"] = { + ["1253_SpellAddedChaosDamage"] = { ["Helmet"] = { ["max"] = 21, ["min"] = 11, @@ -10549,7 +10675,7 @@ return { ["type"] = "implicit", }, }, - ["1218_SpellAddedChaosDamagePinnaclePresence"] = { + ["1253_SpellAddedChaosDamagePinnaclePresence"] = { ["Helmet"] = { ["max"] = 43, ["min"] = 23.5, @@ -10563,7 +10689,7 @@ return { ["type"] = "implicit", }, }, - ["1218_SpellAddedChaosDamageUniquePresence"] = { + ["1253_SpellAddedChaosDamageUniquePresence"] = { ["Helmet"] = { ["max"] = 28, ["min"] = 15.5, @@ -10577,7 +10703,7 @@ return { ["type"] = "implicit", }, }, - ["1221_IncreasedAttackSpeed"] = { + ["1256_IncreasedAttackSpeed"] = { ["Gloves"] = { ["max"] = 13, ["min"] = 8, @@ -10591,7 +10717,7 @@ return { ["type"] = "implicit", }, }, - ["1221_IncreasedAttackSpeedPinnaclePresence"] = { + ["1256_IncreasedAttackSpeedPinnaclePresence"] = { ["Gloves"] = { ["max"] = 21, ["min"] = 18, @@ -10605,7 +10731,7 @@ return { ["type"] = "implicit", }, }, - ["1221_IncreasedAttackSpeedUniquePresence"] = { + ["1256_IncreasedAttackSpeedUniquePresence"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 13, @@ -10619,7 +10745,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeed"] = { + ["1291_IncreasedCastSpeed"] = { ["Helmet"] = { ["max"] = 13, ["min"] = 8, @@ -10633,7 +10759,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeedPinnaclePresence"] = { + ["1291_IncreasedCastSpeedPinnaclePresence"] = { ["Helmet"] = { ["max"] = 21, ["min"] = 18, @@ -10647,7 +10773,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeedUniquePresence"] = { + ["1291_IncreasedCastSpeedUniquePresence"] = { ["Helmet"] = { ["max"] = 17, ["min"] = 13, @@ -10661,7 +10787,7 @@ return { ["type"] = "implicit", }, }, - ["1268_SpellCriticalStrikeChance"] = { + ["1303_SpellCriticalStrikeChance"] = { ["Amulet"] = { ["max"] = 45, ["min"] = 28, @@ -10679,7 +10805,7 @@ return { ["type"] = "implicit", }, }, - ["1268_SpellCriticalStrikeChancePinnaclePresence"] = { + ["1303_SpellCriticalStrikeChancePinnaclePresence"] = { ["Amulet"] = { ["max"] = 69, ["min"] = 58, @@ -10697,7 +10823,7 @@ return { ["type"] = "implicit", }, }, - ["1268_SpellCriticalStrikeChanceUniquePresence"] = { + ["1303_SpellCriticalStrikeChanceUniquePresence"] = { ["Amulet"] = { ["max"] = 57, ["min"] = 43, @@ -10715,7 +10841,7 @@ return { ["type"] = "implicit", }, }, - ["1300_AttackCriticalStrikeMultiplier"] = { + ["1335_AttackCriticalStrikeMultiplier"] = { ["Chest"] = { ["max"] = 31, ["min"] = 20, @@ -10729,7 +10855,7 @@ return { ["type"] = "implicit", }, }, - ["1300_AttackCriticalStrikeMultiplierPinnaclePresence"] = { + ["1335_AttackCriticalStrikeMultiplierPinnaclePresence"] = { ["Chest"] = { ["max"] = 43, ["min"] = 36, @@ -10743,7 +10869,7 @@ return { ["type"] = "implicit", }, }, - ["1300_AttackCriticalStrikeMultiplierUniquePresence"] = { + ["1335_AttackCriticalStrikeMultiplierUniquePresence"] = { ["Chest"] = { ["max"] = 37, ["min"] = 28, @@ -10757,7 +10883,7 @@ return { ["type"] = "implicit", }, }, - ["1301_SpellCriticalStrikeMultiplier"] = { + ["1336_SpellCriticalStrikeMultiplier"] = { ["Chest"] = { ["max"] = 31, ["min"] = 20, @@ -10771,7 +10897,7 @@ return { ["type"] = "implicit", }, }, - ["1301_SpellCriticalStrikeMultiplierPinnaclePresence"] = { + ["1336_SpellCriticalStrikeMultiplierPinnaclePresence"] = { ["Chest"] = { ["max"] = 43, ["min"] = 36, @@ -10785,7 +10911,7 @@ return { ["type"] = "implicit", }, }, - ["1301_SpellCriticalStrikeMultiplierUniquePresence"] = { + ["1336_SpellCriticalStrikeMultiplierUniquePresence"] = { ["Chest"] = { ["max"] = 37, ["min"] = 28, @@ -10799,7 +10925,7 @@ return { ["type"] = "implicit", }, }, - ["1326_StunThresholdReduction"] = { + ["1361_StunThresholdReduction"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 6, @@ -10813,7 +10939,7 @@ return { ["type"] = "implicit", }, }, - ["1326_StunThresholdReductionPinnaclePresence"] = { + ["1361_StunThresholdReductionPinnaclePresence"] = { ["Gloves"] = { ["max"] = 29, ["min"] = 22, @@ -10827,7 +10953,7 @@ return { ["type"] = "implicit", }, }, - ["1326_StunThresholdReductionUniquePresence"] = { + ["1361_StunThresholdReductionUniquePresence"] = { ["Gloves"] = { ["max"] = 23, ["min"] = 14, @@ -10841,7 +10967,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceEldritch"] = { + ["1466_MaximumFireResistanceEldritch"] = { ["Chest"] = { ["max"] = 3, ["min"] = 1, @@ -10855,7 +10981,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceEldritchPinnaclePresence"] = { + ["1466_MaximumFireResistanceEldritchPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 4, @@ -10869,7 +10995,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceEldritchUniquePresence"] = { + ["1466_MaximumFireResistanceEldritchUniquePresence"] = { ["Chest"] = { ["max"] = 4, ["min"] = 2, @@ -10883,7 +11009,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceImplicit"] = { + ["1466_MaximumFireResistanceImplicit"] = { ["Boots"] = { ["max"] = 2, ["min"] = 1, @@ -10897,7 +11023,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceImplicitPinnaclePresence"] = { + ["1466_MaximumFireResistanceImplicitPinnaclePresence"] = { ["Boots"] = { ["max"] = 4, ["min"] = 3, @@ -10911,7 +11037,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceImplicitUniquePresence"] = { + ["1466_MaximumFireResistanceImplicitUniquePresence"] = { ["Boots"] = { ["max"] = 3, ["min"] = 2, @@ -10925,7 +11051,7 @@ return { ["type"] = "implicit", }, }, - ["1433_FireResistance"] = { + ["1468_FireResistance"] = { ["Boots"] = { ["max"] = 24, ["min"] = 13, @@ -10939,7 +11065,7 @@ return { ["type"] = "implicit", }, }, - ["1433_FireResistancePinnaclePresence"] = { + ["1468_FireResistancePinnaclePresence"] = { ["Boots"] = { ["max"] = 36, ["min"] = 29, @@ -10953,7 +11079,7 @@ return { ["type"] = "implicit", }, }, - ["1433_FireResistanceUniquePresence"] = { + ["1468_FireResistanceUniquePresence"] = { ["Boots"] = { ["max"] = 30, ["min"] = 21, @@ -10967,7 +11093,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceEldritch"] = { + ["1472_MaximumColdResistanceEldritch"] = { ["Chest"] = { ["max"] = 3, ["min"] = 1, @@ -10981,7 +11107,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceEldritchPinnaclePresence"] = { + ["1472_MaximumColdResistanceEldritchPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 4, @@ -10995,7 +11121,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceEldritchUniquePresence"] = { + ["1472_MaximumColdResistanceEldritchUniquePresence"] = { ["Chest"] = { ["max"] = 4, ["min"] = 2, @@ -11009,7 +11135,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceImplicit"] = { + ["1472_MaximumColdResistanceImplicit"] = { ["Gloves"] = { ["max"] = 2, ["min"] = 1, @@ -11023,7 +11149,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistancePinnaclePresence"] = { + ["1472_MaximumColdResistancePinnaclePresence"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 3, @@ -11037,7 +11163,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceUniquePresence"] = { + ["1472_MaximumColdResistanceUniquePresence"] = { ["Gloves"] = { ["max"] = 3, ["min"] = 2, @@ -11051,7 +11177,7 @@ return { ["type"] = "implicit", }, }, - ["1439_ColdResistance"] = { + ["1474_ColdResistance"] = { ["Boots"] = { ["max"] = 24, ["min"] = 13, @@ -11065,7 +11191,7 @@ return { ["type"] = "implicit", }, }, - ["1439_ColdResistancePinnaclePresence"] = { + ["1474_ColdResistancePinnaclePresence"] = { ["Boots"] = { ["max"] = 36, ["min"] = 29, @@ -11079,7 +11205,7 @@ return { ["type"] = "implicit", }, }, - ["1439_ColdResistanceUniquePresence"] = { + ["1474_ColdResistanceUniquePresence"] = { ["Boots"] = { ["max"] = 30, ["min"] = 21, @@ -11093,7 +11219,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceEldritch"] = { + ["1477_MaximumLightningResistanceEldritch"] = { ["Chest"] = { ["max"] = 3, ["min"] = 1, @@ -11107,7 +11233,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceEldritchPinnaclePresence"] = { + ["1477_MaximumLightningResistanceEldritchPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 4, @@ -11121,7 +11247,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceEldritchUniquePresence"] = { + ["1477_MaximumLightningResistanceEldritchUniquePresence"] = { ["Chest"] = { ["max"] = 4, ["min"] = 2, @@ -11135,7 +11261,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceImplicit"] = { + ["1477_MaximumLightningResistanceImplicit"] = { ["Helmet"] = { ["max"] = 2, ["min"] = 1, @@ -11149,7 +11275,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceImplicitPinnaclePresence"] = { + ["1477_MaximumLightningResistanceImplicitPinnaclePresence"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -11163,7 +11289,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceImplicitUniquePresence"] = { + ["1477_MaximumLightningResistanceImplicitUniquePresence"] = { ["Helmet"] = { ["max"] = 3, ["min"] = 2, @@ -11177,7 +11303,7 @@ return { ["type"] = "implicit", }, }, - ["1444_LightningResistance"] = { + ["1479_LightningResistance"] = { ["Boots"] = { ["max"] = 24, ["min"] = 13, @@ -11191,7 +11317,7 @@ return { ["type"] = "implicit", }, }, - ["1444_LightningResistancePinnaclePresence"] = { + ["1479_LightningResistancePinnaclePresence"] = { ["Boots"] = { ["max"] = 36, ["min"] = 29, @@ -11205,7 +11331,7 @@ return { ["type"] = "implicit", }, }, - ["1444_LightningResistanceUniquePresence"] = { + ["1479_LightningResistanceUniquePresence"] = { ["Boots"] = { ["max"] = 30, ["min"] = 21, @@ -11219,7 +11345,7 @@ return { ["type"] = "implicit", }, }, - ["1447_MaximumChaosResistanceImplicit"] = { + ["1482_MaximumChaosResistanceImplicit"] = { ["Chest"] = { ["max"] = 3, ["min"] = 1, @@ -11233,7 +11359,7 @@ return { ["type"] = "implicit", }, }, - ["1447_MaximumChaosResistanceImplicitPinnaclePresence"] = { + ["1482_MaximumChaosResistanceImplicitPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 4, @@ -11247,7 +11373,7 @@ return { ["type"] = "implicit", }, }, - ["1447_MaximumChaosResistanceImplicitUniquePresence"] = { + ["1482_MaximumChaosResistanceImplicitUniquePresence"] = { ["Chest"] = { ["max"] = 4, ["min"] = 2, @@ -11261,7 +11387,7 @@ return { ["type"] = "implicit", }, }, - ["1448_ChaosResistance"] = { + ["1483_ChaosResistance"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -11275,7 +11401,7 @@ return { ["type"] = "implicit", }, }, - ["1448_ChaosResistancePinnaclePresence"] = { + ["1483_ChaosResistancePinnaclePresence"] = { ["Boots"] = { ["max"] = 29, ["min"] = 22, @@ -11289,7 +11415,7 @@ return { ["type"] = "implicit", }, }, - ["1448_ChaosResistanceUniquePresence"] = { + ["1483_ChaosResistanceUniquePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 14, @@ -11303,7 +11429,7 @@ return { ["type"] = "implicit", }, }, - ["1449_MaximumResistances"] = { + ["1484_MaximumResistances"] = { ["Amulet"] = { ["max"] = 2, ["min"] = 1, @@ -11321,7 +11447,7 @@ return { ["type"] = "implicit", }, }, - ["1449_MaximumResistancesPinnaclePresence"] = { + ["1484_MaximumResistancesPinnaclePresence"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 3, @@ -11339,7 +11465,7 @@ return { ["type"] = "implicit", }, }, - ["1449_MaximumResistancesUniquePresence"] = { + ["1484_MaximumResistancesUniquePresence"] = { ["Amulet"] = { ["max"] = 3, ["min"] = 2, @@ -11357,7 +11483,7 @@ return { ["type"] = "implicit", }, }, - ["1572_MinionLife"] = { + ["1607_MinionLife"] = { ["Helmet"] = { ["max"] = 29, ["min"] = 14, @@ -11371,7 +11497,7 @@ return { ["type"] = "implicit", }, }, - ["1572_MinionLifePinnaclePresence"] = { + ["1607_MinionLifePinnaclePresence"] = { ["Helmet"] = { ["max"] = 41, ["min"] = 32, @@ -11385,7 +11511,7 @@ return { ["type"] = "implicit", }, }, - ["1572_MinionLifeUniquePresence"] = { + ["1607_MinionLifeUniquePresence"] = { ["Helmet"] = { ["max"] = 35, ["min"] = 23, @@ -11399,7 +11525,7 @@ return { ["type"] = "implicit", }, }, - ["1575_MinionRunSpeed"] = { + ["1610_MinionRunSpeed"] = { ["Helmet"] = { ["max"] = 22, ["min"] = 11, @@ -11413,7 +11539,7 @@ return { ["type"] = "implicit", }, }, - ["1575_MinionRunSpeedPinnaclePresence"] = { + ["1610_MinionRunSpeedPinnaclePresence"] = { ["Helmet"] = { ["max"] = 34, ["min"] = 25, @@ -11427,7 +11553,7 @@ return { ["type"] = "implicit", }, }, - ["1575_MinionRunSpeedUniquePresence"] = { + ["1610_MinionRunSpeedUniquePresence"] = { ["Helmet"] = { ["max"] = 28, ["min"] = 16, @@ -11441,7 +11567,7 @@ return { ["type"] = "implicit", }, }, - ["1604_MovementVelocity"] = { + ["1639_MovementVelocity"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 5, @@ -11459,7 +11585,7 @@ return { ["type"] = "implicit", }, }, - ["1604_MovementVelocityPinnaclePresence"] = { + ["1639_MovementVelocityPinnaclePresence"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 13, @@ -11477,7 +11603,7 @@ return { ["type"] = "implicit", }, }, - ["1604_MovementVelocityUniquePresence"] = { + ["1639_MovementVelocityUniquePresence"] = { ["Amulet"] = { ["max"] = 13, ["min"] = 9, @@ -11495,7 +11621,7 @@ return { ["type"] = "implicit", }, }, - ["1651_AvoidFreeze"] = { + ["1686_AvoidFreeze"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -11509,7 +11635,7 @@ return { ["type"] = "implicit", }, }, - ["1651_AvoidFreezePinnaclePresence"] = { + ["1686_AvoidFreezePinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -11523,7 +11649,7 @@ return { ["type"] = "implicit", }, }, - ["1651_AvoidFreezeUniquePresence"] = { + ["1686_AvoidFreezeUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -11537,7 +11663,7 @@ return { ["type"] = "implicit", }, }, - ["1652_AvoidIgnite"] = { + ["1687_AvoidIgnite"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -11551,7 +11677,7 @@ return { ["type"] = "implicit", }, }, - ["1652_AvoidIgnitePinnaclePresence"] = { + ["1687_AvoidIgnitePinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -11565,7 +11691,7 @@ return { ["type"] = "implicit", }, }, - ["1652_AvoidIgniteUniquePresence"] = { + ["1687_AvoidIgniteUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -11579,7 +11705,7 @@ return { ["type"] = "implicit", }, }, - ["1654_AvoidShock"] = { + ["1689_AvoidShock"] = { ["Boots"] = { ["max"] = 50, ["min"] = 33, @@ -11593,7 +11719,7 @@ return { ["type"] = "implicit", }, }, - ["1654_AvoidShockPinnaclePresence"] = { + ["1689_AvoidShockPinnaclePresence"] = { ["Boots"] = { ["max"] = 70, ["min"] = 57, @@ -11607,7 +11733,7 @@ return { ["type"] = "implicit", }, }, - ["1654_AvoidShockUniquePresence"] = { + ["1689_AvoidShockUniquePresence"] = { ["Boots"] = { ["max"] = 61, ["min"] = 45, @@ -11621,7 +11747,7 @@ return { ["type"] = "implicit", }, }, - ["1657_AvoidStun"] = { + ["1692_AvoidStun"] = { ["Boots"] = { ["max"] = 32, ["min"] = 15, @@ -11635,7 +11761,7 @@ return { ["type"] = "implicit", }, }, - ["1657_AvoidStunPinnaclePresence"] = { + ["1692_AvoidStunPinnaclePresence"] = { ["Boots"] = { ["max"] = 50, ["min"] = 39, @@ -11649,7 +11775,7 @@ return { ["type"] = "implicit", }, }, - ["1657_AvoidStunUniquePresence"] = { + ["1692_AvoidStunUniquePresence"] = { ["Boots"] = { ["max"] = 41, ["min"] = 27, @@ -11663,7 +11789,7 @@ return { ["type"] = "implicit", }, }, - ["1686_AreaOfEffect"] = { + ["1721_AreaOfEffect"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 7, @@ -11681,7 +11807,7 @@ return { ["type"] = "implicit", }, }, - ["1686_AreaOfEffectPinnaclePresence"] = { + ["1721_AreaOfEffectPinnaclePresence"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 23, @@ -11699,7 +11825,7 @@ return { ["type"] = "implicit", }, }, - ["1686_AreaOfEffectUniquePresence"] = { + ["1721_AreaOfEffectUniquePresence"] = { ["Amulet"] = { ["max"] = 24, ["min"] = 15, @@ -11717,7 +11843,7 @@ return { ["type"] = "implicit", }, }, - ["1731_TrapThrowSpeed"] = { + ["1766_TrapThrowSpeed"] = { ["Gloves"] = { ["max"] = 13, ["min"] = 8, @@ -11731,7 +11857,7 @@ return { ["type"] = "implicit", }, }, - ["1731_TrapThrowSpeedPinnaclePresence"] = { + ["1766_TrapThrowSpeedPinnaclePresence"] = { ["Gloves"] = { ["max"] = 21, ["min"] = 18, @@ -11745,7 +11871,7 @@ return { ["type"] = "implicit", }, }, - ["1731_TrapThrowSpeedUniquePresence"] = { + ["1766_TrapThrowSpeedUniquePresence"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 13, @@ -11759,7 +11885,7 @@ return { ["type"] = "implicit", }, }, - ["1732_MineLayingSpeed"] = { + ["1767_MineLayingSpeed"] = { ["Gloves"] = { ["max"] = 13, ["min"] = 8, @@ -11773,7 +11899,7 @@ return { ["type"] = "implicit", }, }, - ["1732_MineLayingSpeedPinnaclePresence"] = { + ["1767_MineLayingSpeedPinnaclePresence"] = { ["Gloves"] = { ["max"] = 21, ["min"] = 18, @@ -11787,7 +11913,7 @@ return { ["type"] = "implicit", }, }, - ["1732_MineLayingSpeedUniquePresence"] = { + ["1767_MineLayingSpeedUniquePresence"] = { ["Gloves"] = { ["max"] = 17, ["min"] = 13, @@ -11801,7 +11927,7 @@ return { ["type"] = "implicit", }, }, - ["1777_MinionDamage"] = { + ["1812_MinionDamage"] = { ["Amulet"] = { ["max"] = 29, ["min"] = 14, @@ -11819,7 +11945,7 @@ return { ["type"] = "implicit", }, }, - ["1777_MinionDamagePinnaclePresence"] = { + ["1812_MinionDamagePinnaclePresence"] = { ["Amulet"] = { ["max"] = 53, ["min"] = 44, @@ -11837,7 +11963,7 @@ return { ["type"] = "implicit", }, }, - ["1777_MinionDamageUniquePresence"] = { + ["1812_MinionDamageUniquePresence"] = { ["Amulet"] = { ["max"] = 41, ["min"] = 29, @@ -11855,7 +11981,7 @@ return { ["type"] = "implicit", }, }, - ["2369_SummonTotemCastSpeed"] = { + ["2411_SummonTotemCastSpeed"] = { ["Boots"] = { ["max"] = 15, ["min"] = 10, @@ -11869,7 +11995,7 @@ return { ["type"] = "implicit", }, }, - ["2369_SummonTotemCastSpeedPinnaclePresence"] = { + ["2411_SummonTotemCastSpeedPinnaclePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 20, @@ -11883,7 +12009,7 @@ return { ["type"] = "implicit", }, }, - ["2369_SummonTotemCastSpeedUniquePresence"] = { + ["2411_SummonTotemCastSpeedUniquePresence"] = { ["Boots"] = { ["max"] = 19, ["min"] = 15, @@ -11897,7 +12023,7 @@ return { ["type"] = "implicit", }, }, - ["2387_CurseEffectiveness"] = { + ["2429_CurseEffectiveness"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 7, @@ -11915,7 +12041,7 @@ return { ["type"] = "implicit", }, }, - ["2387_CurseEffectivenessPinnaclePresence"] = { + ["2429_CurseEffectivenessPinnaclePresence"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 15, @@ -11933,7 +12059,7 @@ return { ["type"] = "implicit", }, }, - ["2387_CurseEffectivenessUniquePresence"] = { + ["2429_CurseEffectivenessUniquePresence"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 11, @@ -11951,7 +12077,7 @@ return { ["type"] = "implicit", }, }, - ["2482_DamageRemovedFromManaBeforeLife"] = { + ["2528_DamageRemovedFromManaBeforeLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -11961,7 +12087,7 @@ return { ["type"] = "implicit", }, }, - ["2482_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { + ["2528_DamageRemovedFromManaBeforeLifePinnaclePresence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -11971,7 +12097,7 @@ return { ["type"] = "implicit", }, }, - ["2482_DamageRemovedFromManaBeforeLifeUniquePresence"] = { + ["2528_DamageRemovedFromManaBeforeLifeUniquePresence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -11981,7 +12107,7 @@ return { ["type"] = "implicit", }, }, - ["2527_FlaskEffect"] = { + ["2573_FlaskEffect"] = { ["Chest"] = { ["max"] = 17, ["min"] = 6, @@ -11995,7 +12121,7 @@ return { ["type"] = "implicit", }, }, - ["2527_FlaskEffectPinnaclePresence"] = { + ["2573_FlaskEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 29, ["min"] = 22, @@ -12009,7 +12135,7 @@ return { ["type"] = "implicit", }, }, - ["2527_FlaskEffectUniquePresence"] = { + ["2573_FlaskEffectUniquePresence"] = { ["Chest"] = { ["max"] = 23, ["min"] = 14, @@ -12023,7 +12149,7 @@ return { ["type"] = "implicit", }, }, - ["2975_DamagePerEnduranceCharge"] = { + ["3021_DamagePerEnduranceCharge"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -12037,7 +12163,7 @@ return { ["type"] = "implicit", }, }, - ["2975_DamagePerEnduranceChargePinnaclePresence"] = { + ["3021_DamagePerEnduranceChargePinnaclePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 7, @@ -12051,7 +12177,7 @@ return { ["type"] = "implicit", }, }, - ["2975_DamagePerEnduranceChargeUniquePresence"] = { + ["3021_DamagePerEnduranceChargeUniquePresence"] = { ["Boots"] = { ["max"] = 7, ["min"] = 5, @@ -12065,7 +12191,7 @@ return { ["type"] = "implicit", }, }, - ["3064_DamagePerFrenzyCharge"] = { + ["3110_DamagePerFrenzyCharge"] = { ["Gloves"] = { ["max"] = 6, ["min"] = 4, @@ -12079,7 +12205,7 @@ return { ["type"] = "implicit", }, }, - ["3064_DamagePerFrenzyChargePinnaclePresence"] = { + ["3110_DamagePerFrenzyChargePinnaclePresence"] = { ["Gloves"] = { ["max"] = 8, ["min"] = 7, @@ -12093,7 +12219,7 @@ return { ["type"] = "implicit", }, }, - ["3064_DamagePerFrenzyChargeUniquePresence"] = { + ["3110_DamagePerFrenzyChargeUniquePresence"] = { ["Gloves"] = { ["max"] = 7, ["min"] = 5, @@ -12107,7 +12233,7 @@ return { ["type"] = "implicit", }, }, - ["3068_OnslaughtEffect"] = { + ["3114_OnslaughtEffect"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -12121,7 +12247,7 @@ return { ["type"] = "implicit", }, }, - ["3068_OnslaughtEffectPinnaclePresence"] = { + ["3114_OnslaughtEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 29, ["min"] = 22, @@ -12135,7 +12261,7 @@ return { ["type"] = "implicit", }, }, - ["3068_OnslaughtEffectUniquePresence"] = { + ["3114_OnslaughtEffectUniquePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 14, @@ -12149,7 +12275,7 @@ return { ["type"] = "implicit", }, }, - ["3252_FlaskGainPerSecond"] = { + ["3298_FlaskGainPerSecond"] = { ["Chest"] = { ["max"] = 3, ["min"] = 2, @@ -12163,7 +12289,7 @@ return { ["type"] = "implicit", }, }, - ["3252_FlaskGainPerSecondPinnaclePresence"] = { + ["3298_FlaskGainPerSecondPinnaclePresence"] = { ["Chest"] = { ["max"] = 4, ["min"] = 3, @@ -12177,7 +12303,7 @@ return { ["type"] = "implicit", }, }, - ["3252_FlaskGainPerSecondUniquePresence"] = { + ["3298_FlaskGainPerSecondUniquePresence"] = { ["Chest"] = { ["max"] = 3, ["min"] = 2, @@ -12191,7 +12317,7 @@ return { ["type"] = "implicit", }, }, - ["3339_AuraEffect"] = { + ["3385_AuraEffect"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 9, @@ -12209,7 +12335,7 @@ return { ["type"] = "implicit", }, }, - ["3339_AuraEffectPinnaclePresence"] = { + ["3385_AuraEffectPinnaclePresence"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 29, @@ -12227,7 +12353,7 @@ return { ["type"] = "implicit", }, }, - ["3339_AuraEffectUniquePresence"] = { + ["3385_AuraEffectUniquePresence"] = { ["Amulet"] = { ["max"] = 28, ["min"] = 19, @@ -12245,7 +12371,7 @@ return { ["type"] = "implicit", }, }, - ["3776_CurseEffectTemporalChains"] = { + ["3822_CurseEffectTemporalChains"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12259,7 +12385,7 @@ return { ["type"] = "implicit", }, }, - ["3776_CurseEffectTemporalChainsPinnaclePresence"] = { + ["3822_CurseEffectTemporalChainsPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12273,7 +12399,7 @@ return { ["type"] = "implicit", }, }, - ["3776_CurseEffectTemporalChainsUniquePresence"] = { + ["3822_CurseEffectTemporalChainsUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12287,7 +12413,7 @@ return { ["type"] = "implicit", }, }, - ["3778_CurseEffectConductivity"] = { + ["3824_CurseEffectConductivity"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12301,7 +12427,7 @@ return { ["type"] = "implicit", }, }, - ["3778_CurseEffectConductivityPinnaclePresence"] = { + ["3824_CurseEffectConductivityPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12315,7 +12441,7 @@ return { ["type"] = "implicit", }, }, - ["3778_CurseEffectConductivityUniquePresence"] = { + ["3824_CurseEffectConductivityUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12329,7 +12455,7 @@ return { ["type"] = "implicit", }, }, - ["3779_CurseEffectElementalWeakness"] = { + ["3825_CurseEffectElementalWeakness"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12343,7 +12469,7 @@ return { ["type"] = "implicit", }, }, - ["3779_CurseEffectElementalWeaknessPinnaclePresence"] = { + ["3825_CurseEffectElementalWeaknessPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12357,7 +12483,7 @@ return { ["type"] = "implicit", }, }, - ["3779_CurseEffectElementalWeaknessUniquePresence"] = { + ["3825_CurseEffectElementalWeaknessUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12371,7 +12497,7 @@ return { ["type"] = "implicit", }, }, - ["3780_CurseEffectEnfeeble"] = { + ["3826_CurseEffectEnfeeble"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12385,7 +12511,7 @@ return { ["type"] = "implicit", }, }, - ["3780_CurseEffectEnfeeblePinnaclePresence"] = { + ["3826_CurseEffectEnfeeblePinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12399,7 +12525,7 @@ return { ["type"] = "implicit", }, }, - ["3780_CurseEffectEnfeebleUniquePresence"] = { + ["3826_CurseEffectEnfeebleUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12413,7 +12539,7 @@ return { ["type"] = "implicit", }, }, - ["3781_CurseEffectFlammability"] = { + ["3827_CurseEffectFlammability"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12427,7 +12553,7 @@ return { ["type"] = "implicit", }, }, - ["3781_CurseEffectFlammabilityPinnaclePresence"] = { + ["3827_CurseEffectFlammabilityPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12441,7 +12567,7 @@ return { ["type"] = "implicit", }, }, - ["3781_CurseEffectFlammabilityUniquePresence"] = { + ["3827_CurseEffectFlammabilityUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12455,7 +12581,7 @@ return { ["type"] = "implicit", }, }, - ["3782_CurseEffectFrostbite"] = { + ["3828_CurseEffectFrostbite"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12469,7 +12595,7 @@ return { ["type"] = "implicit", }, }, - ["3782_CurseEffectFrostbitePinnaclePresence"] = { + ["3828_CurseEffectFrostbitePinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12483,7 +12609,7 @@ return { ["type"] = "implicit", }, }, - ["3782_CurseEffectFrostbiteUniquePresence"] = { + ["3828_CurseEffectFrostbiteUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12497,7 +12623,7 @@ return { ["type"] = "implicit", }, }, - ["3783_CurseEffectPunishment"] = { + ["3829_CurseEffectPunishment"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12511,7 +12637,7 @@ return { ["type"] = "implicit", }, }, - ["3783_CurseEffectPunishmentPinnaclePresence"] = { + ["3829_CurseEffectPunishmentPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12525,7 +12651,7 @@ return { ["type"] = "implicit", }, }, - ["3783_CurseEffectPunishmentUniquePresence"] = { + ["3829_CurseEffectPunishmentUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12539,7 +12665,7 @@ return { ["type"] = "implicit", }, }, - ["3784_CurseEffectVulnerability"] = { + ["3830_CurseEffectVulnerability"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -12553,7 +12679,7 @@ return { ["type"] = "implicit", }, }, - ["3784_CurseEffectVulnerabilityPinnaclePresence"] = { + ["3830_CurseEffectVulnerabilityPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -12567,7 +12693,7 @@ return { ["type"] = "implicit", }, }, - ["3784_CurseEffectVulnerabilityUniquePresence"] = { + ["3830_CurseEffectVulnerabilityUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -12581,7 +12707,7 @@ return { ["type"] = "implicit", }, }, - ["3790_ArcticArmourBuffEffect"] = { + ["3836_ArcticArmourBuffEffect"] = { ["Chest"] = { ["max"] = 32, ["min"] = 15, @@ -12595,7 +12721,7 @@ return { ["type"] = "implicit", }, }, - ["3790_ArcticArmourBuffEffectPinnaclePresence"] = { + ["3836_ArcticArmourBuffEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 50, ["min"] = 39, @@ -12609,7 +12735,7 @@ return { ["type"] = "implicit", }, }, - ["3790_ArcticArmourBuffEffectUniquePresence"] = { + ["3836_ArcticArmourBuffEffectUniquePresence"] = { ["Chest"] = { ["max"] = 41, ["min"] = 27, @@ -12623,7 +12749,7 @@ return { ["type"] = "implicit", }, }, - ["3830_OfferingEffect"] = { + ["3876_OfferingEffect"] = { ["Chest"] = { ["max"] = 24, ["min"] = 13, @@ -12637,7 +12763,7 @@ return { ["type"] = "implicit", }, }, - ["3830_OfferingEffectPinnaclePresence"] = { + ["3876_OfferingEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 36, ["min"] = 29, @@ -12651,7 +12777,7 @@ return { ["type"] = "implicit", }, }, - ["3830_OfferingEffectUniquePresence"] = { + ["3876_OfferingEffectUniquePresence"] = { ["Chest"] = { ["max"] = 30, ["min"] = 21, @@ -12665,7 +12791,7 @@ return { ["type"] = "implicit", }, }, - ["3863_RockGolemBuffEffect"] = { + ["3909_RockGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -12679,7 +12805,7 @@ return { ["type"] = "implicit", }, }, - ["3863_RockGolemBuffEffectPinnaclePresence"] = { + ["3909_RockGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -12693,7 +12819,7 @@ return { ["type"] = "implicit", }, }, - ["3863_RockGolemBuffEffectUniquePresence"] = { + ["3909_RockGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -12707,7 +12833,7 @@ return { ["type"] = "implicit", }, }, - ["3864_FireGolemBuffEffect"] = { + ["3910_FireGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -12721,7 +12847,7 @@ return { ["type"] = "implicit", }, }, - ["3864_FireGolemBuffEffectPinnaclePresence"] = { + ["3910_FireGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -12735,7 +12861,7 @@ return { ["type"] = "implicit", }, }, - ["3864_FireGolemBuffEffectUniquePresence"] = { + ["3910_FireGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -12749,7 +12875,7 @@ return { ["type"] = "implicit", }, }, - ["3865_IceGolemBuffEffect"] = { + ["3911_IceGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -12763,7 +12889,7 @@ return { ["type"] = "implicit", }, }, - ["3865_IceGolemBuffEffectPinnaclePresence"] = { + ["3911_IceGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -12777,7 +12903,7 @@ return { ["type"] = "implicit", }, }, - ["3865_IceGolemBuffEffectUniquePresence"] = { + ["3911_IceGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -12791,7 +12917,7 @@ return { ["type"] = "implicit", }, }, - ["3866_LightningGolemBuffEffect"] = { + ["3912_LightningGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -12805,7 +12931,7 @@ return { ["type"] = "implicit", }, }, - ["3866_LightningGolemBuffEffectPinnaclePresence"] = { + ["3912_LightningGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -12819,7 +12945,7 @@ return { ["type"] = "implicit", }, }, - ["3866_LightningGolemBuffEffectUniquePresence"] = { + ["3912_LightningGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -12833,7 +12959,7 @@ return { ["type"] = "implicit", }, }, - ["3867_ChaosGolemBuffEffect"] = { + ["3913_ChaosGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -12847,7 +12973,7 @@ return { ["type"] = "implicit", }, }, - ["3867_ChaosGolemBuffEffectPinnaclePresence"] = { + ["3913_ChaosGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -12861,7 +12987,7 @@ return { ["type"] = "implicit", }, }, - ["3867_ChaosGolemBuffEffectUniquePresence"] = { + ["3913_ChaosGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -12875,7 +13001,7 @@ return { ["type"] = "implicit", }, }, - ["4222_ActionSpeedImplicit"] = { + ["4274_ActionSpeedImplicit"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -12889,7 +13015,7 @@ return { ["type"] = "implicit", }, }, - ["4222_ActionSpeedImplicitPinnaclePresence"] = { + ["4274_ActionSpeedImplicitPinnaclePresence"] = { ["Boots"] = { ["max"] = 8, ["min"] = 7, @@ -12903,7 +13029,7 @@ return { ["type"] = "implicit", }, }, - ["4222_ActionSpeedImplicitUniquePresence"] = { + ["4274_ActionSpeedImplicitUniquePresence"] = { ["Boots"] = { ["max"] = 7, ["min"] = 5, @@ -12917,7 +13043,7 @@ return { ["type"] = "implicit", }, }, - ["4469_AttackCriticalStrikeChance"] = { + ["4524_AttackCriticalStrikeChance"] = { ["Amulet"] = { ["max"] = 36, ["min"] = 19, @@ -12935,7 +13061,7 @@ return { ["type"] = "implicit", }, }, - ["4469_AttackCriticalStrikeChancePinnaclePresence"] = { + ["4524_AttackCriticalStrikeChancePinnaclePresence"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 49, @@ -12953,7 +13079,7 @@ return { ["type"] = "implicit", }, }, - ["4469_AttackCriticalStrikeChanceUniquePresence"] = { + ["4524_AttackCriticalStrikeChanceUniquePresence"] = { ["Amulet"] = { ["max"] = 48, ["min"] = 34, @@ -12971,7 +13097,7 @@ return { ["type"] = "implicit", }, }, - ["4491_ReducedAttackManaCost"] = { + ["4546_ReducedAttackManaCost"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 19, @@ -12985,7 +13111,7 @@ return { ["type"] = "implicit", }, }, - ["4491_ReducedAttackManaCostPinnaclePresence"] = { + ["4546_ReducedAttackManaCostPinnaclePresence"] = { ["Helmet"] = { ["max"] = 42, ["min"] = 35, @@ -12999,7 +13125,7 @@ return { ["type"] = "implicit", }, }, - ["4491_ReducedAttackManaCostUniquePresence"] = { + ["4546_ReducedAttackManaCostUniquePresence"] = { ["Helmet"] = { ["max"] = 36, ["min"] = 27, @@ -13013,7 +13139,7 @@ return { ["type"] = "implicit", }, }, - ["4588_CarrionGolemBuffEffect"] = { + ["4647_CarrionGolemBuffEffect"] = { ["Boots"] = { ["max"] = 48, ["min"] = 31, @@ -13027,7 +13153,7 @@ return { ["type"] = "implicit", }, }, - ["4588_CarrionGolemBuffEffectPinnaclePresence"] = { + ["4647_CarrionGolemBuffEffectPinnaclePresence"] = { ["Boots"] = { ["max"] = 72, ["min"] = 61, @@ -13041,7 +13167,7 @@ return { ["type"] = "implicit", }, }, - ["4588_CarrionGolemBuffEffectUniquePresence"] = { + ["4647_CarrionGolemBuffEffectUniquePresence"] = { ["Boots"] = { ["max"] = 60, ["min"] = 46, @@ -13055,7 +13181,7 @@ return { ["type"] = "implicit", }, }, - ["4820_EnduranceChargePerSecond"] = { + ["4882_EnduranceChargePerSecond"] = { ["Chest"] = { ["max"] = 15, ["min"] = 10, @@ -13069,7 +13195,7 @@ return { ["type"] = "implicit", }, }, - ["4820_EnduranceChargePerSecondPinnaclePresence"] = { + ["4882_EnduranceChargePerSecondPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 2, @@ -13083,7 +13209,7 @@ return { ["type"] = "implicit", }, }, - ["4820_EnduranceChargePerSecondUniquePresence"] = { + ["4882_EnduranceChargePerSecondUniquePresence"] = { ["Chest"] = { ["max"] = 10, ["min"] = 6, @@ -13097,7 +13223,7 @@ return { ["type"] = "implicit", }, }, - ["4821_FrenzyChargePerSecond"] = { + ["4883_FrenzyChargePerSecond"] = { ["Chest"] = { ["max"] = 15, ["min"] = 10, @@ -13111,7 +13237,7 @@ return { ["type"] = "implicit", }, }, - ["4821_FrenzyChargePerSecondPinnaclePresence"] = { + ["4883_FrenzyChargePerSecondPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 2, @@ -13125,7 +13251,7 @@ return { ["type"] = "implicit", }, }, - ["4821_FrenzyChargePerSecondUniquePresence"] = { + ["4883_FrenzyChargePerSecondUniquePresence"] = { ["Chest"] = { ["max"] = 10, ["min"] = 6, @@ -13139,7 +13265,7 @@ return { ["type"] = "implicit", }, }, - ["4822_PowerChargePerSecond"] = { + ["4884_PowerChargePerSecond"] = { ["Chest"] = { ["max"] = 15, ["min"] = 10, @@ -13153,7 +13279,7 @@ return { ["type"] = "implicit", }, }, - ["4822_PowerChargePerSecondPinnaclePresence"] = { + ["4884_PowerChargePerSecondPinnaclePresence"] = { ["Chest"] = { ["max"] = 5, ["min"] = 2, @@ -13167,7 +13293,7 @@ return { ["type"] = "implicit", }, }, - ["4822_PowerChargePerSecondUniquePresence"] = { + ["4884_PowerChargePerSecondUniquePresence"] = { ["Chest"] = { ["max"] = 10, ["min"] = 6, @@ -13181,7 +13307,7 @@ return { ["type"] = "implicit", }, }, - ["4831_BrittleGroundMovingImplicit"] = { + ["4893_BrittleGroundMovingImplicit"] = { ["Boots"] = { ["max"] = 7, ["min"] = 2, @@ -13195,7 +13321,7 @@ return { ["type"] = "implicit", }, }, - ["4831_BrittleGroundWhileMovingPinnaclePresence"] = { + ["4893_BrittleGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { ["max"] = 11, ["min"] = 8, @@ -13209,7 +13335,7 @@ return { ["type"] = "implicit", }, }, - ["4831_BrittleGroundWhileMovingUniquePresence"] = { + ["4893_BrittleGroundWhileMovingUniquePresence"] = { ["Boots"] = { ["max"] = 9, ["min"] = 5, @@ -13223,7 +13349,7 @@ return { ["type"] = "implicit", }, }, - ["4832_SappedGroundMovingImplicit"] = { + ["4894_SappedGroundMovingImplicit"] = { ["Boots"] = { ["max"] = 7, ["min"] = 2, @@ -13237,7 +13363,7 @@ return { ["type"] = "implicit", }, }, - ["4832_SappedGroundWhileMovingPinnaclePresence"] = { + ["4894_SappedGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { ["max"] = 11, ["min"] = 8, @@ -13251,7 +13377,7 @@ return { ["type"] = "implicit", }, }, - ["4832_SappedGroundWhileMovingUniquePresence"] = { + ["4894_SappedGroundWhileMovingUniquePresence"] = { ["Boots"] = { ["max"] = 9, ["min"] = 5, @@ -13265,7 +13391,7 @@ return { ["type"] = "implicit", }, }, - ["4833_ScorchedGroundMovingImplicit"] = { + ["4895_ScorchedGroundMovingImplicit"] = { ["Boots"] = { ["max"] = 7, ["min"] = 2, @@ -13279,7 +13405,7 @@ return { ["type"] = "implicit", }, }, - ["4833_ScorchedGroundWhileMovingPinnaclePresence"] = { + ["4895_ScorchedGroundWhileMovingPinnaclePresence"] = { ["Boots"] = { ["max"] = 11, ["min"] = 8, @@ -13293,7 +13419,7 @@ return { ["type"] = "implicit", }, }, - ["4833_ScorchedGroundWhileMovingUniquePresence"] = { + ["4895_ScorchedGroundWhileMovingUniquePresence"] = { ["Boots"] = { ["max"] = 9, ["min"] = 5, @@ -13307,7 +13433,7 @@ return { ["type"] = "implicit", }, }, - ["5135_ChanceToIntimidateOnHit"] = { + ["5188_ChanceToIntimidateOnHit"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 15, @@ -13316,12 +13442,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_78985352", + ["id"] = "implicit.stat_2089652545", ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", ["type"] = "implicit", }, }, - ["5135_ChanceToIntimidateOnHitPinnaclePresence"] = { + ["5188_ChanceToIntimidateOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 95, ["min"] = 85, @@ -13335,7 +13461,7 @@ return { ["type"] = "implicit", }, }, - ["5135_ChanceToIntimidateOnHitUniquePresence"] = { + ["5188_ChanceToIntimidateOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 50, @@ -13349,7 +13475,7 @@ return { ["type"] = "implicit", }, }, - ["5143_ChanceToUnnerveOnHit"] = { + ["5196_ChanceToUnnerveOnHit"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 15, @@ -13363,7 +13489,7 @@ return { ["type"] = "implicit", }, }, - ["5143_ChanceToUnnerveOnHitPinnaclePresence"] = { + ["5196_ChanceToUnnerveOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 95, ["min"] = 4, @@ -13377,7 +13503,7 @@ return { ["type"] = "implicit", }, }, - ["5143_ChanceToUnnerveOnHitUniquePresence"] = { + ["5196_ChanceToUnnerveOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 50, @@ -13391,7 +13517,7 @@ return { ["type"] = "implicit", }, }, - ["5229_ColdDamageTakenGainedAsLife"] = { + ["5283_ColdDamageTakenGainedAsLife"] = { ["Helmet"] = { ["max"] = 18, ["min"] = 7, @@ -13405,7 +13531,7 @@ return { ["type"] = "implicit", }, }, - ["5229_ColdDamageTakenGainedAsLifePinnaclePresence"] = { + ["5283_ColdDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 23, @@ -13419,7 +13545,7 @@ return { ["type"] = "implicit", }, }, - ["5229_ColdDamageTakenGainedAsLifeUniquePresence"] = { + ["5283_ColdDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { ["max"] = 24, ["min"] = 15, @@ -13433,7 +13559,7 @@ return { ["type"] = "implicit", }, }, - ["5459_IncreasedDamagePerPowerCharge"] = { + ["5516_IncreasedDamagePerPowerCharge"] = { ["Helmet"] = { ["max"] = 6, ["min"] = 4, @@ -13447,7 +13573,7 @@ return { ["type"] = "implicit", }, }, - ["5459_IncreasedDamagePerPowerChargePinnaclePresence"] = { + ["5516_IncreasedDamagePerPowerChargePinnaclePresence"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 7, @@ -13461,7 +13587,7 @@ return { ["type"] = "implicit", }, }, - ["5459_IncreasedDamagePerPowerChargeUniquePresence"] = { + ["5516_IncreasedDamagePerPowerChargeUniquePresence"] = { ["Helmet"] = { ["max"] = 7, ["min"] = 5, @@ -13475,7 +13601,7 @@ return { ["type"] = "implicit", }, }, - ["5491_DamageTakenGainedAsLife"] = { + ["5548_DamageTakenGainedAsLife"] = { ["Chest"] = { ["max"] = 19, ["min"] = 8, @@ -13489,7 +13615,7 @@ return { ["type"] = "implicit", }, }, - ["5491_DamageTakenGainedAsLifePinnaclePresence"] = { + ["5548_DamageTakenGainedAsLifePinnaclePresence"] = { ["Chest"] = { ["max"] = 31, ["min"] = 24, @@ -13503,7 +13629,7 @@ return { ["type"] = "implicit", }, }, - ["5491_DamageTakenGainedAsLifeUniquePresence"] = { + ["5548_DamageTakenGainedAsLifeUniquePresence"] = { ["Chest"] = { ["max"] = 25, ["min"] = 16, @@ -13517,7 +13643,7 @@ return { ["type"] = "implicit", }, }, - ["5549_CurseEffectDespair"] = { + ["5606_CurseEffectDespair"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -13531,7 +13657,7 @@ return { ["type"] = "implicit", }, }, - ["5549_CurseEffectDespairPinnaclePresence"] = { + ["5606_CurseEffectDespairPinnaclePresence"] = { ["Helmet"] = { ["max"] = 23, ["min"] = 20, @@ -13545,7 +13671,7 @@ return { ["type"] = "implicit", }, }, - ["5549_CurseEffectDespairUniquePresence"] = { + ["5606_CurseEffectDespairUniquePresence"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 15, @@ -13559,7 +13685,7 @@ return { ["type"] = "implicit", }, }, - ["5862_ExtinguishOnHitChance"] = { + ["5926_ExtinguishOnHitChance"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 15, @@ -13573,7 +13699,7 @@ return { ["type"] = "implicit", }, }, - ["5862_ExtinguishOnHitPinnaclePresence"] = { + ["5926_ExtinguishOnHitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 100, ["min"] = 85, @@ -13587,7 +13713,7 @@ return { ["type"] = "implicit", }, }, - ["5862_ExtinguishOnHitUniquePresence"] = { + ["5926_ExtinguishOnHitUniquePresence"] = { ["Gloves"] = { ["max"] = 70, ["min"] = 50, @@ -13601,7 +13727,7 @@ return { ["type"] = "implicit", }, }, - ["5898_FireDamageTakenGainedAsLife"] = { + ["5962_FireDamageTakenGainedAsLife"] = { ["Helmet"] = { ["max"] = 18, ["min"] = 7, @@ -13615,7 +13741,7 @@ return { ["type"] = "implicit", }, }, - ["5898_FireDamageTakenGainedAsLifePinnaclePresence"] = { + ["5962_FireDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 23, @@ -13629,7 +13755,7 @@ return { ["type"] = "implicit", }, }, - ["5898_FireDamageTakenGainedAsLifeUniquePresence"] = { + ["5962_FireDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { ["max"] = 24, ["min"] = 15, @@ -13643,7 +13769,7 @@ return { ["type"] = "implicit", }, }, - ["5966_FleshAndStoneAreaOfEffect"] = { + ["6032_FleshAndStoneAreaOfEffect"] = { ["Chest"] = { ["max"] = 32, ["min"] = 15, @@ -13657,7 +13783,7 @@ return { ["type"] = "implicit", }, }, - ["5966_FleshAndStoneAreaOfEffectPinnaclePresence"] = { + ["6032_FleshAndStoneAreaOfEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 50, ["min"] = 39, @@ -13671,7 +13797,7 @@ return { ["type"] = "implicit", }, }, - ["5966_FleshAndStoneAreaOfEffectUniquePresence"] = { + ["6032_FleshAndStoneAreaOfEffectUniquePresence"] = { ["Chest"] = { ["max"] = 41, ["min"] = 27, @@ -13685,7 +13811,7 @@ return { ["type"] = "implicit", }, }, - ["6154_RageOnHitImplicit"] = { + ["6224_RageOnHitImplicit"] = { ["Gloves"] = { ["max"] = 1.2, ["min"] = 0.7, @@ -13699,7 +13825,7 @@ return { ["type"] = "implicit", }, }, - ["6154_RageOnHitImplicitPinnaclePresence"] = { + ["6224_RageOnHitImplicitPinnaclePresence"] = { ["Gloves"] = { ["max"] = 0.6, ["min"] = 0.3, @@ -13713,7 +13839,7 @@ return { ["type"] = "implicit", }, }, - ["6154_RageOnHitImplicitUniquePresence"] = { + ["6224_RageOnHitImplicitUniquePresence"] = { ["Gloves"] = { ["max"] = 0.9, ["min"] = 0.5, @@ -13727,7 +13853,7 @@ return { ["type"] = "implicit", }, }, - ["6157_GolemBuffEffectUnique"] = { + ["6227_GolemBuffEffectUnique"] = { ["Chest"] = { ["max"] = 36, ["min"] = 19, @@ -13741,7 +13867,7 @@ return { ["type"] = "implicit", }, }, - ["6157_GolemBuffEffectUniquePinnaclePresence"] = { + ["6227_GolemBuffEffectUniquePinnaclePresence"] = { ["Chest"] = { ["max"] = 60, ["min"] = 49, @@ -13755,7 +13881,7 @@ return { ["type"] = "implicit", }, }, - ["6157_GolemBuffEffectUniqueUniquePresence"] = { + ["6227_GolemBuffEffectUniqueUniquePresence"] = { ["Chest"] = { ["max"] = 48, ["min"] = 34, @@ -13769,7 +13895,7 @@ return { ["type"] = "implicit", }, }, - ["6352_HeraldBonusAgonyEffect"] = { + ["6422_HeraldBonusAgonyEffect"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -13783,7 +13909,7 @@ return { ["type"] = "implicit", }, }, - ["6352_HeraldBonusAgonyEffectPinnaclePresence"] = { + ["6422_HeraldBonusAgonyEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 48, ["min"] = 39, @@ -13797,7 +13923,7 @@ return { ["type"] = "implicit", }, }, - ["6352_HeraldBonusAgonyEffectUniquePresence"] = { + ["6422_HeraldBonusAgonyEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 39, ["min"] = 27, @@ -13811,7 +13937,7 @@ return { ["type"] = "implicit", }, }, - ["6356_HeraldBonusAshEffect"] = { + ["6426_HeraldBonusAshEffect"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -13825,7 +13951,7 @@ return { ["type"] = "implicit", }, }, - ["6356_HeraldBonusAshEffectPinnaclePresence"] = { + ["6426_HeraldBonusAshEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 48, ["min"] = 39, @@ -13839,7 +13965,7 @@ return { ["type"] = "implicit", }, }, - ["6356_HeraldBonusAshEffectUniquePresence"] = { + ["6426_HeraldBonusAshEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 39, ["min"] = 27, @@ -13853,7 +13979,7 @@ return { ["type"] = "implicit", }, }, - ["6360_HeraldBonusIceEffect"] = { + ["6430_HeraldBonusIceEffect"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -13867,7 +13993,7 @@ return { ["type"] = "implicit", }, }, - ["6360_HeraldBonusIceEffectPinnaclePresence"] = { + ["6430_HeraldBonusIceEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 48, ["min"] = 39, @@ -13881,7 +14007,7 @@ return { ["type"] = "implicit", }, }, - ["6360_HeraldBonusIceEffectUniquePresence"] = { + ["6430_HeraldBonusIceEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 39, ["min"] = 27, @@ -13895,7 +14021,7 @@ return { ["type"] = "implicit", }, }, - ["6364_HeraldBonusPurityEffect"] = { + ["6434_HeraldBonusPurityEffect"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -13909,7 +14035,7 @@ return { ["type"] = "implicit", }, }, - ["6364_HeraldBonusPurityEffectPinnaclePresence"] = { + ["6434_HeraldBonusPurityEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 48, ["min"] = 39, @@ -13923,7 +14049,7 @@ return { ["type"] = "implicit", }, }, - ["6364_HeraldBonusPurityEffectUniquePresence"] = { + ["6434_HeraldBonusPurityEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 39, ["min"] = 27, @@ -13937,7 +14063,7 @@ return { ["type"] = "implicit", }, }, - ["6370_HeraldBonusThunderEffect"] = { + ["6440_HeraldBonusThunderEffect"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -13951,7 +14077,7 @@ return { ["type"] = "implicit", }, }, - ["6370_HeraldBonusThunderEffectPinnaclePresence"] = { + ["6440_HeraldBonusThunderEffectPinnaclePresence"] = { ["Gloves"] = { ["max"] = 48, ["min"] = 39, @@ -13965,7 +14091,7 @@ return { ["type"] = "implicit", }, }, - ["6370_HeraldBonusThunderEffectUniquePresence"] = { + ["6440_HeraldBonusThunderEffectUniquePresence"] = { ["Gloves"] = { ["max"] = 39, ["min"] = 27, @@ -13979,7 +14105,7 @@ return { ["type"] = "implicit", }, }, - ["6656_LightningDamageTakenGainedAsLife"] = { + ["6730_LightningDamageTakenGainedAsLife"] = { ["Helmet"] = { ["max"] = 18, ["min"] = 7, @@ -13993,7 +14119,7 @@ return { ["type"] = "implicit", }, }, - ["6656_LightningDamageTakenGainedAsLifePinnaclePresence"] = { + ["6730_LightningDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 23, @@ -14007,7 +14133,7 @@ return { ["type"] = "implicit", }, }, - ["6656_LightningDamageTakenGainedAsLifeUniquePresence"] = { + ["6730_LightningDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { ["max"] = 24, ["min"] = 15, @@ -14021,7 +14147,7 @@ return { ["type"] = "implicit", }, }, - ["8067_StrikeSkillsAdditionalTarget"] = { + ["8240_StrikeSkillsAdditionalTarget"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -14035,7 +14161,7 @@ return { ["type"] = "implicit", }, }, - ["8445_PhysicalDamageTakenGainedAsLife"] = { + ["8628_PhysicalDamageTakenGainedAsLife"] = { ["Helmet"] = { ["max"] = 18, ["min"] = 7, @@ -14049,7 +14175,7 @@ return { ["type"] = "implicit", }, }, - ["8445_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { + ["8628_PhysicalDamageTakenGainedAsLifePinnaclePresence"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 23, @@ -14063,7 +14189,7 @@ return { ["type"] = "implicit", }, }, - ["8445_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { + ["8628_PhysicalDamageTakenGainedAsLifeUniquePresence"] = { ["Helmet"] = { ["max"] = 24, ["min"] = 15, @@ -14077,7 +14203,7 @@ return { ["type"] = "implicit", }, }, - ["8771_BrandAttachmentRange"] = { + ["8957_BrandAttachmentRange"] = { ["Boots"] = { ["max"] = 15, ["min"] = 10, @@ -14091,7 +14217,7 @@ return { ["type"] = "implicit", }, }, - ["8771_BrandAttachmentRangePinnaclePresence"] = { + ["8957_BrandAttachmentRangePinnaclePresence"] = { ["Boots"] = { ["max"] = 23, ["min"] = 20, @@ -14105,7 +14231,7 @@ return { ["type"] = "implicit", }, }, - ["8771_BrandAttachmentRangeUniquePresence"] = { + ["8957_BrandAttachmentRangeUniquePresence"] = { ["Boots"] = { ["max"] = 19, ["min"] = 15, @@ -14119,7 +14245,7 @@ return { ["type"] = "implicit", }, }, - ["9059_TempestShieldBuffEffect"] = { + ["9247_TempestShieldBuffEffect"] = { ["Chest"] = { ["max"] = 32, ["min"] = 15, @@ -14133,7 +14259,7 @@ return { ["type"] = "implicit", }, }, - ["9059_TempestShieldBuffEffectPinnaclePresence"] = { + ["9247_TempestShieldBuffEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 50, ["min"] = 39, @@ -14147,7 +14273,7 @@ return { ["type"] = "implicit", }, }, - ["9059_TempestShieldBuffEffectUniquePresence"] = { + ["9247_TempestShieldBuffEffectUniquePresence"] = { ["Chest"] = { ["max"] = 41, ["min"] = 27, @@ -14161,7 +14287,7 @@ return { ["type"] = "implicit", }, }, - ["9226_WarcryEffect"] = { + ["9415_WarcryEffect"] = { ["Chest"] = { ["max"] = 30, ["min"] = 19, @@ -14175,7 +14301,7 @@ return { ["type"] = "implicit", }, }, - ["9226_WarcryEffectPinnaclePresence"] = { + ["9415_WarcryEffectPinnaclePresence"] = { ["Chest"] = { ["max"] = 42, ["min"] = 35, @@ -14189,7 +14315,7 @@ return { ["type"] = "implicit", }, }, - ["9226_WarcryEffectUniquePresence"] = { + ["9415_WarcryEffectUniquePresence"] = { ["Chest"] = { ["max"] = 36, ["min"] = 27, @@ -14203,1939 +14329,2387 @@ return { ["type"] = "implicit", }, }, - ["987_BoneOfferingEffect"] = { - ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1801289192", - ["text"] = "Bone Offering has #% increased Effect", - ["type"] = "implicit", + }, + ["Explicit"] = { + ["1002_StaffSpellBlockForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["987_BoneOfferingEffectPinnaclePresence"] = { - ["Boots"] = { - ["max"] = 29, - ["min"] = 22, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3774100463", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has #% increased Effect", - ["type"] = "implicit", + ["id"] = "explicit.stat_2120297997", + ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", + ["type"] = "explicit", }, }, - ["987_BoneOfferingEffectUniquePresence"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, + ["1003_BlockingBlocksSpellsUber"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2290911895", - ["text"] = "While a Unique Enemy is in your Presence, Bone Offering has #% increased Effect", - ["type"] = "implicit", + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", }, }, - ["988_FleshOfferingEffect"] = { - ["Boots"] = { - ["max"] = 17, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3456379680", - ["text"] = "Flesh Offering has #% increased Effect", - ["type"] = "implicit", + ["1003_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["988_FleshOfferingEffectPinnaclePresence"] = { - ["Boots"] = { - ["max"] = 29, - ["min"] = 22, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_862077496", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has #% increased Effect", - ["type"] = "implicit", + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", }, }, - ["988_FleshOfferingEffectUniquePresence"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3599488608", - ["text"] = "While a Unique Enemy is in your Presence, Flesh Offering has #% increased Effect", - ["type"] = "implicit", + ["1003_PowerChargeOnBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["989_SpiritOfferingEffect"] = { - ["Boots"] = { - ["max"] = 17, - ["min"] = 6, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3544391750", - ["text"] = "Spirit Offering has #% increased Effect", - ["type"] = "implicit", + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", }, }, - ["989_SpiritOfferingEffectPinnaclePresence"] = { - ["Boots"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2399066987", - ["text"] = "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has #% increased Effect", - ["type"] = "implicit", + ["1003_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["989_SpiritOfferingEffectUniquePresence"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 14, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2814835155", - ["text"] = "While a Unique Enemy is in your Presence, Spirit Offering has #% increased Effect", - ["type"] = "implicit", + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", + ["type"] = "explicit", }, }, - }, - ["Explicit"] = { - ["1000_PercentageDexterity"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 5, + ["1005_BlockStaffForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_1778298516", + ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", ["type"] = "explicit", }, }, - ["1000_PercentageDexterityMaven"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 9, - }, + ["1006_BlockingBlocksSpells"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "explicit", }, }, - ["1001_PercentageIntelligence"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["1006_BlockingBlocksSpellsUber"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "explicit", }, }, - ["1001_PercentageIntelligenceMaven"] = { - ["Amulet"] = { + ["1011_SpellBlockAndBlockUber"] = { + ["2HWeapon"] = { ["max"] = 12, - ["min"] = 9, + ["min"] = 8, }, - ["Chest"] = { + ["Staff"] = { ["max"] = 12, - ["min"] = 9, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "explicit", }, }, - ["1006_AllDamage"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 11, + ["1011_SpellBlockPercentage"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, }, - ["Ring"] = { - ["max"] = 23, - ["min"] = 12, + ["Boots"] = { + ["max"] = 4, + ["min"] = 3, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 4, + ["min"] = 3, }, - }, - ["1006_DamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, + ["Helmet"] = { + ["max"] = 6, + ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, + ["Shield"] = { + ["max"] = 15, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "explicit", }, }, - ["1008_TotemDamageAttackSupported"] = { - ["Boots"] = { - ["max"] = 35, - ["min"] = 20, + ["1011_SpellBlockPercentageMaven"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", ["type"] = "explicit", }, }, - ["1008_TotemDamageForJewel"] = { + ["1012_BlockDualWieldingForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", ["type"] = "explicit", }, }, - ["1008_TotemDamageSpellSupported"] = { - ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["1012_BlockWhileDualWielding"] = { + ["1HAxe"] = { + ["max"] = 9, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", + ["1HMace"] = { + ["max"] = 9, + ["min"] = 2, }, - }, - ["1009_TrapDamageCooldownSupported"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, + ["1HSword"] = { + ["max"] = 9, + ["min"] = 2, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 9, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", + ["2HAxe"] = { + ["max"] = 9, + ["min"] = 2, }, - }, - ["1009_TrapDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["2HMace"] = { + ["max"] = 9, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["2HSword"] = { + ["max"] = 9, + ["min"] = 2, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 9, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 9, + ["min"] = 2, }, - }, - ["1009_TrapDamageMineSupported"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, + ["Dagger"] = { + ["max"] = 9, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_2166444903", + ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", ["type"] = "explicit", }, }, - ["1009_TrapDamageOnWeapon"] = { + ["1026_AllAttributes"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 13, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 13, + ["min"] = 6, }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 13, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 13, + ["min"] = 6, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 13, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 13, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 13, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 13, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 81, - ["min"] = 52, + ["Gloves"] = { + ["max"] = 13, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 54, - ["min"] = 35, + ["Helmet"] = { + ["max"] = 13, + ["min"] = 6, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 13, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 16, + ["min"] = 1, }, - }, - ["1009_TrapDamageSupported"] = { - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, + ["Shield"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2941585404", - ["text"] = "#% increased Trap Damage", + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", ["type"] = "explicit", }, }, - ["1011_MineDamageForJewel"] = { + ["1026_AllAttributesForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "explicit.stat_1379411836", + ["text"] = "+# to all Attributes", ["type"] = "explicit", }, }, - ["1011_MineDamageOnWeapon"] = { + ["1027_Strength"] = { ["1HAxe"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 55, + ["min"] = 8, }, ["1HMace"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 55, + ["min"] = 8, }, ["1HSword"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 55, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 55, + ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 55, + ["min"] = 8, }, ["2HMace"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 55, + ["min"] = 8, }, ["2HSword"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 55, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 81, - ["min"] = 52, + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, }, ["Claw"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 30, + ["min"] = 15, }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 35, + ["max"] = 30, + ["min"] = 15, }, - ["Staff"] = { - ["max"] = 81, - ["min"] = 52, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, }, - ["Wand"] = { - ["max"] = 54, - ["min"] = 35, + ["Helmet"] = { + ["max"] = 58, + ["min"] = 8, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 58, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, }, - }, - ["1011_MineDamageSupported"] = { - ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, + ["Shield"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", ["type"] = "explicit", }, }, - ["1011_MineDamageTrapSupported"] = { - ["Helmet"] = { + ["1027_StrengthAndAvoidIgnite"] = { + ["Chest"] = { ["max"] = 35, - ["min"] = 20, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2137912951", - ["text"] = "#% increased Mine Damage", + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", ["type"] = "explicit", }, }, - ["1013_AttackDamage"] = { + ["1027_StrengthAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", ["type"] = "explicit", }, }, - ["1021_DamageWhileHoldingAShieldForJewel"] = { - ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 14, + ["1027_StrengthForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, ["min"] = 12, }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1393393937", - ["text"] = "#% increased Attack Damage while holding a Shield", - ["type"] = "explicit", - }, - }, - ["1025_DamageOverTimeForJewel"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["max"] = 16, + ["min"] = 12, }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["max"] = 16, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["id"] = "explicit.stat_4080418644", + ["text"] = "+# to Strength", ["type"] = "explicit", }, }, - ["1025_DegenerationDamage"] = { + ["1028_Dexterity"] = { ["1HAxe"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["1HMace"] = { ["max"] = 30, - ["min"] = 11, + ["min"] = 15, }, ["1HSword"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["2HMace"] = { ["max"] = 30, - ["min"] = 11, + ["min"] = 15, }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 13, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["Dagger"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 55, + ["min"] = 8, }, ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, + ["max"] = 60, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 13, }, ["Staff"] = { ["max"] = 30, - ["min"] = 11, + ["min"] = 15, }, ["Wand"] = { ["max"] = 30, - ["min"] = 11, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_967627487", - ["text"] = "#% increased Damage over Time", + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", ["type"] = "explicit", }, }, - ["1026_PhysicalDamageOverTimePrefix"] = { - ["1HAxe"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["1HMace"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["2HAxe"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HMace"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, + ["1028_DexterityAndAvoidFreeze"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, }, - ["Bow"] = { - ["max"] = 94, - ["min"] = 60, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1692565595", - ["text"] = "#% increased Physical Damage over Time", + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", ["type"] = "explicit", }, }, - ["1029_ChaosDamageOverTimePrefix"] = { - ["1HSword"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["1HWeapon"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["2HSword"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 60, - }, - ["Bow"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["Claw"] = { - ["max"] = 94, - ["min"] = 60, - }, - ["Dagger"] = { - ["max"] = 94, - ["min"] = 60, - }, + ["1028_DexterityAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_601272515", - ["text"] = "#% increased Chaos Damage over Time", + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", ["type"] = "explicit", }, }, - ["1038_SpellDamage"] = { - ["Amulet"] = { - ["max"] = 26, - ["min"] = 3, + ["1028_DexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, }, - ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 12, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_3261801346", + ["text"] = "+# to Dexterity", ["type"] = "explicit", }, }, - ["1038_SpellDamageAndManaRegenerationRate"] = { + ["1029_Intelligence"] = { ["1HAxe"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 30, + ["min"] = 15, }, ["1HMace"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 55, + ["min"] = 8, }, ["1HSword"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 30, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 55, + ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 30, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 30, + ["min"] = 15, }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 30, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 55, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Belt"] = { + ["max"] = 58, + ["min"] = 28, + }, + ["Boots"] = { + ["max"] = 58, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, + ["max"] = 30, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 58, + ["min"] = 8, }, ["Claw"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 55, + ["min"] = 8, }, ["Dagger"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 55, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 60, + ["min"] = 8, + }, + ["Quiver"] = { + ["max"] = 58, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 58, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 58, + ["min"] = 15, }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 55, + ["min"] = 8, }, ["Wand"] = { - ["max"] = 79, - ["min"] = 36, + ["max"] = 55, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", ["type"] = "explicit", }, }, - ["1038_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { - ["1HAxe"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["1HMace"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["1HSword"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 38, - }, - ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, - }, - ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, - }, - ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, - }, - ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, - }, - ["Bow"] = { - ["max"] = 99, - ["min"] = 60, - }, - ["Claw"] = { - ["max"] = 69, - ["min"] = 38, + ["1029_IntelligenceAndAvoidShock"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, }, - ["Dagger"] = { - ["max"] = 69, - ["min"] = 38, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, }, - ["Staff"] = { - ["max"] = 99, - ["min"] = 53, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 38, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "explicit", }, + }, + ["1029_IntelligenceAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", ["type"] = "explicit", }, }, - ["1038_SpellDamageForJewel"] = { + ["1029_IntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 16, + ["min"] = 12, + }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["max"] = 16, + ["min"] = 12, }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["max"] = 16, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_328541901", + ["text"] = "+# to Intelligence", ["type"] = "explicit", }, }, - ["1038_TwoHandWeaponSpellDamage"] = { + ["1030_LocalAccuracyRatingStrengthDexterity"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, ["2HAxe"] = { - ["max"] = 144, + ["max"] = 28, ["min"] = 15, }, ["2HMace"] = { - ["max"] = 144, + ["max"] = 28, ["min"] = 15, }, ["2HSword"] = { - ["max"] = 144, + ["max"] = 28, ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 164, + ["max"] = 28, ["min"] = 15, }, ["Bow"] = { - ["max"] = 144, + ["max"] = 28, ["min"] = 15, }, - ["Staff"] = { - ["max"] = 164, + ["Claw"] = { + ["max"] = 28, ["min"] = 15, }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1038_TwoHandWeaponSpellDamageAndMana"] = { - ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, + ["Dagger"] = { + ["max"] = 28, + ["min"] = 15, }, ["Staff"] = { - ["max"] = 55, - ["min"] = 8, + ["max"] = 28, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 28, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamage"] = { - ["1HAxe"] = { - ["max"] = 94, + ["1030_StrengthAndDexterity"] = { + ["Amulet"] = { + ["max"] = 35, ["min"] = 10, }, - ["1HMace"] = { - ["max"] = 109, + ["Belt"] = { + ["max"] = 35, ["min"] = 10, }, - ["1HSword"] = { - ["max"] = 94, + ["Boots"] = { + ["max"] = 35, ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 109, + ["Chest"] = { + ["max"] = 35, ["min"] = 10, }, - ["Claw"] = { - ["max"] = 94, + ["Gloves"] = { + ["max"] = 35, ["min"] = 10, }, - ["Dagger"] = { - ["max"] = 109, + ["Helmet"] = { + ["max"] = 35, ["min"] = 10, }, - ["Shield"] = { - ["max"] = 109, + ["Quiver"] = { + ["max"] = 35, ["min"] = 10, }, - ["Wand"] = { - ["max"] = 109, + ["Ring"] = { + ["max"] = 35, ["min"] = 10, }, - ["sign"] = "", + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageAddedAsChaos"] = { + ["1030_StrengthDexterityForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_538848803", + ["text"] = "+# to Strength and Dexterity", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageAndMana"] = { + ["1031_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 39, - ["min"] = 5, + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 5, + ["max"] = 28, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 15, }, ["Dagger"] = { - ["max"] = 39, - ["min"] = 5, + ["max"] = 28, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 39, - ["min"] = 5, + ["max"] = 28, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageArcaneSurge"] = { + ["1031_StrengthAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageControlledDestruction"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, + ["1031_StrengthIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Wand"] = { - ["max"] = 60, - ["min"] = 45, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "+# to Strength and Intelligence", + ["type"] = "explicit", + }, + }, + ["1032_DexterityAndIntelligence"] = { + ["Amulet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + }, + ["1032_DexterityIntelligenceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageEfficacy"] = { + ["1032_LocalAttackSpeedDexterityIntelligence"] = { + ["1HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 28, + ["min"] = 15, + }, + ["1HSword"] = { + ["max"] = 28, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 28, + ["min"] = 15, + }, + ["2HAxe"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 28, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 28, + ["min"] = 15, }, ["Dagger"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 28, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 28, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 28, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_2300185227", + ["text"] = "+# to Dexterity and Intelligence", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamagePowerChargeOnCrit"] = { + ["1033_PercentageAllAttributes"] = { + ["Amulet"] = { + ["max"] = 9, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 8, + ["min"] = 5, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", ["type"] = "explicit", }, }, - ["1038_WeaponSpellDamageReducedMana"] = { + ["1034_PercentageStrength"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, }, - ["1041_StaffSpellDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1034_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3496944181", - ["text"] = "#% increased Spell Damage while wielding a Staff", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, }, - ["1043_ShieldSpellDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1035_PercentageDexterity"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1766142294", - ["text"] = "#% increased Spell Damage while holding a Shield", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, }, - ["1044_DualWieldingSpellDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1035_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1678690824", - ["text"] = "#% increased Spell Damage while Dual Wielding", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, }, - ["1045_IncreasedChaosAndPhysicalDamage"] = { - ["Ring"] = { - ["max"] = 22, + ["1036_PercentageIntelligence"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["1036_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["1041_AllDamage"] = { + ["Belt"] = { + ["max"] = 25, ["min"] = 11, }, + ["Ring"] = { + ["max"] = 23, + ["min"] = 12, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "explicit", }, }, - ["1045_PhysicalDamageForJewel"] = { + ["1041_DamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 10, + ["min"] = 8, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "explicit", }, }, - ["1045_PhysicalDamagePercent"] = { - ["Amulet"] = { + ["1043_TotemDamageAttackSupported"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["1043_TotemDamageForJewel"] = { + ["AnyJewel"] = { ["max"] = 16, - ["min"] = 9, + ["min"] = 12, }, - ["Shield"] = { + ["BaseJewel"] = { ["max"] = 16, - ["min"] = 9, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, }, - ["1045_PhysicalDamagePercentPrefix"] = { - ["Amulet"] = { - ["max"] = 30, + ["1043_TotemDamageSpellSupported"] = { + ["Boots"] = { + ["max"] = 35, ["min"] = 20, }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, }, - ["1045_SpellAddedPhysicalDamageHybrid"] = { + ["1044_TrapDamageCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", ["type"] = "explicit", }, }, - ["1046_CullingStrikeOnBleedingEnemiesUber"] = { - ["1HAxe"] = { - ["max"] = 49, - ["min"] = 30, + ["1044_TrapDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HAxe"] = { - ["max"] = 49, - ["min"] = 30, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1044_TrapDamageMineSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", ["type"] = "explicit", }, }, - ["1046_LocalChanceToMaimPhysicalDamage"] = { + ["1044_TrapDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 54, + ["min"] = 35, }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 54, + ["min"] = 35, }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 54, + ["min"] = 35, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 54, + ["min"] = 35, }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 81, + ["min"] = 52, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 81, + ["min"] = 52, }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 81, + ["min"] = 52, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 81, + ["min"] = 52, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 81, + ["min"] = 52, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 35, + }, + ["Staff"] = { + ["max"] = 81, + ["min"] = 52, + }, + ["Wand"] = { + ["max"] = 54, + ["min"] = 35, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1044_TrapDamageSupported"] = { + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2941585404", + ["text"] = "#% increased Trap Damage", + ["type"] = "explicit", + }, + }, + ["1046_MineDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["1046_MineDamageOnWeapon"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 81, + ["min"] = 52, }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 54, + ["min"] = 35, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamageAndBlindChance"] = { - ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["1046_MineDamageSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["sign"] = "", + ["specialCaseData"] = { }, - ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + }, + ["1046_MineDamageTrapSupported"] = { + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, }, - ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["tradeMod"] = { + ["id"] = "explicit.stat_2137912951", + ["text"] = "#% increased Mine Damage", + ["type"] = "explicit", }, - ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, + }, + ["1048_AttackDamage"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 139, - ["min"] = 81, + }, + ["1056_DamageWhileHoldingAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, }, - ["Claw"] = { - ["max"] = 139, - ["min"] = 81, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, }, - ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 139, - ["min"] = 81, + ["tradeMod"] = { + ["id"] = "explicit.stat_1393393937", + ["text"] = "#% increased Attack Damage while holding a Shield", + ["type"] = "explicit", }, - ["Wand"] = { - ["max"] = 139, - ["min"] = 81, + }, + ["1060_DamageOverTimeForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1060_DegenerationDamage"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, }, ["Staff"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["Wand"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 30, + ["min"] = 11, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_967627487", + ["text"] = "#% increased Damage over Time", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["1061_PhysicalDamageOverTimePrefix"] = { ["1HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, ["1HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, ["1HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, ["1HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, ["2HAxe"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 134, + ["min"] = 60, }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 134, + ["min"] = 60, }, ["2HSword"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 134, + ["min"] = 60, }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 134, + ["min"] = 60, }, ["Bow"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692565595", + ["text"] = "#% increased Physical Damage over Time", + ["type"] = "explicit", + }, + }, + ["1064_ChaosDamageOverTimePrefix"] = { + ["1HSword"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["1HWeapon"] = { + ["max"] = 94, + ["min"] = 60, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 60, + }, + ["Bow"] = { + ["max"] = 94, + ["min"] = 60, }, ["Claw"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, ["Dagger"] = { - ["max"] = 139, - ["min"] = 81, + ["max"] = 94, + ["min"] = 60, }, - ["Staff"] = { - ["max"] = 139, - ["min"] = 81, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 139, - ["min"] = 81, + ["tradeMod"] = { + ["id"] = "explicit.stat_601272515", + ["text"] = "#% increased Chaos Damage over Time", + ["type"] = "explicit", + }, + }, + ["1073_SpellDamage"] = { + ["Amulet"] = { + ["max"] = 26, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1073_SpellDamageAndManaRegenerationRate"] = { ["1HAxe"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["1HMace"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["1HSword"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["1HWeapon"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["2HAxe"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 60, }, ["2HMace"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 60, }, ["2HSword"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 60, }, ["2HWeapon"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 60, }, ["Bow"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 70, }, ["Claw"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["Dagger"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["Staff"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = 109, + ["min"] = 60, }, ["Wand"] = { ["max"] = 79, - ["min"] = 15, + ["min"] = 36, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndArea"] = { - ["1HMace"] = { + ["1073_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["1HAxe"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["1HWeapon"] = { + ["1HMace"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["2HMace"] = { + ["1HSword"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["2HWeapon"] = { + ["1HWeapon"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["Staff"] = { - ["max"] = 69, - ["min"] = 25, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 53, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 99, + ["min"] = 53, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", + ["2HSword"] = { + ["max"] = 99, + ["min"] = 53, }, - }, - ["1046_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { - ["1HAxe"] = { - ["max"] = 69, - ["min"] = 25, + ["2HWeapon"] = { + ["max"] = 99, + ["min"] = 53, }, - ["1HSword"] = { - ["max"] = 69, - ["min"] = 25, + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, }, - ["1HWeapon"] = { + ["Claw"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["2HAxe"] = { + ["Dagger"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, - ["2HSword"] = { - ["max"] = 69, - ["min"] = 25, + ["Staff"] = { + ["max"] = 99, + ["min"] = 53, }, - ["2HWeapon"] = { + ["Wand"] = { ["max"] = 69, - ["min"] = 25, + ["min"] = 38, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 69, - ["min"] = 25, + ["1073_SpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 10, }, - ["Dagger"] = { - ["max"] = 69, - ["min"] = 25, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["1073_TwoHandWeaponSpellDamage"] = { + ["2HAxe"] = { + ["max"] = 144, + ["min"] = 15, }, - ["Claw"] = { - ["max"] = 69, - ["min"] = 25, + ["2HMace"] = { + ["max"] = 144, + ["min"] = 15, }, - ["Dagger"] = { - ["max"] = 69, - ["min"] = 25, + ["2HSword"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 164, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 144, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 164, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1073_TwoHandWeaponSpellDamageAndMana"] = { + ["2HWeapon"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 55, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1073_WeaponSpellDamage"] = { ["1HAxe"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 94, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, }, ["1HSword"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 94, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 109, + ["min"] = 10, }, - ["2HAxe"] = { - ["max"] = 69, - ["min"] = 25, + ["Claw"] = { + ["max"] = 94, + ["min"] = 10, }, - ["2HSword"] = { - ["max"] = 69, - ["min"] = 25, + ["Dagger"] = { + ["max"] = 109, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndPierce"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["1073_WeaponSpellDamageAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 69, - ["min"] = 25, + }, + ["1073_WeaponSpellDamageAndMana"] = { + ["1HMace"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 39, + ["min"] = 5, }, ["Wand"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 39, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["1073_WeaponSpellDamageArcaneSurge"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 69, - ["min"] = 25, + }, + ["1073_WeaponSpellDamageControlledDestruction"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, }, ["Wand"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 60, + ["min"] = 45, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1073_WeaponSpellDamageEfficacy"] = { ["1HMace"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 60, + ["min"] = 45, }, ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["max"] = 60, + ["min"] = 45, }, - ["2HMace"] = { - ["max"] = 69, - ["min"] = 25, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, }, - ["2HWeapon"] = { - ["max"] = 69, - ["min"] = 25, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, }, - ["Staff"] = { - ["max"] = 69, - ["min"] = 25, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, + }, + ["1073_WeaponSpellDamagePowerChargeOnCrit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["1073_WeaponSpellDamageReducedMana"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["1076_StaffSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_3496944181", + ["text"] = "#% increased Spell Damage while wielding a Staff", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { + ["1078_ShieldSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_1766142294", + ["text"] = "#% increased Spell Damage while holding a Shield", ["type"] = "explicit", }, }, - ["1046_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { + ["1079_DualWieldingSpellDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_1678690824", + ["text"] = "#% increased Spell Damage while Dual Wielding", ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercent"] = { - ["1HAxe"] = { - ["max"] = 179, - ["min"] = 40, + ["1080_IncreasedChaosAndPhysicalDamage"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 11, }, - ["1HMace"] = { - ["max"] = 179, - ["min"] = 40, + ["sign"] = "", + ["specialCaseData"] = { }, - ["1HSword"] = { - ["max"] = 179, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 40, + }, + ["1080_PhysicalDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HAxe"] = { - ["max"] = 179, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 40, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HSword"] = { - ["max"] = 179, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 40, + }, + ["1080_PhysicalDamagePercent"] = { + ["Amulet"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 40, + ["Shield"] = { + ["max"] = 16, + ["min"] = 9, }, - ["Claw"] = { - ["max"] = 179, - ["min"] = 40, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Dagger"] = { - ["max"] = 179, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 179, - ["min"] = 40, + }, + ["1080_PhysicalDamagePercentPrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 179, - ["min"] = 40, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1080_SpellAddedPhysicalDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["1081_CullingStrikeOnBleedingEnemiesUber"] = { + ["1HAxe"] = { + ["max"] = 49, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 49, + ["min"] = 30, + }, + ["2HAxe"] = { + ["max"] = 49, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 49, + ["min"] = 30, + }, ["sign"] = "", ["specialCaseData"] = { }, @@ -16145,50 +16719,42 @@ return { ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercentAddedFireDamage"] = { + ["1081_LocalChanceToMaimPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["Claw"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 20, + ["min"] = 10, }, - ["Wand"] = { - ["max"] = 134, - ["min"] = 101, + ["Bow"] = { + ["max"] = 20, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { @@ -16199,67 +16765,59 @@ return { ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercentBrutality"] = { + ["1081_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", + ["max"] = 139, + ["min"] = 81, }, - }, - ["1046_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1046_LocalPhysicalDamagePercentFortify"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -16269,57 +16827,59 @@ return { ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["1081_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, - }, - ["1046_LocalPhysicalDamagePercentOnslaught"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -16329,46 +16889,58 @@ return { ["type"] = "explicit", }, }, - ["1046_LocalPhysicalDamagePercentRuthless"] = { + ["1081_LocalIncreasedPhysicalDamageAndImpaleChance"] = { ["1HAxe"] = { - ["max"] = 134, - ["min"] = 101, - }, + ["max"] = 139, + ["min"] = 81, + }, ["1HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["1HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HAxe"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HMace"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HSword"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["2HWeapon"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, + }, + ["Bow"] = { + ["max"] = 139, + ["min"] = 81, }, ["Claw"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, }, ["Dagger"] = { - ["max"] = 134, - ["min"] = 101, + ["max"] = 139, + ["min"] = 81, + }, + ["Staff"] = { + ["max"] = 139, + ["min"] = 81, + }, + ["Wand"] = { + ["max"] = 139, + ["min"] = 81, }, ["sign"] = "", ["specialCaseData"] = { @@ -16379,1719 +16951,1724 @@ return { ["type"] = "explicit", }, }, - ["1047_LocalArmourPenetration"] = { + ["1081_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["Staff"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["Wand"] = { - ["max"] = 20, - ["min"] = 13, + ["max"] = 139, + ["min"] = 81, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3579673398", - ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1048_MeleeDamage"] = { - ["Gloves"] = { - ["max"] = 38, - ["min"] = 18, + ["1081_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HAxe"] = { + ["max"] = 79, + ["min"] = 15, }, - ["Ring"] = { - ["max"] = 25, + ["1HMace"] = { + ["max"] = 79, ["min"] = 15, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 79, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 15, }, - }, - ["1048_MeleeDamageAndMeleeRange"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 9, + ["2HAxe"] = { + ["max"] = 79, + ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 13, + ["2HMace"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["2HSword"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Dagger"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 79, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1048_MeleeDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["1081_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1HMace"] = { + ["max"] = 69, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 10, + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1056_GlobalDamageOverTimeMultiplier"] = { + ["1081_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 26, - ["min"] = 7, - }, - ["1HMace"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, ["1HSword"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, ["1HWeapon"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, ["2HAxe"] = { - ["max"] = 45, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 16, + ["max"] = 69, + ["min"] = 25, }, ["2HSword"] = { - ["max"] = 45, - ["min"] = 16, + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 7, - }, - ["Amulet"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["sign"] = "", + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 45, - ["min"] = 7, + }, + ["1081_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, ["Claw"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, ["Dagger"] = { - ["max"] = 26, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 12, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 26, - ["min"] = 7, + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3988349707", - ["text"] = "+#% to Damage over Time Multiplier", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1059_GlobalDamageOverTimeMultiplierWithAttacks"] = { - ["Quiver"] = { - ["max"] = 26, - ["min"] = 7, + ["1081_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_693959086", - ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1060_PhysicalDamageOverTimeMultiplier"] = { + ["1081_LocalIncreasedPhysicalDamagePercentAndLeech"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 69, + ["min"] = 25, }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 69, + ["min"] = 25, }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 69, + ["min"] = 25, }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, - }, - ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 69, + ["min"] = 25, }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["max"] = 69, + ["min"] = 25, }, - ["Bow"] = { - ["max"] = 48, - ["min"] = 14, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 48, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, - ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, + }, + ["1081_LocalIncreasedPhysicalDamagePercentAndPierce"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Staff"] = { - ["max"] = 75, - ["min"] = 24, + ["Bow"] = { + ["max"] = 69, + ["min"] = 25, }, ["Wand"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1314617696", - ["text"] = "+#% to Physical Damage over Time Multiplier", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1063_PhysicalDamageOverTimeMultiplierWithAttacks"] = { - ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, + ["1081_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 69, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_709768359", - ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1064_FireDamageOverTimeMultiplier"] = { - ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["1081_LocalIncreasedPhysicalDamagePercentAndStun"] = { ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, + ["max"] = 69, + ["min"] = 25, }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 69, + ["min"] = 25, }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, - }, - ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 69, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["max"] = 69, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["Staff"] = { + ["max"] = 69, + ["min"] = 25, }, - ["Bow"] = { - ["max"] = 48, - ["min"] = 14, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 28, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, - ["Dagger"] = { - ["max"] = 28, - ["min"] = 14, + }, + ["1081_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 75, - ["min"] = 24, + }, + ["1081_LocalIncreasedPhysicalDamagePercentIronGrip"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 38, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, + }, + ["1081_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3382807662", - ["text"] = "+#% to Fire Damage over Time Multiplier", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1066_FireDamageOverTimeMultiplierWithAttacks"] = { - ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, - }, + ["1081_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2139660169", - ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1069_ColdDamageOverTimeMultiplier"] = { + ["1081_LocalPhysicalDamagePercent"] = { ["1HAxe"] = { - ["max"] = 28, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["1HSword"] = { - ["max"] = 28, - ["min"] = 14, - }, + ["max"] = 179, + ["min"] = 40, + }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 179, + ["min"] = 40, }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 179, + ["min"] = 40, }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 179, + ["min"] = 40, }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["max"] = 179, + ["min"] = 40, }, ["Bow"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["Claw"] = { - ["max"] = 28, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, + ["max"] = 179, + ["min"] = 40, }, ["Staff"] = { - ["max"] = 75, - ["min"] = 24, + ["max"] = 179, + ["min"] = 40, }, ["Wand"] = { - ["max"] = 38, - ["min"] = 14, + ["max"] = 179, + ["min"] = 40, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1950806024", - ["text"] = "+#% to Cold Damage over Time Multiplier", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1081_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1072_ChaosDamageOverTimeMultiplier"] = { + ["1081_LocalPhysicalDamagePercentAddedFireDamage"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["2HAxe"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 134, + ["min"] = 101, }, ["2HMace"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 134, + ["min"] = 101, }, ["2HSword"] = { - ["max"] = 48, - ["min"] = 24, + ["max"] = 134, + ["min"] = 101, }, ["2HWeapon"] = { - ["max"] = 75, - ["min"] = 24, - }, - ["Amulet"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["Claw"] = { - ["max"] = 48, - ["min"] = 14, + ["max"] = 134, + ["min"] = 101, }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 11, - }, - ["Staff"] = { - ["max"] = 75, - ["min"] = 24, + ["max"] = 134, + ["min"] = 101, }, ["Wand"] = { - ["max"] = 48, - ["min"] = 14, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4055307827", - ["text"] = "+#% to Chaos Damage over Time Multiplier", - ["type"] = "explicit", - }, - }, - ["1074_ChaosDamageOverTimeMultiplierWithAttacks"] = { - ["Quiver"] = { - ["max"] = 25, - ["min"] = 16, + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3913282911", - ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1077_LocalPoisonDamageOverTimeMultiplier"] = { + ["1081_LocalPhysicalDamagePercentBrutality"] = { ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Bow"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["Claw"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Wand"] = { - ["max"] = 59, - ["min"] = 37, + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4096656097", - ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1078_GlobalAddedPhysicalDamage"] = { - ["Gloves"] = { - ["max"] = 9.5, - ["min"] = 7.5, - }, + ["1081_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_960081730", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1079_AddedPhysicalSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 2, - }, + ["1081_LocalPhysicalDamagePercentFortify"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1079_PhysicalDamage"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 1.5, + ["1081_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { + ["1HAxe"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Gloves"] = { - ["max"] = 9, - ["min"] = 1.5, + ["1HMace"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Quiver"] = { - ["max"] = 31, - ["min"] = 1.5, + ["1HSword"] = { + ["max"] = 134, + ["min"] = 101, }, - ["Ring"] = { - ["max"] = 14, - ["min"] = 1.5, + ["1HWeapon"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HAxe"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HMace"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HSword"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["2HWeapon"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["Claw"] = { + ["max"] = 134, + ["min"] = 101, + }, + ["Dagger"] = { + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1080_SelfPhysicalDamageTaken"] = { + ["1081_LocalPhysicalDamagePercentOnslaught"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2093523445", - ["text"] = "Adds # to # Physical Damage to Attacks against you", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1088_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["1081_LocalPhysicalDamagePercentRuthless"] = { ["1HAxe"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["1HMace"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["1HSword"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["1HWeapon"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["2HAxe"] = { - ["max"] = 24, - ["min"] = 13.5, + ["max"] = 134, + ["min"] = 101, }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 13.5, + ["max"] = 134, + ["min"] = 101, }, ["2HSword"] = { - ["max"] = 24, - ["min"] = 13.5, + ["max"] = 134, + ["min"] = 101, }, ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 13.5, - }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 13.5, + ["max"] = 134, + ["min"] = 101, }, ["Claw"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["Dagger"] = { - ["max"] = 17, - ["min"] = 8.5, - }, - ["Staff"] = { - ["max"] = 24, - ["min"] = 13.5, - }, - ["Wand"] = { - ["max"] = 17, - ["min"] = 8.5, + ["max"] = 134, + ["min"] = 101, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1088_LocalPhysicalDamage"] = { + ["1082_LocalArmourPenetration"] = { ["1HAxe"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, }, ["1HMace"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, }, ["1HSword"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, }, ["1HWeapon"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 13, }, ["Claw"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, }, ["Dagger"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 13, }, ["Wand"] = { - ["max"] = 40.5, - ["min"] = 1.5, + ["max"] = 20, + ["min"] = 13, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", + ["id"] = "explicit.stat_3579673398", + ["text"] = "Hits with this Weapon Overwhelm #% Physical Damage Reduction", ["type"] = "explicit", }, }, - ["1088_LocalPhysicalDamageTwoHanded"] = { - ["2HAxe"] = { - ["max"] = 65.5, - ["min"] = 3, + ["1083_MeleeDamage"] = { + ["Gloves"] = { + ["max"] = 38, + ["min"] = 18, }, - ["2HMace"] = { - ["max"] = 65.5, - ["min"] = 3, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, - ["2HSword"] = { - ["max"] = 65.5, - ["min"] = 3, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 65.5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 65.5, - ["min"] = 3, + }, + ["1083_MeleeDamageAndMeleeRange"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 9, }, - ["Staff"] = { - ["max"] = 65.5, - ["min"] = 3, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 13, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage (Local)", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, }, - ["1090_IncreasedDualWieldlingDamageForJewel"] = { + ["1083_MeleeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 12, + ["max"] = 12, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 12, + ["max"] = 12, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_444174528", - ["text"] = "#% increased Attack Damage while Dual Wielding", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, }, - ["1091_DualWieldingPhysicalDamage"] = { + ["1091_GlobalDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 26, + ["min"] = 7, }, ["1HMace"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 26, + ["min"] = 7, }, ["1HSword"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 26, + ["min"] = 7, }, ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 26, + ["min"] = 7, }, ["2HAxe"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 45, + ["min"] = 16, }, ["2HMace"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 45, + ["min"] = 16, }, ["2HSword"] = { - ["max"] = 37, - ["min"] = 23, + ["max"] = 45, + ["min"] = 16, }, ["2HWeapon"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["Claw"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["Dagger"] = { - ["max"] = 37, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["max"] = 45, + ["min"] = 7, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1274831335", - ["text"] = "#% increased Physical Attack Damage while Dual Wielding", - ["type"] = "explicit", + ["Amulet"] = { + ["max"] = 26, + ["min"] = 7, }, - }, - ["1113_IncreasedAxeDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 6, + ["min"] = 4, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 45, + ["min"] = 7, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3314142259", - ["text"] = "#% increased Damage with Axes", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 26, + ["min"] = 7, }, - }, - ["1120_IncreasedStaffDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["Dagger"] = { + ["max"] = 26, + ["min"] = 7, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["Ring"] = { + ["max"] = 15, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 26, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4087089130", - ["text"] = "#% increased Damage with Staves", + ["id"] = "explicit.stat_3988349707", + ["text"] = "+#% to Damage over Time Multiplier", ["type"] = "explicit", }, }, - ["1125_IncreasedClawDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1094_GlobalDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 26, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1069260037", - ["text"] = "#% increased Damage with Claws", + ["id"] = "explicit.stat_693959086", + ["text"] = "+#% to Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", }, }, - ["1131_IncreasedDaggerDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, + ["1095_PhysicalDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 48, ["min"] = 14, }, - ["BaseJewel"] = { - ["max"] = 16, + ["1HMace"] = { + ["max"] = 48, ["min"] = 14, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 48, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3586984690", - ["text"] = "#% increased Damage with Daggers", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 48, + ["min"] = 14, + }, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, }, - }, - ["1137_IncreasedMaceDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["max"] = 8, + ["min"] = 6, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces or Sceptres", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["1143_IncreasedBowDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, + ["Dagger"] = { + ["max"] = 48, ["min"] = 14, }, - ["BaseJewel"] = { - ["max"] = 16, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, + }, + ["Wand"] = { + ["max"] = 48, ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_1314617696", + ["text"] = "+#% to Physical Damage over Time Multiplier", ["type"] = "explicit", }, }, - ["1151_IncreasedSwordDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1098_PhysicalDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_83050999", - ["text"] = "#% increased Damage with Swords", + ["id"] = "explicit.stat_709768359", + ["text"] = "+#% to Physical Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", }, }, - ["1169_FireDamageAndChanceToIgnite"] = { + ["1099_FireDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 28, + ["min"] = 14, }, ["1HMace"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 38, + ["min"] = 14, }, ["1HSword"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 28, + ["min"] = 14, }, ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 38, + ["min"] = 14, }, ["2HAxe"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 48, + ["min"] = 24, }, ["2HMace"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 48, + ["min"] = 24, }, ["2HSword"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 48, + ["min"] = 24, }, ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 75, + ["min"] = 24, + }, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 109, - ["min"] = 70, + ["max"] = 48, + ["min"] = 14, }, ["Claw"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 28, + ["min"] = 14, }, ["Dagger"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 28, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, }, ["Staff"] = { - ["max"] = 109, - ["min"] = 60, + ["max"] = 75, + ["min"] = 24, }, ["Wand"] = { - ["max"] = 109, - ["min"] = 36, + ["max"] = 38, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_3382807662", + ["text"] = "+#% to Fire Damage over Time Multiplier", ["type"] = "explicit", }, }, - ["1169_FireDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 14, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 14, + ["1101_FireDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_2139660169", + ["text"] = "+#% to Fire Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", }, }, - ["1169_FireDamagePercentage"] = { + ["1104_ColdDamageOverTimeMultiplier"] = { ["1HAxe"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 28, + ["min"] = 14, }, ["1HMace"] = { - ["max"] = 30, - ["min"] = 3, + ["max"] = 38, + ["min"] = 14, }, ["1HSword"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 28, + ["min"] = 14, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 3, + ["max"] = 38, + ["min"] = 14, }, ["2HAxe"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 48, + ["min"] = 24, }, ["2HMace"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 48, + ["min"] = 24, }, ["2HSword"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 48, + ["min"] = 24, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 3, + ["max"] = 75, + ["min"] = 24, }, ["Amulet"] = { - ["max"] = 34, - ["min"] = 3, + ["max"] = 25, + ["min"] = 11, + }, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 48, + ["min"] = 14, }, ["Claw"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 28, + ["min"] = 14, }, ["Dagger"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 38, + ["min"] = 14, }, - ["Ring"] = { - ["max"] = 34, - ["min"] = 3, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, }, ["Staff"] = { - ["max"] = 30, - ["min"] = 3, + ["max"] = 75, + ["min"] = 24, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 3, + ["max"] = 38, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_1950806024", + ["text"] = "+#% to Cold Damage over Time Multiplier", ["type"] = "explicit", }, }, - ["1169_FireDamagePercentagePrefix"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["1107_ChaosDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["1169_FireDamagePrefixFirePenetration"] = { ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 48, + ["min"] = 14, + }, + ["1HSword"] = { + ["max"] = 48, + ["min"] = 14, }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 45, + ["max"] = 48, + ["min"] = 14, }, - ["Wand"] = { - ["max"] = 60, - ["min"] = 45, + ["2HAxe"] = { + ["max"] = 48, + ["min"] = 24, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 48, + ["min"] = 24, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["2HSword"] = { + ["max"] = 48, + ["min"] = 24, }, - }, - ["1169_FireDamageWeaponPrefix"] = { - ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, + ["2HWeapon"] = { + ["max"] = 75, + ["min"] = 24, }, - ["1HMace"] = { - ["max"] = 109, - ["min"] = 10, + ["Amulet"] = { + ["max"] = 25, + ["min"] = 11, }, - ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["1HWeapon"] = { - ["max"] = 109, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 48, + ["min"] = 14, }, ["Claw"] = { - ["max"] = 54, - ["min"] = 25, + ["max"] = 48, + ["min"] = 14, }, ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Shield"] = { - ["max"] = 109, - ["min"] = 10, + ["max"] = 48, + ["min"] = 14, }, - ["Wand"] = { - ["max"] = 109, - ["min"] = 10, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 11, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 75, + ["min"] = 24, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 48, + ["min"] = 14, }, - }, - ["1169_FireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_4055307827", + ["text"] = "+#% to Chaos Damage over Time Multiplier", ["type"] = "explicit", }, }, - ["1169_IncreasedFireAndLightningDamage"] = { - ["Ring"] = { - ["max"] = 20, - ["min"] = 11, + ["1109_ChaosDamageOverTimeMultiplierWithAttacks"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_3913282911", + ["text"] = "+#% to Chaos Damage over Time Multiplier with Attack Skills", ["type"] = "explicit", }, }, - ["1169_LocalFireDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1112_LocalPoisonDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["1HMace"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["1169_SpellAddedFireDamageHybrid"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["1169_TwoHandFireDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 81, + ["max"] = 59, ["min"] = 37, }, ["2HMace"] = { - ["max"] = 81, + ["max"] = 59, ["min"] = 37, }, ["2HSword"] = { - ["max"] = 81, + ["max"] = 59, ["min"] = 37, }, ["2HWeapon"] = { - ["max"] = 164, - ["min"] = 15, + ["max"] = 59, + ["min"] = 37, + }, + ["Bow"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Claw"] = { + ["max"] = 59, + ["min"] = 37, + }, + ["Dagger"] = { + ["max"] = 59, + ["min"] = 37, }, ["Staff"] = { - ["max"] = 164, - ["min"] = 15, + ["max"] = 59, + ["min"] = 37, + }, + ["Wand"] = { + ["max"] = 59, + ["min"] = 37, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_4096656097", + ["text"] = "+#% to Damage over Time Multiplier for Poison inflicted with this Weapon", ["type"] = "explicit", }, }, - ["1169_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["1113_GlobalAddedPhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 9.5, + ["min"] = 7.5, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_960081730", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, }, - ["1170_SelfFireAndColdDamageTaken"] = { + ["1114_AddedPhysicalSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 2, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, }, - ["1170_SelfFireAndLightningDamageTaken"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1114_PhysicalDamage"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1905034712", - ["text"] = "Adds # to # Fire Damage to Hits against you", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 9, + ["min"] = 1.5, }, - }, - ["1171_AddedFireAndColdDamage"] = { ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, + ["max"] = 31, + ["min"] = 1.5, }, ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, + ["max"] = 14, + ["min"] = 1.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, }, - ["1171_AddedFireAndLightningDamage"] = { - ["Quiver"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 7.5, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 7.5, - }, + ["1115_SelfPhysicalDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_2093523445", + ["text"] = "Adds # to # Physical Damage to Attacks against you", ["type"] = "explicit", }, }, - ["1171_GlobalAddedFireDamage"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 23, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_321077055", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", + ["1123_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["1HAxe"] = { + ["max"] = 17, + ["min"] = 8.5, }, - }, - ["1172_AddedFireSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 21.5, - ["min"] = 7, + ["1HMace"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["AnyJewel"] = { - ["max"] = 21.5, - ["min"] = 7, + ["1HSword"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", + ["2HAxe"] = { + ["max"] = 24, + ["min"] = 13.5, }, - }, - ["1172_FireDamage"] = { - ["Amulet"] = { - ["max"] = 37.5, - ["min"] = 1.5, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["Gloves"] = { - ["max"] = 21, - ["min"] = 1.5, + ["2HSword"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["Quiver"] = { - ["max"] = 75.5, - ["min"] = 2, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 1.5, + ["Bow"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 17, + ["min"] = 8.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", + ["Dagger"] = { + ["max"] = 17, + ["min"] = 8.5, }, - }, - ["1172_FireDamagePhysConvertedToFire"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 24, + ["min"] = 13.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire Damage to Attacks", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 17, + ["min"] = 8.5, }, - }, - ["1173_SelfFireDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2127433866", - ["text"] = "Adds # to # Fire Damage to Attacks against you", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", }, }, - ["1174_LocalFireDamage"] = { + ["1123_LocalPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["1HMace"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["1HSword"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["1HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, - }, - ["2HAxe"] = { - ["max"] = 165.5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 165.5, - ["min"] = 2, - }, - ["2HSword"] = { - ["max"] = 165.5, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["Claw"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["Dagger"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["Wand"] = { - ["max"] = 165.5, - ["min"] = 2, + ["max"] = 40.5, + ["min"] = 1.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", }, }, - ["1174_LocalFireDamageAndPen"] = { + ["1123_LocalPhysicalDamageTwoHanded"] = { + ["2HAxe"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HSword"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 65.5, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 65.5, + ["min"] = 3, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", + ["overrideModLine"] = "Adds # to # Physical Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage (Local)", ["type"] = "explicit", }, }, - ["1174_LocalFireDamageHybrid"] = { + ["1125_IncreasedDualWieldlingDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 12, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_444174528", + ["text"] = "#% increased Attack Damage while Dual Wielding", ["type"] = "explicit", }, }, - ["1174_LocalFireDamagePenetrationHybrid"] = { + ["1126_DualWieldingPhysicalDamage"] = { ["1HAxe"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["1HMace"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["1HSword"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["1HWeapon"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["2HAxe"] = { - ["max"] = 89.5, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["2HMace"] = { - ["max"] = 89.5, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["2HSword"] = { - ["max"] = 89.5, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["2HWeapon"] = { - ["max"] = 89.5, - ["min"] = 11.5, - }, - ["Bow"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["Claw"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, ["Dagger"] = { - ["max"] = 48, - ["min"] = 11.5, + ["max"] = 37, + ["min"] = 23, }, - ["Staff"] = { - ["max"] = 89.5, - ["min"] = 21.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 48, - ["min"] = 11.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_1274831335", + ["text"] = "#% increased Physical Attack Damage while Dual Wielding", + ["type"] = "explicit", + }, + }, + ["1148_IncreasedAxeDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_3314142259", + ["text"] = "#% increased Damage with Axes", ["type"] = "explicit", }, }, - ["1174_LocalFireDamageRanged"] = { + ["1155_IncreasedStaffDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_4087089130", + ["text"] = "#% increased Damage with Staves", ["type"] = "explicit", }, }, - ["1174_LocalFireDamageTwoHand"] = { - ["1HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["1160_IncreasedClawDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["1HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["1HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_1069260037", + ["text"] = "#% increased Damage with Claws", + ["type"] = "explicit", }, - ["2HAxe"] = { - ["max"] = 307.5, - ["min"] = 4.5, + }, + ["1166_IncreasedDaggerDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HMace"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["2HSword"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3586984690", + ["text"] = "#% increased Damage with Daggers", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 307.5, - ["min"] = 4.5, + }, + ["1172_IncreasedMaceDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, }, - ["Staff"] = { - ["max"] = 307.5, - ["min"] = 4.5, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces or Sceptres", ["type"] = "explicit", }, }, - ["1174_LocalFireDamageTwoHandAndPen"] = { + ["1178_IncreasedBowDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 14, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage (Local)", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, }, - ["1177_FireGemCastSpeedForJewel"] = { + ["1186_IncreasedSwordDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 16, + ["min"] = 14, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1476643878", - ["text"] = "#% increased Cast Speed with Fire Skills", + ["id"] = "explicit.stat_83050999", + ["text"] = "#% increased Damage with Swords", ["type"] = "explicit", }, }, - ["1178_ColdDamageAndBaseChanceToFreeze"] = { + ["1204_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { ["max"] = 109, ["min"] = 36, @@ -18148,12 +18725,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamageForJewel"] = { + ["1204_FireDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 14, @@ -18166,12 +18743,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamagePercentage"] = { + ["1204_FireDamagePercentage"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 9, @@ -18236,12 +18813,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamagePercentagePrefix"] = { + ["1204_FireDamagePercentagePrefix"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -18254,17 +18831,17 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamagePrefixColdPenetration"] = { - ["1HWeapon"] = { + ["1204_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { ["max"] = 60, ["min"] = 45, }, - ["Dagger"] = { + ["1HWeapon"] = { ["max"] = 60, ["min"] = 45, }, @@ -18276,12 +18853,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamageWeaponPrefix"] = { + ["1204_FireDamageWeaponPrefix"] = { ["1HAxe"] = { ["max"] = 54, ["min"] = 25, @@ -18318,42 +18895,56 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_ColdDamageWeaponPrefixAndFlat"] = { + ["1204_FireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_LocalColdDamageHybrid"] = { + ["1204_IncreasedFireAndLightningDamage"] = { + ["Ring"] = { + ["max"] = 20, + ["min"] = 11, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_SpellAddedColdDamageHybrid"] = { + ["1204_LocalFireDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1204_SpellAddedFireDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_TwoHandColdDamageWeaponPrefix"] = { + ["1204_TwoHandFireDamageWeaponPrefix"] = { ["2HAxe"] = { ["max"] = 81, ["min"] = 37, @@ -18378,42 +18969,42 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1178_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["1204_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["1179_SelfColdAndLightningDamageTaken"] = { + ["1205_SelfFireAndColdDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", ["type"] = "explicit", }, }, - ["1179_SelfFireAndColdDamageTaken"] = { + ["1205_SelfFireAndLightningDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482587079", - ["text"] = "Adds # to # Cold Damage to Hits against you", + ["id"] = "explicit.stat_1905034712", + ["text"] = "Adds # to # Fire Damage to Hits against you", ["type"] = "explicit", }, }, - ["1180_AddedColdAndLightningDamage"] = { + ["1206_AddedFireAndColdDamage"] = { ["Quiver"] = { ["max"] = 19, ["min"] = 7.5, @@ -18430,12 +19021,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, }, - ["1180_AddedFireAndColdDamage"] = { + ["1206_AddedFireAndLightningDamage"] = { ["Quiver"] = { ["max"] = 19, ["min"] = 7.5, @@ -18452,12 +19043,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, }, - ["1180_GlobalAddedColdDamage"] = { + ["1206_GlobalAddedFireDamage"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 23, @@ -18466,309 +19057,289 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2387423236", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_321077055", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, }, - ["1181_AddedColdSuffix"] = { + ["1207_AddedFireSuffix"] = { ["AbyssJewel"] = { - ["max"] = 19.5, - ["min"] = 6, + ["max"] = 21.5, + ["min"] = 7, }, ["AnyJewel"] = { - ["max"] = 19.5, - ["min"] = 6, + ["max"] = 21.5, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", ["type"] = "explicit", }, }, - ["1181_ColdDamage"] = { + ["1207_FireDamage"] = { ["Amulet"] = { - ["max"] = 34, + ["max"] = 37.5, ["min"] = 1.5, }, ["Gloves"] = { - ["max"] = 18.5, + ["max"] = 21, ["min"] = 1.5, }, ["Quiver"] = { - ["max"] = 68, - ["min"] = 1.5, + ["max"] = 75.5, + ["min"] = 2, }, ["Ring"] = { - ["max"] = 34, + ["max"] = 37.5, ["min"] = 1.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", ["type"] = "explicit", }, }, - ["1181_ColdDamagePhysConvertedToCold"] = { + ["1207_FireDamagePhysConvertedToFire"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold Damage to Attacks", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire Damage to Attacks", ["type"] = "explicit", }, }, - ["1182_SelfColdDamageTaken"] = { + ["1208_SelfFireDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_617462123", - ["text"] = "Adds # to # Cold Damage to Attacks against you", + ["id"] = "explicit.stat_2127433866", + ["text"] = "Adds # to # Fire Damage to Attacks against you", ["type"] = "explicit", }, }, - ["1183_LocalColdDamage"] = { + ["1209_LocalFireDamage"] = { ["1HAxe"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["1HMace"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["1HSword"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["2HAxe"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["2HMace"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["2HSword"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["Claw"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["Dagger"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["Wand"] = { - ["max"] = 150, + ["max"] = 165.5, ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1183_LocalColdDamageAndPen"] = { + ["1209_LocalFireDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1183_LocalColdDamageHybrid"] = { + ["1209_LocalFireDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1183_LocalColdDamagePenetrationHybrid"] = { + ["1209_LocalFireDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["1HMace"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["1HSword"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["1HWeapon"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["2HAxe"] = { - ["max"] = 80.5, - ["min"] = 10.5, + ["max"] = 89.5, + ["min"] = 11.5, }, ["2HMace"] = { - ["max"] = 80.5, - ["min"] = 10.5, + ["max"] = 89.5, + ["min"] = 11.5, }, ["2HSword"] = { - ["max"] = 80.5, - ["min"] = 10.5, + ["max"] = 89.5, + ["min"] = 11.5, }, ["2HWeapon"] = { - ["max"] = 80.5, - ["min"] = 10.5, + ["max"] = 89.5, + ["min"] = 11.5, }, ["Bow"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["Claw"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["Dagger"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["Staff"] = { - ["max"] = 80.5, - ["min"] = 19.5, + ["max"] = 89.5, + ["min"] = 21.5, }, ["Wand"] = { - ["max"] = 43.5, - ["min"] = 10.5, + ["max"] = 48, + ["min"] = 11.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1183_LocalColdDamageRanged"] = { + ["1209_LocalFireDamageRanged"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1183_LocalColdDamageTwoHand"] = { + ["1209_LocalFireDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["1HMace"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["1HSword"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["1HWeapon"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["2HAxe"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["2HMace"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["2HSword"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["2HWeapon"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["Bow"] = { - ["max"] = 276, - ["min"] = 4, + ["max"] = 307.5, + ["min"] = 4.5, }, ["Staff"] = { - ["max"] = 276, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", - }, - }, - ["1183_LocalColdDamageTwoHandAndPen"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Cold Damage", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage (Local)", - ["type"] = "explicit", + ["max"] = 307.5, + ["min"] = 4.5, }, - }, - ["1185_AddedFireDamageSpellsAndAttacks"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3964634628", - ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1186_AddedColdDamageToSpellsAndAttacks"] = { + ["1209_LocalFireDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Fire Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1662717006", - ["text"] = "Adds # to # Cold Damage to Spells and Attacks", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage (Local)", ["type"] = "explicit", }, }, - ["1188_ColdGemCastSpeedForJewel"] = { + ["1212_FireGemCastSpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -18781,26 +19352,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_928238845", - ["text"] = "#% increased Cast Speed with Cold Skills", - ["type"] = "explicit", - }, - }, - ["1189_IncreasedFireAndLightningDamage"] = { - ["Ring"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_1476643878", + ["text"] = "#% increased Cast Speed with Fire Skills", ["type"] = "explicit", }, }, - ["1189_LightningDamageAndChanceToShock"] = { + ["1213_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { ["max"] = 109, ["min"] = 36, @@ -18857,12 +19414,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamageForJewel"] = { + ["1213_ColdDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 14, @@ -18875,12 +19432,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamagePercentage"] = { + ["1213_ColdDamagePercentage"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 9, @@ -18945,12 +19502,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamagePercentagePrefix"] = { + ["1213_ColdDamagePercentagePrefix"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -18963,16 +19520,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamagePrefixLightningPenetration"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 45, - }, + ["1213_ColdDamagePrefixColdPenetration"] = { ["1HWeapon"] = { ["max"] = 60, ["min"] = 45, @@ -18989,12 +19542,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamageWeaponPrefix"] = { + ["1213_ColdDamageWeaponPrefix"] = { ["1HAxe"] = { ["max"] = 54, ["min"] = 25, @@ -19031,42 +19584,42 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LightningDamageWeaponPrefixAndFlat"] = { + ["1213_ColdDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_LocalLightningDamageHybrid"] = { + ["1213_LocalColdDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_SpellAddedLightningDamageHybrid"] = { + ["1213_SpellAddedColdDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_TwoHandLightningDamageWeaponPrefix"] = { + ["1213_TwoHandColdDamageWeaponPrefix"] = { ["2HAxe"] = { ["max"] = 81, ["min"] = 37, @@ -19091,42 +19644,42 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1189_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["1213_TwoHandColdDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["1190_SelfColdAndLightningDamageTaken"] = { + ["1214_SelfColdAndLightningDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", ["type"] = "explicit", }, }, - ["1190_SelfFireAndLightningDamageTaken"] = { + ["1214_SelfFireAndColdDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923069345", - ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["id"] = "explicit.stat_3482587079", + ["text"] = "Adds # to # Cold Damage to Hits against you", ["type"] = "explicit", }, }, - ["1191_AddedColdAndLightningDamage"] = { + ["1215_AddedColdAndLightningDamage"] = { ["Quiver"] = { ["max"] = 19, ["min"] = 7.5, @@ -19143,12 +19696,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, }, - ["1191_AddedFireAndLightningDamage"] = { + ["1215_AddedFireAndColdDamage"] = { ["Quiver"] = { ["max"] = 19, ["min"] = 7.5, @@ -19165,303 +19718,323 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, }, - ["1191_GlobalAddedLightningDamage"] = { + ["1215_GlobalAddedColdDamage"] = { ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 24.5, + ["max"] = 30, + ["min"] = 23, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1334060246", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_2387423236", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, }, - ["1192_AddedLightningSuffix"] = { + ["1216_AddedColdSuffix"] = { ["AbyssJewel"] = { - ["max"] = 26, - ["min"] = 10, + ["max"] = 19.5, + ["min"] = 6, }, ["AnyJewel"] = { - ["max"] = 26, - ["min"] = 10, + ["max"] = 19.5, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", ["type"] = "explicit", }, }, - ["1192_LightningDamage"] = { + ["1216_ColdDamage"] = { ["Amulet"] = { - ["max"] = 42, - ["min"] = 3, + ["max"] = 34, + ["min"] = 1.5, }, ["Gloves"] = { - ["max"] = 23.5, - ["min"] = 3, + ["max"] = 18.5, + ["min"] = 1.5, }, ["Quiver"] = { - ["max"] = 84, - ["min"] = 2, + ["max"] = 68, + ["min"] = 1.5, }, ["Ring"] = { - ["max"] = 42, - ["min"] = 3, + ["max"] = 34, + ["min"] = 1.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", ["type"] = "explicit", }, }, - ["1192_LightningDamagePhysConvertedToLightning"] = { + ["1216_ColdDamagePhysConvertedToCold"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning Damage to Attacks", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold Damage to Attacks", ["type"] = "explicit", }, }, - ["1193_SelfLightningDamageTaken"] = { + ["1217_SelfColdDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2491363440", - ["text"] = "Adds # to # Lightning Damage to Attacks against you", + ["id"] = "explicit.stat_617462123", + ["text"] = "Adds # to # Cold Damage to Attacks against you", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamage"] = { + ["1218_LocalColdDamage"] = { ["1HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["1HMace"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["1HSword"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["2HAxe"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["2HSword"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["Dagger"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["Wand"] = { - ["max"] = 182.5, - ["min"] = 3, + ["max"] = 150, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamageAndPen"] = { + ["1218_LocalColdDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamageHybrid"] = { + ["1218_LocalColdDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamagePenetrationHybrid"] = { + ["1218_LocalColdDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["1HMace"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["1HSword"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["1HWeapon"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 13.5, + ["max"] = 80.5, + ["min"] = 10.5, }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 13.5, + ["max"] = 80.5, + ["min"] = 10.5, }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 13.5, + ["max"] = 80.5, + ["min"] = 10.5, }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 13.5, + ["max"] = 80.5, + ["min"] = 10.5, }, ["Bow"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["Claw"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["Dagger"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["Staff"] = { - ["max"] = 99, - ["min"] = 24.5, + ["max"] = 80.5, + ["min"] = 19.5, }, ["Wand"] = { - ["max"] = 53.5, - ["min"] = 13.5, + ["max"] = 43.5, + ["min"] = 10.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamageRanged"] = { + ["1218_LocalColdDamageRanged"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamageTwoHand"] = { + ["1218_LocalColdDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["1HMace"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["1HSword"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["2HAxe"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["2HSword"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["Staff"] = { - ["max"] = 338, - ["min"] = 6, + ["max"] = 276, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", ["type"] = "explicit", }, }, - ["1194_LocalLightningDamageTwoHandAndPen"] = { + ["1218_LocalColdDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Lightning Damage", + ["overrideModLine"] = "Adds # to # Cold Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage (Local)", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1220_AddedFireDamageSpellsAndAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3964634628", + ["text"] = "Adds # to # Fire Damage to Spells and Attacks", + ["type"] = "explicit", + }, + }, + ["1221_AddedColdDamageToSpellsAndAttacks"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1662717006", + ["text"] = "Adds # to # Cold Damage to Spells and Attacks", ["type"] = "explicit", }, }, - ["1196_LightningGemCastSpeedForJewel"] = { + ["1223_ColdGemCastSpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -19474,159 +20047,121 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1788635023", - ["text"] = "#% increased Cast Speed with Lightning Skills", + ["id"] = "explicit.stat_928238845", + ["text"] = "#% increased Cast Speed with Cold Skills", + ["type"] = "explicit", + }, + }, + ["1224_IncreasedFireAndLightningDamage"] = { + ["Ring"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_ChaosDamageAndChaosSkillDuration"] = { + ["1224_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["1HMace"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["1HSword"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["1HWeapon"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["2HAxe"] = { - ["max"] = 99, - ["min"] = 53, + ["max"] = 109, + ["min"] = 60, }, ["2HMace"] = { - ["max"] = 99, - ["min"] = 53, + ["max"] = 109, + ["min"] = 60, }, ["2HSword"] = { - ["max"] = 99, - ["min"] = 53, + ["max"] = 109, + ["min"] = 60, }, ["2HWeapon"] = { - ["max"] = 99, - ["min"] = 53, + ["max"] = 109, + ["min"] = 60, }, ["Bow"] = { - ["max"] = 99, - ["min"] = 60, + ["max"] = 109, + ["min"] = 70, }, ["Claw"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["Dagger"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["Staff"] = { - ["max"] = 99, - ["min"] = 53, + ["max"] = 109, + ["min"] = 60, }, ["Wand"] = { - ["max"] = 99, - ["min"] = 35, + ["max"] = 109, + ["min"] = 36, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_ChaosDamageForJewel"] = { + ["1224_LightningDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 9, + ["max"] = 16, + ["min"] = 14, }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1197_ChaosDamageWeaponPrefix"] = { - ["1HAxe"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["1HMace"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["1HSword"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["1HWeapon"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 54, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1197_IncreasedChaosAndPhysicalDamage"] = { - ["Ring"] = { - ["max"] = 20, - ["min"] = 11, + ["max"] = 16, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_IncreasedChaosDamage"] = { + ["1224_LightningDamagePercentage"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 9, }, ["1HMace"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 30, + ["min"] = 3, }, ["1HSword"] = { ["max"] = 16, ["min"] = 9, }, ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 30, + ["min"] = 3, }, ["2HAxe"] = { ["max"] = 16, @@ -19641,24 +20176,12 @@ return { ["min"] = 9, }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 9, - }, - ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 13, + ["max"] = 30, + ["min"] = 3, }, ["Amulet"] = { ["max"] = 34, - ["min"] = 9, - }, - ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 13, - }, - ["BaseJewel"] = { - ["max"] = 19, - ["min"] = 13, + ["min"] = 3, }, ["Bow"] = { ["max"] = 16, @@ -19674,26 +20197,26 @@ return { }, ["Ring"] = { ["max"] = 34, - ["min"] = 9, + ["min"] = 3, }, ["Staff"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 30, + ["min"] = 3, }, ["Wand"] = { - ["max"] = 16, - ["min"] = 9, + ["max"] = 30, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_IncreasedChaosDamagePrefix"] = { + ["1224_LightningDamagePercentagePrefix"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -19706,52 +20229,110 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1224_LightningDamagePrefixLightningPenetration"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Dagger"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_LocalChanceToPoisonOnHitChaosDamage"] = { + ["1224_LightningDamageWeaponPrefix"] = { + ["1HAxe"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HMace"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 54, + ["min"] = 25, + }, + ["Shield"] = { + ["max"] = 109, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 109, + ["min"] = 10, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_LocalChaosDamageHybrid"] = { + ["1224_LightningDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_PoisonDurationChaosDamage"] = { + ["1224_LocalLightningDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_SpellAddedChaosDamageHybrid"] = { + ["1224_SpellAddedLightningDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1197_TwoHandChaosDamageWeaponPrefix"] = { + ["1224_TwoHandLightningDamageWeaponPrefix"] = { ["2HAxe"] = { ["max"] = 81, ["min"] = 37, @@ -19765,872 +20346,967 @@ return { ["min"] = 37, }, ["2HWeapon"] = { - ["max"] = 81, - ["min"] = 37, + ["max"] = 164, + ["min"] = 15, }, ["Staff"] = { - ["max"] = 81, - ["min"] = 37, + ["max"] = 164, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1224_TwoHandLightningDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1225_SelfColdAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1225_SelfFireAndLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923069345", + ["text"] = "Adds # to # Lightning Damage to Hits against you", + ["type"] = "explicit", + }, + }, + ["1226_AddedColdAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["1226_AddedFireAndLightningDamage"] = { + ["Quiver"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 7.5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, }, - ["1198_GlobalAddedChaosDamage"] = { + ["1226_GlobalAddedLightningDamage"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 18, + ["max"] = 30.5, + ["min"] = 24.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["id"] = "explicit.stat_1334060246", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, }, - ["1199_AddedChaosSuffix"] = { + ["1227_AddedLightningSuffix"] = { ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 8.5, + ["max"] = 26, + ["min"] = 10, }, ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 8.5, + ["max"] = 26, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", ["type"] = "explicit", }, }, - ["1199_ChaosDamage"] = { + ["1227_LightningDamage"] = { ["Amulet"] = { - ["max"] = 21, - ["min"] = 10, + ["max"] = 42, + ["min"] = 3, }, ["Gloves"] = { - ["max"] = 13, - ["min"] = 10, + ["max"] = 23.5, + ["min"] = 3, }, ["Quiver"] = { - ["max"] = 55, - ["min"] = 10, + ["max"] = 84, + ["min"] = 2, }, ["Ring"] = { - ["max"] = 21, - ["min"] = 10, + ["max"] = 42, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1227_LightningDamagePhysConvertedToLightning"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1228_SelfLightningDamageTaken"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2491363440", + ["text"] = "Adds # to # Lightning Damage to Attacks against you", ["type"] = "explicit", }, }, - ["1201_LocalChaosDamage"] = { + ["1229_LocalLightningDamage"] = { ["1HAxe"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["1HMace"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["1HSword"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["1HWeapon"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["2HAxe"] = { - ["max"] = 123.5, - ["min"] = 80.5, + ["max"] = 182.5, + ["min"] = 3, }, ["2HMace"] = { - ["max"] = 123.5, - ["min"] = 80.5, + ["max"] = 182.5, + ["min"] = 3, }, ["2HSword"] = { - ["max"] = 123.5, - ["min"] = 80.5, + ["max"] = 182.5, + ["min"] = 3, }, ["2HWeapon"] = { - ["max"] = 123.5, - ["min"] = 80.5, + ["max"] = 182.5, + ["min"] = 3, }, ["Claw"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["Dagger"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["Wand"] = { - ["max"] = 123.5, - ["min"] = 58, + ["max"] = 182.5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", }, }, - ["1201_LocalChaosDamageHybrid"] = { + ["1229_LocalLightningDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1229_LocalLightningDamageHybrid"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", }, }, - ["1201_LocalChaosDamagePenetrationHybrid"] = { + ["1229_LocalLightningDamagePenetrationHybrid"] = { ["1HAxe"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["1HMace"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["1HSword"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["1HWeapon"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["2HAxe"] = { - ["max"] = 64.5, - ["min"] = 8, + ["max"] = 99, + ["min"] = 13.5, }, ["2HMace"] = { - ["max"] = 64.5, - ["min"] = 8, + ["max"] = 99, + ["min"] = 13.5, }, ["2HSword"] = { - ["max"] = 64.5, - ["min"] = 8, + ["max"] = 99, + ["min"] = 13.5, }, ["2HWeapon"] = { - ["max"] = 64.5, - ["min"] = 8, + ["max"] = 99, + ["min"] = 13.5, }, ["Bow"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["Claw"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["Dagger"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["Staff"] = { - ["max"] = 64.5, - ["min"] = 15, + ["max"] = 99, + ["min"] = 24.5, }, ["Wand"] = { - ["max"] = 34.5, - ["min"] = 8, + ["max"] = 53.5, + ["min"] = 13.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", + ["type"] = "explicit", + }, + }, + ["1229_LocalLightningDamageRanged"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Lightning Damage", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", }, }, - ["1201_LocalChaosDamageTwoHand"] = { + ["1229_LocalLightningDamageTwoHand"] = { ["1HAxe"] = { - ["max"] = 214.5, - ["min"] = 140.5, + ["max"] = 338, + ["min"] = 6, }, ["1HMace"] = { - ["max"] = 214.5, - ["min"] = 140.5, + ["max"] = 338, + ["min"] = 6, }, ["1HSword"] = { - ["max"] = 214.5, - ["min"] = 140.5, + ["max"] = 338, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 214.5, - ["min"] = 140.5, + ["max"] = 338, + ["min"] = 6, }, ["2HAxe"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["2HSword"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["Staff"] = { - ["max"] = 214.5, - ["min"] = 105, + ["max"] = 338, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", }, }, - ["1201_LocalIncreasedAttackSpeedAddedChaos"] = { + ["1229_LocalLightningDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "Adds # to # Chaos Damage", + ["overrideModLine"] = "Adds # to # Lightning Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos Damage (Local)", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage (Local)", ["type"] = "explicit", }, }, - ["1201_PoisonDamageAddedChaosToAttacks"] = { + ["1231_LightningGemCastSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3531280422", - ["text"] = "Adds # to # Chaos Damage", + ["id"] = "explicit.stat_1788635023", + ["text"] = "#% increased Cast Speed with Lightning Skills", ["type"] = "explicit", }, }, - ["1214_SpellAddedPhysicalDamage"] = { + ["1232_ChaosDamageAndChaosSkillDuration"] = { + ["1HAxe"] = { + ["max"] = 99, + ["min"] = 35, + }, ["1HMace"] = { - ["max"] = 60, - ["min"] = 34, + ["max"] = 99, + ["min"] = 35, + }, + ["1HSword"] = { + ["max"] = 99, + ["min"] = 35, }, ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 34, + ["max"] = 99, + ["min"] = 35, + }, + ["2HAxe"] = { + ["max"] = 99, + ["min"] = 53, + }, + ["2HMace"] = { + ["max"] = 99, + ["min"] = 53, + }, + ["2HSword"] = { + ["max"] = 99, + ["min"] = 53, }, ["2HWeapon"] = { - ["max"] = 97.5, - ["min"] = 56, + ["max"] = 99, + ["min"] = 53, }, - ["Dagger"] = { - ["max"] = 60, - ["min"] = 34, + ["Bow"] = { + ["max"] = 99, + ["min"] = 60, }, - ["Helmet"] = { - ["max"] = 61, - ["min"] = 25, + ["Claw"] = { + ["max"] = 99, + ["min"] = 35, + }, + ["Dagger"] = { + ["max"] = 99, + ["min"] = 35, }, ["Staff"] = { - ["max"] = 97.5, - ["min"] = 56, + ["max"] = 99, + ["min"] = 53, }, ["Wand"] = { - ["max"] = 60, - ["min"] = 34, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", + ["max"] = 99, + ["min"] = 35, }, - }, - ["1214_SpellAddedPhysicalDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1214_SpellAddedPhysicalSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, + ["1232_ChaosDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 19, - ["min"] = 4.5, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["max"] = 13, + ["min"] = 9, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2435536961", - ["text"] = "Adds # to # Physical Damage to Spells", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 9, }, - }, - ["1215_FireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1215_SpellAddedFireDamage"] = { + ["1232_ChaosDamageWeaponPrefix"] = { ["1HAxe"] = { - ["max"] = 90.5, - ["min"] = 17.5, + ["max"] = 54, + ["min"] = 25, }, ["1HMace"] = { - ["max"] = 90.5, - ["min"] = 2, + ["max"] = 54, + ["min"] = 25, }, ["1HSword"] = { - ["max"] = 90.5, - ["min"] = 17.5, + ["max"] = 54, + ["min"] = 25, }, ["1HWeapon"] = { - ["max"] = 90.5, - ["min"] = 2, + ["max"] = 54, + ["min"] = 25, }, ["Claw"] = { - ["max"] = 90.5, - ["min"] = 17.5, + ["max"] = 54, + ["min"] = 25, }, ["Dagger"] = { - ["max"] = 90.5, - ["min"] = 2, + ["max"] = 54, + ["min"] = 25, }, ["Wand"] = { - ["max"] = 90.5, - ["min"] = 2, + ["max"] = 54, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1215_SpellAddedFireDamageHybrid"] = { + ["1232_IncreasedChaosAndPhysicalDamage"] = { + ["Ring"] = { + ["max"] = 20, + ["min"] = 11, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1215_SpellAddedFireDamagePenetrationHybrid"] = { - ["1HMace"] = { - ["max"] = 38.5, + ["1232_IncreasedChaosDamage"] = { + ["1HAxe"] = { + ["max"] = 16, ["min"] = 9, }, - ["1HWeapon"] = { - ["max"] = 38.5, + ["1HMace"] = { + ["max"] = 16, ["min"] = 9, }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 12.5, - }, - ["Dagger"] = { - ["max"] = 38.5, + ["1HSword"] = { + ["max"] = 16, ["min"] = 9, }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 12.5, - }, - ["Wand"] = { - ["max"] = 38.5, + ["1HWeapon"] = { + ["max"] = 16, ["min"] = 9, }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1215_SpellAddedFireDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 121.5, - ["min"] = 23.5, + ["max"] = 16, + ["min"] = 9, }, ["2HMace"] = { - ["max"] = 121.5, - ["min"] = 23.5, + ["max"] = 16, + ["min"] = 9, }, ["2HSword"] = { - ["max"] = 121.5, - ["min"] = 23.5, + ["max"] = 16, + ["min"] = 9, }, ["2HWeapon"] = { - ["max"] = 121.5, - ["min"] = 2.5, + ["max"] = 16, + ["min"] = 9, }, - ["Bow"] = { - ["max"] = 121.5, - ["min"] = 48.5, + ["AbyssJewel"] = { + ["max"] = 19, + ["min"] = 13, }, - ["Staff"] = { - ["max"] = 121.5, - ["min"] = 2.5, + ["Amulet"] = { + ["max"] = 34, + ["min"] = 9, }, - ["sign"] = "", - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 19, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 19, + ["min"] = 13, }, - }, - ["1215_SpellAddedFireDamageUber"] = { - ["Helmet"] = { - ["max"] = 61, - ["min"] = 25, + ["Bow"] = { + ["max"] = 16, + ["min"] = 9, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 16, + ["min"] = 9, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", - ["type"] = "explicit", + ["Dagger"] = { + ["max"] = 16, + ["min"] = 9, }, - }, - ["1215_SpellAddedFireSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, + ["Ring"] = { + ["max"] = 34, + ["min"] = 9, }, - ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, + ["Staff"] = { + ["max"] = 16, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1215_TwoHandFireDamageWeaponPrefixAndFlat"] = { + ["1232_IncreasedChaosDamagePrefix"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 16, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1133016593", - ["text"] = "Adds # to # Fire Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_ColdDamageWeaponPrefixAndFlat"] = { + ["1232_LocalChanceToPoisonOnHitChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdDamage"] = { - ["1HAxe"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, - ["1HMace"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, - ["1HSword"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, - ["1HWeapon"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, - ["Claw"] = { - ["max"] = 73.5, - ["min"] = 14.5, - }, - ["Dagger"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, - ["Wand"] = { - ["max"] = 73.5, - ["min"] = 1.5, - }, + ["1232_LocalChaosDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdDamageHybrid"] = { + ["1232_PoisonDurationChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdDamagePenetrationHybrid"] = { - ["1HMace"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, - ["1HWeapon"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, - ["2HWeapon"] = { - ["max"] = 47, - ["min"] = 11.5, - }, - ["Dagger"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, - ["Staff"] = { - ["max"] = 47, - ["min"] = 11.5, - }, - ["Wand"] = { - ["max"] = 31.5, - ["min"] = 7.5, - }, + ["1232_SpellAddedChaosDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdDamageTwoHand"] = { + ["1232_TwoHandChaosDamageWeaponPrefix"] = { ["2HAxe"] = { - ["max"] = 110.5, - ["min"] = 21, + ["max"] = 81, + ["min"] = 37, }, ["2HMace"] = { - ["max"] = 110.5, - ["min"] = 21, + ["max"] = 81, + ["min"] = 37, }, ["2HSword"] = { - ["max"] = 110.5, - ["min"] = 21, + ["max"] = 81, + ["min"] = 37, }, ["2HWeapon"] = { - ["max"] = 110.5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 110.5, - ["min"] = 24.5, + ["max"] = 81, + ["min"] = 37, }, ["Staff"] = { - ["max"] = 110.5, - ["min"] = 2, + ["max"] = 81, + ["min"] = 37, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdDamageUber"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 20.5, + ["1233_GlobalAddedChaosDamage"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", ["type"] = "explicit", }, }, - ["1216_SpellAddedColdSuffix"] = { + ["1234_AddedChaosSuffix"] = { ["AbyssJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, + ["max"] = 16, + ["min"] = 8.5, }, ["AnyJewel"] = { - ["max"] = 27.5, - ["min"] = 7.5, + ["max"] = 16, + ["min"] = 8.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, }, - ["1216_TwoHandColdDamageWeaponPrefixAndFlat"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1234_ChaosDamage"] = { + ["Amulet"] = { + ["max"] = 21, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2469416729", - ["text"] = "Adds # to # Cold Damage to Spells", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 13, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 55, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 21, + ["min"] = 10, }, - }, - ["1217_LightningDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, }, - ["1217_SpellAddedLightningDamage"] = { + ["1236_LocalChaosDamage"] = { ["1HAxe"] = { - ["max"] = 96.5, - ["min"] = 11, + ["max"] = 123.5, + ["min"] = 58, }, ["1HMace"] = { - ["max"] = 96.5, - ["min"] = 2.5, + ["max"] = 123.5, + ["min"] = 58, }, ["1HSword"] = { - ["max"] = 96.5, - ["min"] = 11, + ["max"] = 123.5, + ["min"] = 58, }, ["1HWeapon"] = { - ["max"] = 96.5, - ["min"] = 2.5, + ["max"] = 123.5, + ["min"] = 58, }, - ["Claw"] = { - ["max"] = 96.5, - ["min"] = 11, + ["2HAxe"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["Dagger"] = { - ["max"] = 96.5, - ["min"] = 2.5, + ["2HMace"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["Wand"] = { - ["max"] = 96.5, - ["min"] = 2.5, + ["2HSword"] = { + ["max"] = 123.5, + ["min"] = 80.5, }, - ["sign"] = "", + ["2HWeapon"] = { + ["max"] = 123.5, + ["min"] = 80.5, + }, + ["Claw"] = { + ["max"] = 123.5, + ["min"] = 58, + }, + ["Dagger"] = { + ["max"] = 123.5, + ["min"] = 58, + }, + ["Wand"] = { + ["max"] = 123.5, + ["min"] = 58, + }, + ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", }, }, - ["1217_SpellAddedLightningDamageHybrid"] = { + ["1236_LocalChaosDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", }, }, - ["1217_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1236_LocalChaosDamagePenetrationHybrid"] = { + ["1HAxe"] = { + ["max"] = 34.5, + ["min"] = 8, + }, ["1HMace"] = { - ["max"] = 41.5, - ["min"] = 11, + ["max"] = 34.5, + ["min"] = 8, + }, + ["1HSword"] = { + ["max"] = 34.5, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 41.5, - ["min"] = 11, + ["max"] = 34.5, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 64.5, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 64.5, + ["min"] = 8, + }, + ["2HSword"] = { + ["max"] = 64.5, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 62, - ["min"] = 16.5, + ["max"] = 64.5, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 34.5, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 34.5, + ["min"] = 8, }, ["Dagger"] = { - ["max"] = 41.5, - ["min"] = 11, + ["max"] = 34.5, + ["min"] = 8, }, ["Staff"] = { - ["max"] = 62, - ["min"] = 16.5, + ["max"] = 64.5, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 41.5, - ["min"] = 11, + ["max"] = 34.5, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", }, }, - ["1217_SpellAddedLightningDamageTwoHand"] = { + ["1236_LocalChaosDamageTwoHand"] = { + ["1HAxe"] = { + ["max"] = 214.5, + ["min"] = 140.5, + }, + ["1HMace"] = { + ["max"] = 214.5, + ["min"] = 140.5, + }, + ["1HSword"] = { + ["max"] = 214.5, + ["min"] = 140.5, + }, + ["1HWeapon"] = { + ["max"] = 214.5, + ["min"] = 140.5, + }, ["2HAxe"] = { - ["max"] = 145, - ["min"] = 16.5, + ["max"] = 214.5, + ["min"] = 105, }, ["2HMace"] = { - ["max"] = 145, - ["min"] = 16.5, + ["max"] = 214.5, + ["min"] = 105, }, ["2HSword"] = { - ["max"] = 145, - ["min"] = 16.5, + ["max"] = 214.5, + ["min"] = 105, }, ["2HWeapon"] = { - ["max"] = 145, - ["min"] = 3.5, + ["max"] = 214.5, + ["min"] = 105, }, ["Bow"] = { - ["max"] = 145, - ["min"] = 16.5, + ["max"] = 214.5, + ["min"] = 105, }, ["Staff"] = { - ["max"] = 145, - ["min"] = 3.5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1217_SpellAddedLightningDamageUber"] = { - ["Helmet"] = { - ["max"] = 64.5, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", - }, - }, - ["1217_SpellAddedLightningSuffix"] = { - ["AbyssJewel"] = { - ["max"] = 25.5, - ["min"] = 8, - }, - ["AnyJewel"] = { - ["max"] = 25.5, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", - ["type"] = "explicit", + ["max"] = 214.5, + ["min"] = 105, }, - }, - ["1217_TwoHandLightningDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2831165374", - ["text"] = "Adds # to # Lightning Damage to Spells", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", }, }, - ["1218_IncreasedCastSpeedAddedChaos"] = { + ["1236_LocalIncreasedAttackSpeedAddedChaos"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "Adds # to # Chaos Damage", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos Damage (Local)", ["type"] = "explicit", }, }, - ["1218_PoisonDamageAddedChaosToSpells"] = { + ["1236_PoisonDamageAddedChaosToAttacks"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_3531280422", + ["text"] = "Adds # to # Chaos Damage", ["type"] = "explicit", }, }, - ["1218_SpellAddedChaosDamage"] = { + ["1249_SpellAddedPhysicalDamage"] = { ["1HMace"] = { ["max"] = 60, ["min"] = 34, @@ -20648,8 +21324,8 @@ return { ["min"] = 34, }, ["Helmet"] = { - ["max"] = 50, - ["min"] = 20.5, + ["max"] = 61, + ["min"] = 25, }, ["Staff"] = { ["max"] = 97.5, @@ -20663,22 +21339,22 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", }, }, - ["1218_SpellAddedChaosDamageHybrid"] = { + ["1249_SpellAddedPhysicalDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", }, }, - ["1218_SpellAddedChaosSuffix"] = { + ["1249_SpellAddedPhysicalSuffix"] = { ["AbyssJewel"] = { ["max"] = 19, ["min"] = 4.5, @@ -20691,957 +21367,820 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300399854", - ["text"] = "Adds # to # Chaos Damage to Spells", + ["id"] = "explicit.stat_2435536961", + ["text"] = "Adds # to # Physical Damage to Spells", ["type"] = "explicit", }, }, - ["1220_AddedLightningDamageSpellsAndAttacks"] = { + ["1250_FireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2885144362", - ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", }, }, - ["1221_IncreasedAttackSpeed"] = { - ["Amulet"] = { - ["max"] = 13, - ["min"] = 7, + ["1250_SpellAddedFireDamage"] = { + ["1HAxe"] = { + ["max"] = 90.5, + ["min"] = 17.5, }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 5, + ["1HMace"] = { + ["max"] = 90.5, + ["min"] = 2, }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, + ["1HSword"] = { + ["max"] = 90.5, + ["min"] = 17.5, }, - ["Ring"] = { - ["max"] = 7, - ["min"] = 3, + ["1HWeapon"] = { + ["max"] = 90.5, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 16, - ["min"] = 5, + ["Claw"] = { + ["max"] = 90.5, + ["min"] = 17.5, + }, + ["Dagger"] = { + ["max"] = 90.5, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 90.5, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", }, }, - ["1221_IncreasedAttackSpeedForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["1250_SpellAddedFireDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", }, }, - ["1221_IncreasedAttackSpeedSupported"] = { - ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, + ["1250_SpellAddedFireDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 38.5, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 38.5, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 12.5, + }, + ["Dagger"] = { + ["max"] = 38.5, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 52, + ["min"] = 12.5, + }, + ["Wand"] = { + ["max"] = 38.5, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", }, }, - ["1224_AttackSpeedDoubleDamage"] = { + ["1250_SpellAddedFireDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 121.5, + ["min"] = 23.5, }, ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 121.5, + ["min"] = 23.5, }, ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 121.5, + ["min"] = 23.5, }, ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 8, + ["max"] = 121.5, + ["min"] = 2.5, }, ["Bow"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 121.5, + ["min"] = 48.5, }, ["Staff"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 121.5, + ["min"] = 2.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", ["type"] = "explicit", }, }, - ["1224_AttackSpeedKilledRecently"] = { - ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, + ["1250_SpellAddedFireDamageUber"] = { + ["Helmet"] = { + ["max"] = 61, + ["min"] = 25, }, - ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 8, + }, + ["1250_SpellAddedFireSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - ["Bow"] = { - ["max"] = 12, - ["min"] = 8, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - ["Staff"] = { - ["max"] = 21, - ["min"] = 17, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", }, + }, + ["1250_TwoHandFireDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1133016593", + ["text"] = "Adds # to # Fire Damage to Spells", + ["type"] = "explicit", + }, + }, + ["1251_ColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1251_SpellAddedColdDamage"] = { ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 14.5, }, ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 1.5, }, ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 14.5, }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 1.5, }, ["Claw"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 14.5, }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 1.5, }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 73.5, + ["min"] = 1.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalAttackSpeedAndLocalItemQuality"] = { + ["1251_SpellAddedColdDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalAttackSpeedDexterityIntelligence"] = { - ["1HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, + ["1251_SpellAddedColdDamagePenetrationHybrid"] = { ["1HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["1HSword"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 31.5, + ["min"] = 7.5, }, ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HSword"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 31.5, + ["min"] = 7.5, }, ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 47, + ["min"] = 11.5, }, ["Dagger"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 31.5, + ["min"] = 7.5, }, ["Staff"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 47, + ["min"] = 11.5, }, ["Wand"] = { - ["max"] = 22, - ["min"] = 8, + ["max"] = 31.5, + ["min"] = 7.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedAttackSpeed"] = { - ["1HAxe"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["1HMace"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["1HSword"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 5, - }, + ["1251_SpellAddedColdDamageTwoHand"] = { ["2HAxe"] = { - ["max"] = 30, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 21, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 21, }, ["2HSword"] = { - ["max"] = 30, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 21, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 27, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["Dagger"] = { - ["max"] = 30, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 24.5, }, ["Staff"] = { - ["max"] = 30, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 27, - ["min"] = 5, + ["max"] = 110.5, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedAttackSpeedAddedChaos"] = { + ["1251_SpellAddedColdDamageUber"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 20.5, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedAttackSpeedFasterAttacks"] = { - ["1HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["1HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["1HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["1HWeapon"] = { - ["max"] = 21, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, + ["1251_SpellAddedColdSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, + ["AnyJewel"] = { + ["max"] = 27.5, + ["min"] = 7.5, }, - ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 17, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 21, - ["min"] = 17, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", }, - ["Dagger"] = { - ["max"] = 21, - ["min"] = 17, + }, + ["1251_TwoHandColdDamageWeaponPrefixAndFlat"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 12, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_2469416729", + ["text"] = "Adds # to # Cold Damage to Spells", + ["type"] = "explicit", }, + }, + ["1252_LightningDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedAttackSpeedMultistrike"] = { + ["1252_SpellAddedLightningDamage"] = { ["1HAxe"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 11, }, ["1HMace"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 2.5, }, ["1HSword"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 11, }, ["1HWeapon"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["2HAxe"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["2HMace"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["2HSword"] = { - ["max"] = 21, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 2.5, }, ["Claw"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 11, }, ["Dagger"] = { - ["max"] = 21, - ["min"] = 17, + ["max"] = 96.5, + ["min"] = 2.5, + }, + ["Wand"] = { + ["max"] = 96.5, + ["min"] = 2.5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedAttackSpeedOnslaught"] = { - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["1252_SpellAddedLightningDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1224_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { - ["1HAxe"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["1HSword"] = { - ["max"] = 4, - ["min"] = 3, + ["1252_SpellAddedLightningDamagePenetrationHybrid"] = { + ["1HMace"] = { + ["max"] = 41.5, + ["min"] = 11, }, ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 3, + ["max"] = 41.5, + ["min"] = 11, }, - ["2HAxe"] = { - ["max"] = 4, - ["min"] = 3, + ["2HWeapon"] = { + ["max"] = 62, + ["min"] = 16.5, }, - ["2HSword"] = { - ["max"] = 4, - ["min"] = 3, + ["Dagger"] = { + ["max"] = 41.5, + ["min"] = 11, }, - ["2HWeapon"] = { - ["max"] = 4, - ["min"] = 3, + ["Staff"] = { + ["max"] = 62, + ["min"] = 16.5, + }, + ["Wand"] = { + ["max"] = 41.5, + ["min"] = 11, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1226_AttackSpeedWhileDualWieldingForJewel"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["1252_SpellAddedLightningDamageTwoHand"] = { + ["2HAxe"] = { + ["max"] = 145, + ["min"] = 16.5, }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["2HMace"] = { + ["max"] = 145, + ["min"] = 16.5, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 145, + ["min"] = 16.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4249220643", - ["text"] = "#% increased Attack Speed while Dual Wielding", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 145, + ["min"] = 3.5, }, - }, - ["1228_AttackSpeedWithAShieldForJewel"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["Bow"] = { + ["max"] = 145, + ["min"] = 16.5, }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["Staff"] = { + ["max"] = 145, + ["min"] = 3.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3805075944", - ["text"] = "#% increased Attack Speed while holding a Shield", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1229_TwoHandedMeleeAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["1252_SpellAddedLightningDamageUber"] = { + ["Helmet"] = { + ["max"] = 64.5, + ["min"] = 30, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1917910910", - ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1230_OneHandedMeleeAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["1252_SpellAddedLightningSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 25.5, + ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["AnyJewel"] = { + ["max"] = 25.5, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1813451228", - ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1231_AxeAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1252_TwoHandLightningDamageWeaponPrefixAndFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3550868361", - ["text"] = "#% increased Attack Speed with Axes", + ["id"] = "explicit.stat_2831165374", + ["text"] = "Adds # to # Lightning Damage to Spells", ["type"] = "explicit", }, }, - ["1232_StaffAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1253_IncreasedCastSpeedAddedChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1394963553", - ["text"] = "#% increased Attack Speed with Staves", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", }, }, - ["1233_ClawAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1253_PoisonDamageAddedChaosToSpells"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1421645223", - ["text"] = "#% increased Attack Speed with Claws", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", }, }, - ["1234_DaggerAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["1253_SpellAddedChaosDamage"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 34, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 34, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 97.5, + ["min"] = 56, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2538566497", - ["text"] = "#% increased Attack Speed with Daggers", - ["type"] = "explicit", + ["Dagger"] = { + ["max"] = 60, + ["min"] = 34, }, - }, - ["1235_MaceAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 20.5, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["Staff"] = { + ["max"] = 97.5, + ["min"] = 56, + }, + ["Wand"] = { + ["max"] = 60, + ["min"] = 34, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2515515064", - ["text"] = "#% increased Attack Speed with Maces or Sceptres", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", }, }, - ["1236_BowAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1253_SpellAddedChaosDamageHybrid"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", }, }, - ["1237_SwordAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["1253_SpellAddedChaosSuffix"] = { + ["AbyssJewel"] = { + ["max"] = 19, + ["min"] = 4.5, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, + ["AnyJewel"] = { + ["max"] = 19, + ["min"] = 4.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3293699237", - ["text"] = "#% increased Attack Speed with Swords", + ["id"] = "explicit.stat_2300399854", + ["text"] = "Adds # to # Chaos Damage to Spells", ["type"] = "explicit", }, }, - ["1238_WandAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1255_AddedLightningDamageSpellsAndAttacks"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3720627346", - ["text"] = "#% increased Attack Speed with Wands", + ["id"] = "explicit.stat_2885144362", + ["text"] = "Adds # to # Lightning Damage to Spells and Attacks", ["type"] = "explicit", }, }, - ["1243_IncreasedAccuracy"] = { - ["AbyssJewel"] = { - ["max"] = 300, - ["min"] = 31, - }, + ["1256_IncreasedAttackSpeed"] = { ["Amulet"] = { - ["max"] = 480, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 300, - ["min"] = 31, + ["max"] = 13, + ["min"] = 7, }, ["Gloves"] = { - ["max"] = 600, - ["min"] = 50, - }, - ["Helmet"] = { - ["max"] = 600, - ["min"] = 50, + ["max"] = 18, + ["min"] = 5, }, ["Quiver"] = { - ["max"] = 600, - ["min"] = 50, + ["max"] = 16, + ["min"] = 5, }, ["Ring"] = { - ["max"] = 480, - ["min"] = 50, + ["max"] = 7, + ["min"] = 3, }, ["Shield"] = { - ["max"] = 480, - ["min"] = 50, + ["max"] = 16, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1243_IncreasedAccuracyForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1256_IncreasedAttackSpeedForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", - ["type"] = "explicit", + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["1243_LightRadiusAndAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "+# to Accuracy Rating", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1244_AccuracyAndCritsForJewel"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 6, + ["1256_IncreasedAttackSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1244_IncreasedAccuracyPercent"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 12, + ["1259_AttackSpeedDoubleDamage"] = { + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["Quiver"] = { - ["max"] = 30, - ["min"] = 12, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 6, + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 21, + ["min"] = 17, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1244_IncreasedAccuracyPercentForJewel"] = { - ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, + ["1259_AttackSpeedKilledRecently"] = { + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, }, - ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["1244_IncreasedAccuracyPercentSupported"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 6, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 8, }, - }, - ["1244_LightRadiusAndAccuracyPercent"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 9, + ["Bow"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 9, + ["Staff"] = { + ["max"] = 21, + ["min"] = 17, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1244_LocalLightRadiusAndAccuracyPercent"] = { + ["1259_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { ["1HAxe"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["1HSword"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["2HSword"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["Staff"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["Wand"] = { - ["max"] = 20, - ["min"] = 9, + ["max"] = 22, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Global Accuracy Rating", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["1259_LocalAttackSpeedAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["1259_LocalAttackSpeedDexterityIntelligence"] = { ["1HAxe"] = { ["max"] = 22, ["min"] = 8, @@ -21659,24 +22198,24 @@ return { ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["2HMace"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["2HSword"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["Claw"] = { ["max"] = 22, @@ -21687,8 +22226,8 @@ return { ["min"] = 8, }, ["Staff"] = { - ["max"] = 31, - ["min"] = 12, + ["max"] = 22, + ["min"] = 8, }, ["Wand"] = { ["max"] = 22, @@ -21696,1184 +22235,1275 @@ return { }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeed"] = { + ["1259_LocalIncreasedAttackSpeed"] = { ["1HAxe"] = { - ["max"] = 32, - ["min"] = 10, + ["max"] = 30, + ["min"] = 5, }, ["1HMace"] = { - ["max"] = 32, + ["max"] = 30, ["min"] = 5, }, ["1HSword"] = { - ["max"] = 32, - ["min"] = 10, + ["max"] = 30, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 32, + ["max"] = 30, ["min"] = 5, }, ["2HAxe"] = { - ["max"] = 49, - ["min"] = 15, + ["max"] = 30, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 49, - ["min"] = 15, + ["max"] = 30, + ["min"] = 5, }, ["2HSword"] = { - ["max"] = 49, - ["min"] = 15, + ["max"] = 30, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 49, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 20, + ["max"] = 30, ["min"] = 5, }, ["Bow"] = { - ["max"] = 49, - ["min"] = 32, + ["max"] = 27, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 32, - ["min"] = 10, - }, - ["Dagger"] = { - ["max"] = 32, + ["max"] = 30, ["min"] = 5, }, - ["Ring"] = { - ["max"] = 16, + ["Dagger"] = { + ["max"] = 30, ["min"] = 5, }, - ["Shield"] = { - ["max"] = 9, - ["min"] = 6, - }, ["Staff"] = { - ["max"] = 49, - ["min"] = 8, + ["max"] = 30, + ["min"] = 5, }, ["Wand"] = { - ["max"] = 32, + ["max"] = 27, ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedAddedChaos"] = { + ["1259_LocalIncreasedAttackSpeedAddedChaos"] = { ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedFasterCasting"] = { + ["1259_LocalIncreasedAttackSpeedFasterAttacks"] = { + ["1HAxe"] = { + ["max"] = 21, + ["min"] = 17, + }, ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 21, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 21, + ["min"] = 17, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 21, + ["min"] = 8, + }, + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["Claw"] = { + ["max"] = 21, + ["min"] = 17, }, ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 21, + ["min"] = 17, }, ["Wand"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedFishing"] = { - ["FishingRod"] = { - ["max"] = 28, - ["min"] = 24, + ["1259_LocalIncreasedAttackSpeedMultistrike"] = { + ["1HAxe"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["1HMace"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["1HSword"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["1HWeapon"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HAxe"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HMace"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HSword"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["Claw"] = { + ["max"] = 21, + ["min"] = 17, + }, + ["Dagger"] = { + ["max"] = 21, + ["min"] = 17, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["1259_LocalIncreasedAttackSpeedOnslaught"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Wand"] = { + ["max"] = 12, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedSpellEcho"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, + ["1259_LocalIncreasedPhysicalDamagePercentAndAttackSpeed"] = { + ["1HAxe"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["1HSword"] = { + ["max"] = 4, + ["min"] = 3, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 4, + ["min"] = 3, }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + ["2HAxe"] = { + ["max"] = 4, + ["min"] = 3, }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 15, + ["2HSword"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Attack Speed", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedSupported"] = { - ["Gloves"] = { - ["max"] = 14, - ["min"] = 7, + ["1261_AttackSpeedWhileDualWieldingForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_4249220643", + ["text"] = "#% increased Attack Speed while Dual Wielding", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["1263_AttackSpeedWithAShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Staff"] = { - ["max"] = 20, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_3805075944", + ["text"] = "#% increased Attack Speed while holding a Shield", ["type"] = "explicit", }, }, - ["1256_IncreasedCastSpeedTwoHandedKilledRecently"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 15, + ["1264_TwoHandedMeleeAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["Staff"] = { - ["max"] = 20, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_1917910910", + ["text"] = "#% increased Attack Speed with Two Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1257_CastSpeedWhileDualWieldingForJewel"] = { + ["1265_OneHandedMeleeAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2382196858", - ["text"] = "#% increased Cast Speed while Dual Wielding", + ["id"] = "explicit.stat_1813451228", + ["text"] = "#% increased Attack Speed with One Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1258_CastSpeedWithAShieldForJewel"] = { + ["1266_AxeAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1612163368", - ["text"] = "#% increased Cast Speed while holding a Shield", + ["id"] = "explicit.stat_3550868361", + ["text"] = "#% increased Attack Speed with Axes", ["type"] = "explicit", }, }, - ["1259_CastSpeedWithAStaffForJewel"] = { + ["1267_StaffAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066542501", - ["text"] = "#% increased Cast Speed while wielding a Staff", + ["id"] = "explicit.stat_1394963553", + ["text"] = "#% increased Attack Speed with Staves", ["type"] = "explicit", }, }, - ["1268_CriticalStrikeChanceSpellsSupported"] = { - ["1HMace"] = { - ["max"] = 82, - ["min"] = 60, - }, - ["1HWeapon"] = { - ["max"] = 82, - ["min"] = 60, - }, - ["Dagger"] = { - ["max"] = 82, - ["min"] = 60, + ["1268_ClawAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 82, - ["min"] = 60, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_1421645223", + ["text"] = "#% increased Attack Speed with Claws", ["type"] = "explicit", }, }, - ["1268_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { - ["2HWeapon"] = { - ["max"] = 82, - ["min"] = 60, + ["1269_DaggerAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 82, - ["min"] = 60, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_2538566497", + ["text"] = "#% increased Attack Speed with Daggers", ["type"] = "explicit", }, }, - ["1268_SpellCritChanceForJewel"] = { + ["1270_MaceAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_2515515064", + ["text"] = "#% increased Attack Speed with Maces or Sceptres", ["type"] = "explicit", }, }, - ["1268_SpellCriticalStrikeChance"] = { - ["1HAxe"] = { - ["max"] = 119, - ["min"] = 30, + ["1271_BowAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["1HMace"] = { - ["max"] = 119, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, - ["1HSword"] = { - ["max"] = 119, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["2HAxe"] = { - ["max"] = 119, - ["min"] = 45, - }, - ["2HMace"] = { - ["max"] = 119, - ["min"] = 45, - }, - ["2HSword"] = { - ["max"] = 119, - ["min"] = 45, - }, - ["2HWeapon"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 119, - ["min"] = 80, - }, - ["Claw"] = { - ["max"] = 119, - ["min"] = 30, - }, - ["Dagger"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Strike Chance for Spells", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, }, - ["1269_AccuracyAndCritsForJewel"] = { + ["1272_SwordAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 8, ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 8, ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_3293699237", + ["text"] = "#% increased Attack Speed with Swords", ["type"] = "explicit", }, }, - ["1269_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { - ["Ring"] = { - ["max"] = 22, - ["min"] = 12, + ["1273_WandAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_3720627346", + ["text"] = "#% increased Attack Speed with Wands", ["type"] = "explicit", }, }, - ["1269_CritChanceForJewel"] = { + ["1278_IncreasedAccuracy"] = { ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 300, + ["min"] = 31, + }, + ["Amulet"] = { + ["max"] = 480, + ["min"] = 50, }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 300, + ["min"] = 31, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["Gloves"] = { + ["max"] = 600, + ["min"] = 50, + }, + ["Helmet"] = { + ["max"] = 600, + ["min"] = 50, + }, + ["Quiver"] = { + ["max"] = 600, + ["min"] = 50, + }, + ["Ring"] = { + ["max"] = 480, + ["min"] = 50, + }, + ["Shield"] = { + ["max"] = 480, + ["min"] = 50, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", ["type"] = "explicit", }, }, - ["1269_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { - ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["1278_IncreasedAccuracyForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", ["type"] = "explicit", }, }, - ["1269_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { - ["Gloves"] = { - ["max"] = 22, - ["min"] = 11, - }, - ["Quiver"] = { - ["max"] = 22, - ["min"] = 11, - }, + ["1278_LightRadiusAndAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_803737631", + ["text"] = "+# to Accuracy Rating", ["type"] = "explicit", }, }, - ["1269_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 9, + ["1279_AccuracyAndCritsForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", }, }, - ["1269_CriticalStrikeChance"] = { - ["Amulet"] = { - ["max"] = 42, - ["min"] = 10, - }, + ["1279_IncreasedAccuracyPercent"] = { ["Gloves"] = { - ["max"] = 60, - ["min"] = 15, + ["max"] = 30, + ["min"] = 12, }, ["Quiver"] = { - ["max"] = 42, - ["min"] = 17, + ["max"] = 30, + ["min"] = 12, }, ["Ring"] = { - ["max"] = 26, - ["min"] = 10, + ["max"] = 30, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Global Critical Strike Chance", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", }, }, - ["1274_CriticalStrikeChanceSupported"] = { - ["1HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["1HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["1HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["1HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["Claw"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["Dagger"] = { - ["max"] = 29, - ["min"] = 22, + ["1279_IncreasedAccuracyPercentForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Wand"] = { - ["max"] = 29, - ["min"] = 22, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", }, }, - ["1274_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { - ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, + ["1279_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 6, }, - ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 29, - ["min"] = 22, + }, + ["1279_LightRadiusAndAccuracyPercent"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 9, }, - ["Staff"] = { - ["max"] = 29, - ["min"] = 22, + ["Ring"] = { + ["max"] = 20, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", }, }, - ["1274_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["1279_LocalLightRadiusAndAccuracyPercent"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 9, + }, ["2HAxe"] = { - ["max"] = 29, - ["min"] = 22, + ["max"] = 20, + ["min"] = 9, }, ["2HMace"] = { - ["max"] = 29, - ["min"] = 22, + ["max"] = 20, + ["min"] = 9, }, ["2HSword"] = { - ["max"] = 29, - ["min"] = 22, + ["max"] = 20, + ["min"] = 9, }, ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, + ["max"] = 20, + ["min"] = 9, }, ["Bow"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["Staff"] = { - ["max"] = 29, - ["min"] = 22, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", + ["max"] = 20, + ["min"] = 9, }, - }, - ["1274_GainEnduranceChargeOnCritUber"] = { - ["1HAxe"] = { + ["Claw"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 9, }, - ["1HWeapon"] = { + ["Dagger"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 9, }, - ["2HAxe"] = { + ["Staff"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 9, }, - ["2HWeapon"] = { + ["Wand"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Global Accuracy Rating", ["type"] = "explicit", }, }, - ["1274_LocalCriticalStrikeChance"] = { + ["1291_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["1HMace"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["2HWeapon"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["Bow"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["Dagger"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 22, + ["min"] = 8, }, ["Staff"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 31, + ["min"] = 12, }, ["Wand"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", - ["type"] = "explicit", + ["max"] = 22, + ["min"] = 8, }, - }, - ["1274_LocalCriticalStrikeChanceAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1274_LocalCriticalStrikeChanceStrengthIntelligence"] = { + ["1291_IncreasedCastSpeed"] = { ["1HAxe"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 10, }, ["1HMace"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 5, }, ["1HSword"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 10, }, ["1HWeapon"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 5, }, ["2HAxe"] = { - ["max"] = 32, + ["max"] = 49, ["min"] = 15, }, ["2HMace"] = { - ["max"] = 32, + ["max"] = 49, ["min"] = 15, }, ["2HSword"] = { - ["max"] = 32, + ["max"] = 49, ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, + ["max"] = 49, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 20, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 32, - ["min"] = 15, + ["max"] = 49, + ["min"] = 32, }, ["Claw"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 10, }, ["Dagger"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 9, + ["min"] = 6, }, ["Staff"] = { - ["max"] = 32, - ["min"] = 15, + ["max"] = 49, + ["min"] = 8, }, ["Wand"] = { ["max"] = 32, - ["min"] = 15, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1274_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["Dagger"] = { - ["max"] = 10, - ["min"] = 8, - }, + ["1291_IncreasedCastSpeedAddedChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2375316951", - ["text"] = "#% increased Critical Strike Chance", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1275_CritChanceWithBowForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1291_IncreasedCastSpeedFasterCasting"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["1275_CriticalStrikeChanceWithBows"] = { - ["Quiver"] = { - ["max"] = 44, - ["min"] = 10, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2091591880", - ["text"] = "#% increased Critical Strike Chance with Bows", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1284_TrapCritChanceForJewel"] = { + ["1291_IncreasedCastSpeedFishing"] = { + ["FishingRod"] = { + ["max"] = 28, + ["min"] = 24, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1192661666", - ["text"] = "#% increased Critical Strike Chance with Traps", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1286_TwoHandedCritChanceForJewel"] = { + ["1291_IncreasedCastSpeedForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 4, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_764295120", - ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1287_TwoHandCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, + ["1291_IncreasedCastSpeedSpellEcho"] = { + ["1HMace"] = { + ["max"] = 20, ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 18, + ["1HWeapon"] = { + ["max"] = 20, ["min"] = 15, }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_252507949", - ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", - ["type"] = "explicit", - }, - }, - ["1288_OneHandedCritChanceForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["Wand"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2381842786", - ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1289_MeleeCritChanceForJewel"] = { - ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["BaseJewel"] = { + ["1291_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { ["max"] = 14, - ["min"] = 10, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1199429645", - ["text"] = "#% increased Melee Critical Strike Chance", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1290_DualWieldingCritChanceForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["1291_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3702513529", - ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1291_FireCritChanceForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["1291_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["Staff"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104796138", - ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["1292_LightningCritChanceForJewel"] = { + ["1292_CastSpeedWhileDualWieldingForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1186596295", - ["text"] = "#% increased Critical Strike Chance with Lightning Skills", + ["id"] = "explicit.stat_2382196858", + ["text"] = "#% increased Cast Speed while Dual Wielding", ["type"] = "explicit", }, }, - ["1293_ColdCritChanceForJewel"] = { + ["1293_CastSpeedWithAShieldForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3337344042", - ["text"] = "#% increased Critical Strike Chance with Cold Skills", + ["id"] = "explicit.stat_1612163368", + ["text"] = "#% increased Cast Speed while holding a Shield", ["type"] = "explicit", }, }, - ["1294_ElementalCritChanceForJewel"] = { + ["1294_CastSpeedWithAStaffForJewel"] = { ["AnyJewel"] = { - ["max"] = 14, - ["min"] = 10, + ["max"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 14, - ["min"] = 10, + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_439950087", - ["text"] = "#% increased Critical Strike Chance with Elemental Skills", + ["id"] = "explicit.stat_2066542501", + ["text"] = "#% increased Cast Speed while wielding a Staff", ["type"] = "explicit", }, }, - ["1298_CritMultiplierForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 12, - ["min"] = 9, + ["1303_CriticalStrikeChanceSpellsSupported"] = { + ["1HMace"] = { + ["max"] = 82, + ["min"] = 60, }, - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 9, + ["1HWeapon"] = { + ["max"] = 82, + ["min"] = 60, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 9, + ["Dagger"] = { + ["max"] = 82, + ["min"] = 60, + }, + ["Wand"] = { + ["max"] = 82, + ["min"] = 60, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", }, }, - ["1298_CriticalMultiplierSupportedTwoHanded"] = { + ["1303_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["2HWeapon"] = { - ["max"] = 29, - ["min"] = 22, + ["max"] = 82, + ["min"] = 60, }, - ["Bow"] = { - ["max"] = 29, - ["min"] = 22, + ["Staff"] = { + ["max"] = 82, + ["min"] = 60, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", }, }, - ["1298_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["1303_SpellCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", ["type"] = "explicit", }, }, - ["1298_CriticalStrikeMultiplier"] = { + ["1303_SpellCriticalStrikeChance"] = { ["1HAxe"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 30, }, ["1HMace"] = { - ["max"] = 38, + ["max"] = 119, ["min"] = 10, }, ["1HSword"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 30, }, ["1HWeapon"] = { - ["max"] = 38, + ["max"] = 119, ["min"] = 10, }, ["2HAxe"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 45, }, ["2HMace"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 45, }, ["2HSword"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 45, }, ["2HWeapon"] = { - ["max"] = 38, + ["max"] = 119, ["min"] = 10, }, - ["Amulet"] = { - ["max"] = 41, - ["min"] = 8, - }, ["Bow"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 80, }, ["Claw"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 119, + ["min"] = 30, }, ["Dagger"] = { - ["max"] = 38, + ["max"] = 119, ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 11, + ["Shield"] = { + ["max"] = 119, + ["min"] = 10, }, - ["Quiver"] = { - ["max"] = 41, - ["min"] = 25, + ["Staff"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Strike Chance for Spells", + ["type"] = "explicit", + }, + }, + ["1304_AccuracyAndCritsForJewel"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", }, + }, + ["1304_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["Ring"] = { - ["max"] = 25, + ["max"] = 22, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1304_CritChanceForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, ["min"] = 8, }, - ["Staff"] = { - ["max"] = 38, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1304_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1304_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["Gloves"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 22, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1304_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1304_CriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 42, ["min"] = 10, }, - ["Wand"] = { - ["max"] = 38, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 15, + }, + ["Quiver"] = { + ["max"] = 42, + ["min"] = 17, + }, + ["Ring"] = { + ["max"] = 26, ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Global Critical Strike Chance", ["type"] = "explicit", }, }, - ["1298_CriticalStrikeMultiplierSupported"] = { + ["1309_CriticalStrikeChanceSupported"] = { ["1HAxe"] = { ["max"] = 29, ["min"] = 22, @@ -22922,322 +23552,314 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["1298_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["1309_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["2HAxe"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 10, + ["2HMace"] = { + ["max"] = 29, + ["min"] = 22, }, - ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, + ["2HSword"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["2HWeapon"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Bow"] = { + ["max"] = 29, + ["min"] = 22, + }, + ["Staff"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "+#% to Global Critical Strike Multiplier", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["129_DelveStrengthGemLevel"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["1309_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["129_PercentageStrengthMaven"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["1309_GainEnduranceChargeOnCritUber"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["1301_SpellCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["1305_CritMultiplierWithBowForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", - ["type"] = "explicit", + ["1309_LocalCriticalStrikeChance"] = { + ["1HAxe"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["1305_CriticalStrikeMultiplierWithBows"] = { - ["Quiver"] = { + ["1HMace"] = { ["max"] = 38, - ["min"] = 8, + ["min"] = 10, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HSword"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1712221299", - ["text"] = "+#% to Critical Strike Multiplier with Bows", + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["130_DelveDexterityGemLevel"] = { + ["1309_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", + ["type"] = "explicit", + }, + }, + ["1309_LocalCriticalStrikeChanceStrengthIntelligence"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 32, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["130_PercentageDexterityMaven"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["1309_LocalIncreasedPhysicalDamagePercentAndCritChance"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["Claw"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", + ["id"] = "explicit.stat_2375316951", + ["text"] = "#% increased Critical Strike Chance", ["type"] = "explicit", }, }, - ["1310_OneHandCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 15, - }, + ["1310_CritChanceWithBowForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_670153687", - ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", ["type"] = "explicit", }, }, - ["1311_MeleeCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["1310_CriticalStrikeChanceWithBows"] = { + ["Quiver"] = { + ["max"] = 44, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2091591880", + ["text"] = "#% increased Critical Strike Chance with Bows", + ["type"] = "explicit", }, + }, + ["1319_TrapCritChanceForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4237442815", - ["text"] = "+#% to Melee Critical Strike Multiplier", + ["id"] = "explicit.stat_1192661666", + ["text"] = "#% increased Critical Strike Chance with Traps", ["type"] = "explicit", }, }, - ["1316_FireCritMultiplierForJewel"] = { + ["1321_TwoHandedCritChanceForJewel"] = { ["AnyJewel"] = { ["max"] = 18, - ["min"] = 15, + ["min"] = 14, }, ["BaseJewel"] = { ["max"] = 18, - ["min"] = 15, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2307547323", - ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", + ["id"] = "explicit.stat_764295120", + ["text"] = "#% increased Critical Strike Chance with Two Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1317_LightningCritMultiplierForJewel"] = { + ["1322_TwoHandCritMultiplierForJewel"] = { ["AnyJewel"] = { ["max"] = 18, ["min"] = 15, @@ -23250,1152 +23872,1278 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2441475928", - ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", + ["id"] = "explicit.stat_252507949", + ["text"] = "+#% to Critical Strike Multiplier with Two Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1318_ColdCritMultiplierForJewel"] = { + ["1323_OneHandedCritChanceForJewel"] = { ["AnyJewel"] = { ["max"] = 18, - ["min"] = 15, + ["min"] = 14, }, ["BaseJewel"] = { ["max"] = 18, - ["min"] = 15, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_915908446", - ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", + ["id"] = "explicit.stat_2381842786", + ["text"] = "#% increased Critical Strike Chance with One Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1319_ElementalCritMultiplierForJewel"] = { + ["1324_MeleeCritChanceForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["max"] = 14, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 12, + ["max"] = 14, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569407745", - ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", + ["id"] = "explicit.stat_1199429645", + ["text"] = "#% increased Melee Critical Strike Chance", ["type"] = "explicit", }, }, - ["131_DelveIntelligenceGemLevel"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["1325_DualWieldingCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3702513529", + ["text"] = "#% increased Attack Critical Strike Chance while Dual Wielding", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["1326_FireCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104796138", + ["text"] = "#% increased Critical Strike Chance with Fire Skills", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["1327_LightningCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", + ["id"] = "explicit.stat_1186596295", + ["text"] = "#% increased Critical Strike Chance with Lightning Skills", ["type"] = "explicit", }, }, - ["131_PercentageIntelligenceMaven"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["1328_ColdCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", + ["id"] = "explicit.stat_3337344042", + ["text"] = "#% increased Critical Strike Chance with Cold Skills", ["type"] = "explicit", }, }, - ["1321_ReducedCriticalStrikeDamageTaken"] = { + ["1329_ElementalCritChanceForJewel"] = { + ["AnyJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 14, + ["min"] = 10, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "explicit.stat_439950087", + ["text"] = "#% increased Critical Strike Chance with Elemental Skills", ["type"] = "explicit", }, }, - ["1321_ReducedExtraDamageFromCrits"] = { - ["Shield"] = { - ["max"] = 60, - ["min"] = 21, + ["1333_CritMultiplierForJewel"] = { + ["AbyssJewel"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 9, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1326_LocalIncreasedPhysicalDamagePercentAndStun"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, + ["1333_CriticalMultiplierSupportedTwoHanded"] = { ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, + ["max"] = 29, + ["min"] = 22, }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 6, + ["Bow"] = { + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1326_StunDurationAndThresholdUber"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, + ["1333_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["max"] = 25, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1326_StunThresholdReduction"] = { + ["1333_CriticalStrikeMultiplier"] = { ["1HAxe"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["1HSword"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["2HAxe"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["2HSword"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, }, - ["Belt"] = { - ["max"] = 17, - ["min"] = 5, + ["Amulet"] = { + ["max"] = 41, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 41, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 8, }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 38, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 38, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["1333_CriticalStrikeMultiplierSupported"] = { ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 29, + ["min"] = 22, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843100721", - ["text"] = "+# to Level of Socketed Gems", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1337_LocalBaseWardAndLife"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1333_LocalIncreasedPhysicalDamagePercentAndCritMulti"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["1337_LocalWard"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "+# to Ward", + ["id"] = "explicit.stat_3556824919", + ["text"] = "+#% to Global Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1339_LocalWardAndStunRecoveryPercent"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1336_SpellCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - }, - ["1339_LocalWardPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Ward", + ["id"] = "explicit.stat_274716455", + ["text"] = "+#% to Critical Strike Multiplier for Spell Damage", ["type"] = "explicit", }, }, - ["1340_WardDelayRecovery"] = { + ["1340_CritMultiplierWithBowForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1130670241", - ["text"] = "#% faster Restoration of Ward", + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", ["type"] = "explicit", }, }, - ["1348_ArmourAndEnergyShield"] = { - ["Belt"] = { - ["max"] = 400, - ["min"] = 105, + ["1340_CriticalStrikeMultiplierWithBows"] = { + ["Quiver"] = { + ["max"] = 38, + ["min"] = 8, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "+# to Armour", + ["id"] = "explicit.stat_1712221299", + ["text"] = "+#% to Critical Strike Multiplier with Bows", ["type"] = "explicit", }, }, - ["1348_PhysicalDamageReductionRating"] = { - ["AbyssJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, + ["1345_OneHandCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 250, - ["min"] = 36, - }, - ["Belt"] = { - ["max"] = 540, - ["min"] = 3, + ["max"] = 18, + ["min"] = 15, }, - ["Ring"] = { - ["max"] = 300, - ["min"] = 80, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "+# to Armour", + ["id"] = "explicit.stat_670153687", + ["text"] = "+#% to Critical Strike Multiplier with One Handed Melee Weapons", ["type"] = "explicit", }, }, - ["1349_LocalBaseArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 375, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, + ["1346_MeleeCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 12, }, - ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", + ["id"] = "explicit.stat_4237442815", + ["text"] = "+#% to Melee Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["1349_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 375, - ["min"] = 5, + ["134_DelveStrengthGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 375, - ["min"] = 5, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1349_LocalBaseArmourAndLife"] = { ["Boots"] = { - ["max"] = 144, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["max"] = 144, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, ["Gloves"] = { - ["max"] = 144, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Helmet"] = { - ["max"] = 144, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1349_LocalBaseArmourEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", ["type"] = "explicit", }, }, - ["1349_LocalBaseArmourEvasionRatingAndLife"] = { + ["134_PercentageStrengthMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", + ["id"] = "explicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", ["type"] = "explicit", }, }, - ["1349_LocalPhysicalDamageReductionRating"] = { - ["Boots"] = { - ["max"] = 500, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 500, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 500, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 500, - ["min"] = 6, + ["1351_FireCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["Shield"] = { - ["max"] = 375, - ["min"] = 50, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "+# to Armour (Local)", + ["id"] = "explicit.stat_2307547323", + ["text"] = "+#% to Critical Strike Multiplier with Fire Skills", ["type"] = "explicit", }, }, - ["1350_ArmourEnergyShieldForJewel"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["1352_LightningCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - }, - ["1350_ArmourEvasionForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_2441475928", + ["text"] = "+#% to Critical Strike Multiplier with Lightning Skills", ["type"] = "explicit", }, }, - ["1350_GlobalPhysicalDamageReductionRatingPercent"] = { - ["Amulet"] = { - ["max"] = 36, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 7, + ["1353_ColdCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 15, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 7, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_915908446", + ["text"] = "+#% to Critical Strike Multiplier with Cold Skills", ["type"] = "explicit", }, }, - ["1350_IncreasedArmourForJewel"] = { + ["1354_ElementalCritMultiplierForJewel"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 15, + ["min"] = 12, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 15, + ["min"] = 12, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_1569407745", + ["text"] = "+#% to Critical Strike Multiplier with Elemental Skills", ["type"] = "explicit", }, }, - ["1350_ReducedPhysicalDamageTakenMaven"] = { - ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["1356_ReducedCriticalStrikeDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "explicit", }, }, - ["1351_LocalIncreasedArmourAndLife"] = { - ["Boots"] = { - ["max"] = 28, - ["min"] = 12, - }, - ["Chest"] = { - ["max"] = 28, - ["min"] = 12, - }, - ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, - }, + ["1356_ReducedExtraDamageFromCrits"] = { ["Shield"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 60, + ["min"] = 21, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "explicit", }, }, - ["1351_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["135_DelveDexterityGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1351_LocalPhysicalDamageReductionRatingPercent"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 26, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", ["type"] = "explicit", }, }, - ["1351_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", + ["135_PercentageDexterityMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1351_LocalPhysicalDamageReductionRatingPercentSuffix"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", ["type"] = "explicit", }, }, - ["1353_EvasionRating"] = { - ["AbyssJewel"] = { - ["max"] = 250, - ["min"] = 36, + ["1361_LocalIncreasedPhysicalDamagePercentAndStun"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 6, }, - ["AnyJewel"] = { - ["max"] = 250, - ["min"] = 36, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Belt"] = { - ["max"] = 180, - ["min"] = 36, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 6, }, - ["Ring"] = { - ["max"] = 180, - ["min"] = 3, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 8, + ["min"] = 6, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "+# to Evasion Rating", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", }, }, - ["1353_EvasionRatingAndEnergyShield"] = { - ["Belt"] = { - ["max"] = 400, - ["min"] = 105, + ["1361_StunDurationAndThresholdUber"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, }, - ["Quiver"] = { - ["max"] = 400, - ["min"] = 105, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "+# to Evasion Rating", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", }, }, - ["1357_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 375, + ["1361_StunThresholdReduction"] = { + ["1HAxe"] = { + ["max"] = 15, ["min"] = 5, }, - ["Chest"] = { - ["max"] = 375, + ["1HMace"] = { + ["max"] = 15, ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 375, + ["1HSword"] = { + ["max"] = 15, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 375, + ["1HWeapon"] = { + ["max"] = 15, ["min"] = 5, }, - ["sign"] = "", - ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 17, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1357_LocalBaseArmourEvasionRatingAndLife"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", + ["id"] = "explicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "explicit", }, }, - ["1357_LocalBaseEvasionRatingAndEnergyShield"] = { + ["136_DelveIntelligenceGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Boots"] = { - ["max"] = 375, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["max"] = 375, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, ["Gloves"] = { - ["max"] = 375, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["Helmet"] = { - ["max"] = 375, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", + ["id"] = "explicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", ["type"] = "explicit", }, }, - ["1357_LocalBaseEvasionRatingAndLife"] = { - ["Boots"] = { - ["max"] = 120, - ["min"] = 14, + ["136_PercentageIntelligenceMaven"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["max"] = 120, - ["min"] = 14, + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 120, - ["min"] = 14, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 120, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "explicit", }, + }, + ["1372_LocalBaseWardAndLife"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", ["type"] = "explicit", }, }, - ["1357_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["1372_LocalWard"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", + ["id"] = "explicit.stat_774059442", + ["text"] = "+# to Ward", ["type"] = "explicit", }, }, - ["1357_LocalEvasionRating"] = { - ["Boots"] = { - ["max"] = 500, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 500, - ["min"] = 6, + ["1374_LocalWardAndStunRecoveryPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 500, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 500, - ["min"] = 6, + }, + ["1374_LocalWardPercent"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 375, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Ward", + ["type"] = "explicit", }, + }, + ["1375_WardDelayRecovery"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "+# to Evasion Rating", }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "+# to Evasion Rating (Local)", + ["id"] = "explicit.stat_1130670241", + ["text"] = "#% faster Restoration of Ward", ["type"] = "explicit", }, }, - ["1358_ArmourEvasionForJewel"] = { + ["137_LocalIncreaseSocketedGemLevel"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_2843100721", + ["text"] = "+# to Level of Socketed Gems", ["type"] = "explicit", }, }, - ["1358_EvasionEnergyShieldForJewel"] = { + ["1383_ArmourAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 400, + ["min"] = 105, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", ["type"] = "explicit", }, }, - ["1358_GlobalEvasionRatingPercent"] = { - ["Amulet"] = { - ["max"] = 36, - ["min"] = 4, + ["1383_PhysicalDamageReductionRating"] = { + ["AbyssJewel"] = { + ["max"] = 250, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 250, + ["min"] = 36, }, ["Belt"] = { - ["max"] = 15, - ["min"] = 7, + ["max"] = 540, + ["min"] = 3, }, ["Ring"] = { - ["max"] = 15, - ["min"] = 7, + ["max"] = 300, + ["min"] = 80, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_809229260", + ["text"] = "+# to Armour", ["type"] = "explicit", }, }, - ["1358_IncreasedEvasionForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["1384_LocalBaseArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 14, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", ["type"] = "explicit", }, }, - ["1359_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["1384_LocalBaseArmourAndEvasionRating"] = { ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["max"] = 375, + ["min"] = 5, }, ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["max"] = 375, + ["min"] = 5, }, ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["max"] = 375, + ["min"] = 5, }, ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["max"] = 375, + ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", + ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", ["type"] = "explicit", }, }, - ["1359_LocalEvasionRatingIncreasePercent"] = { + ["1384_LocalBaseArmourAndLife"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 144, + ["min"] = 20, }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["max"] = 144, + ["min"] = 20, }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 144, + ["min"] = 20, }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 144, + ["min"] = 20, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 26, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", + ["type"] = "explicit", }, + }, + ["1384_LocalBaseArmourEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", + ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", ["type"] = "explicit", }, }, - ["1359_LocalEvasionRatingIncreasePercentSuffix"] = { + ["1384_LocalBaseArmourEvasionRatingAndLife"] = { ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", + ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", ["type"] = "explicit", }, }, - ["1359_LocalIncreasedEvasionAndLife"] = { + ["1384_LocalPhysicalDamageReductionRating"] = { ["Boots"] = { - ["max"] = 28, - ["min"] = 12, + ["max"] = 500, + ["min"] = 6, }, ["Chest"] = { - ["max"] = 28, - ["min"] = 12, + ["max"] = 500, + ["min"] = 6, }, ["Gloves"] = { - ["max"] = 28, - ["min"] = 12, + ["max"] = 500, + ["min"] = 6, }, ["Helmet"] = { - ["max"] = 28, - ["min"] = 12, + ["max"] = 500, + ["min"] = 6, }, ["Shield"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 375, + ["min"] = 50, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Evasion Rating", + ["overrideModLine"] = "+# to Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_3484657501", + ["text"] = "+# to Armour (Local)", ["type"] = "explicit", }, }, - ["1361_LocalArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, + ["1385_ArmourEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + }, + ["1385_ArmourEvasionForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 26, + }, + ["1385_GlobalPhysicalDamageReductionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 7, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, }, - ["1361_LocalArmourAndEnergyShieldAndStunRecovery"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["1385_IncreasedArmourForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, }, - ["1361_LocalArmourAndEnergyShieldSuffix"] = { + ["1385_ReducedPhysicalDamageTakenMaven"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, + }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, }, - ["1361_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["1386_LocalIncreasedArmourAndLife"] = { ["Boots"] = { ["max"] = 28, ["min"] = 12, @@ -24418,15 +25166,42 @@ return { }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Energy Shield", + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield (Local)", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1386_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, }, - ["1362_LocalArmourAndEvasion"] = { + ["1386_LocalPhysicalDamageReductionRatingPercent"] = { ["Boots"] = { ["max"] = 100, ["min"] = 15, @@ -24449,24 +25224,515 @@ return { }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLine"] = "#% increased Armour and Evasion", + ["overrideModLine"] = "#% increased Armour", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion (Local)", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, }, - ["1362_LocalArmourAndEvasionAndStunRecovery"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["1386_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", }, - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", }, - ["Gloves"] = { + }, + ["1386_LocalPhysicalDamageReductionRatingPercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1388_EvasionRating"] = { + ["AbyssJewel"] = { + ["max"] = 250, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 250, + ["min"] = 36, + }, + ["Belt"] = { + ["max"] = 180, + ["min"] = 36, + }, + ["Ring"] = { + ["max"] = 180, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1388_EvasionRatingAndEnergyShield"] = { + ["Belt"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["Quiver"] = { + ["max"] = 400, + ["min"] = 105, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "+# to Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1392_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1392_LocalBaseArmourEvasionRatingAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1392_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 375, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1392_LocalBaseEvasionRatingAndLife"] = { + ["Boots"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 120, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1392_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1392_LocalEvasionRating"] = { + ["Boots"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 500, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 375, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "+# to Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "+# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1393_ArmourEvasionForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1393_EvasionEnergyShieldForJewel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1393_GlobalEvasionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 36, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 7, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1393_IncreasedEvasionForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1394_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1394_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"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1394_LocalEvasionRatingIncreasePercentSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1394_LocalIncreasedEvasionAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Evasion Rating", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1396_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"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1396_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1396_LocalArmourAndEnergyShieldSuffix"] = { + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1396_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Boots"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 28, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Energy Shield", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield (Local)", + ["type"] = "explicit", + }, + }, + ["1397_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"] = 26, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLine"] = "#% increased Armour and Evasion", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion (Local)", + ["type"] = "explicit", + }, + }, + ["1397_LocalArmourAndEvasionAndStunRecovery"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { ["max"] = 42, ["min"] = 6, }, @@ -24484,7 +25750,7 @@ return { ["type"] = "explicit", }, }, - ["1362_LocalArmourAndEvasionSuffix"] = { + ["1397_LocalArmourAndEvasionSuffix"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Armour and Evasion", @@ -24495,7 +25761,7 @@ return { ["type"] = "explicit", }, }, - ["1362_LocalIncreasedArmourAndEvasionAndLife"] = { + ["1397_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { ["max"] = 28, ["min"] = 12, @@ -24526,7 +25792,7 @@ return { ["type"] = "explicit", }, }, - ["1363_LocalEvasionAndEnergyShield"] = { + ["1398_LocalEvasionAndEnergyShield"] = { ["Boots"] = { ["max"] = 74, ["min"] = 26, @@ -24557,7 +25823,7 @@ return { ["type"] = "explicit", }, }, - ["1363_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["1398_LocalEvasionAndEnergyShieldAndStunRecovery"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Evasion and Energy Shield", @@ -24568,7 +25834,7 @@ return { ["type"] = "explicit", }, }, - ["1363_LocalEvasionAndEnergyShieldSuffix"] = { + ["1398_LocalEvasionAndEnergyShieldSuffix"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Evasion and Energy Shield", @@ -24579,7 +25845,7 @@ return { ["type"] = "explicit", }, }, - ["1363_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["1398_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 21, ["min"] = 12, @@ -24610,7 +25876,7 @@ return { ["type"] = "explicit", }, }, - ["1364_LocalArmourAndEvasionAndEnergyShield"] = { + ["1399_LocalArmourAndEvasionAndEnergyShield"] = { ["Boots"] = { ["max"] = 100, ["min"] = 27, @@ -24637,7 +25903,7 @@ return { ["type"] = "explicit", }, }, - ["1364_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["1399_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { ["max"] = 42, ["min"] = 6, @@ -24664,7 +25930,7 @@ return { ["type"] = "explicit", }, }, - ["1364_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { + ["1399_LocalArmourAndEvasionAndEnergyShieldSuffix"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Armour, Evasion and Energy Shield", @@ -24675,7 +25941,7 @@ return { ["type"] = "explicit", }, }, - ["1364_LocalIncreasedDefencesAndLife"] = { + ["1399_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { ["max"] = 28, ["min"] = 12, @@ -24706,7 +25972,7 @@ return { ["type"] = "explicit", }, }, - ["1366_ArmourAndEnergyShield"] = { + ["1401_ArmourAndEnergyShield"] = { ["Belt"] = { ["max"] = 35, ["min"] = 11, @@ -24720,7 +25986,7 @@ return { ["type"] = "explicit", }, }, - ["1366_EnergyShield"] = { + ["1401_EnergyShield"] = { ["AbyssJewel"] = { ["max"] = 40, ["min"] = 21, @@ -24750,7 +26016,7 @@ return { ["type"] = "explicit", }, }, - ["1366_EnergyShieldAndDegenGracePeriod"] = { + ["1401_EnergyShieldAndDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -24760,7 +26026,7 @@ return { ["type"] = "explicit", }, }, - ["1366_EnergyShieldAndPercent"] = { + ["1401_EnergyShieldAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -24770,7 +26036,7 @@ return { ["type"] = "explicit", }, }, - ["1366_EnergyShieldAndRegen"] = { + ["1401_EnergyShieldAndRegen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -24780,7 +26046,7 @@ return { ["type"] = "explicit", }, }, - ["1366_EvasionRatingAndEnergyShield"] = { + ["1401_EvasionRatingAndEnergyShield"] = { ["Belt"] = { ["max"] = 35, ["min"] = 11, @@ -24798,7 +26064,7 @@ return { ["type"] = "explicit", }, }, - ["1366_IncreasedEnergyShieldForJewel"] = { + ["1401_IncreasedEnergyShieldForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -24808,7 +26074,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseArmourAndEnergyShield"] = { + ["1402_LocalBaseArmourAndEnergyShield"] = { ["Boots"] = { ["max"] = 80, ["min"] = 3, @@ -24835,7 +26101,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseArmourEnergyShieldAndLife"] = { + ["1402_LocalBaseArmourEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to maximum Energy Shield", @@ -24846,7 +26112,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseEnergyShieldAndLife"] = { + ["1402_LocalBaseEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 30, ["min"] = 8, @@ -24873,7 +26139,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseEnergyShieldAndMana"] = { + ["1402_LocalBaseEnergyShieldAndMana"] = { ["Boots"] = { ["max"] = 30, ["min"] = 8, @@ -24900,7 +26166,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseEvasionRatingAndEnergyShield"] = { + ["1402_LocalBaseEvasionRatingAndEnergyShield"] = { ["Boots"] = { ["max"] = 80, ["min"] = 3, @@ -24927,7 +26193,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["1402_LocalBaseEvasionRatingEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to maximum Energy Shield", @@ -24938,7 +26204,7 @@ return { ["type"] = "explicit", }, }, - ["1367_LocalEnergyShield"] = { + ["1402_LocalEnergyShield"] = { ["Boots"] = { ["max"] = 100, ["min"] = 3, @@ -24969,7 +26235,7 @@ return { ["type"] = "explicit", }, }, - ["1368_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["1403_LocalEnergyShieldAndStunRecoveryPercent"] = { ["Boots"] = { ["max"] = 42, ["min"] = 6, @@ -24996,7 +26262,7 @@ return { ["type"] = "explicit", }, }, - ["1368_LocalEnergyShieldPercent"] = { + ["1403_LocalEnergyShieldPercent"] = { ["Boots"] = { ["max"] = 100, ["min"] = 11, @@ -25027,7 +26293,7 @@ return { ["type"] = "explicit", }, }, - ["1368_LocalEnergyShieldPercentSuffix"] = { + ["1403_LocalEnergyShieldPercentSuffix"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Energy Shield", @@ -25038,7 +26304,7 @@ return { ["type"] = "explicit", }, }, - ["1368_LocalIncreasedEnergyShieldAndLife"] = { + ["1403_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 28, ["min"] = 12, @@ -25069,7 +26335,7 @@ return { ["type"] = "explicit", }, }, - ["1369_ArmourEnergyShieldForJewel"] = { + ["1404_ArmourEnergyShieldForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25079,7 +26345,7 @@ return { ["type"] = "explicit", }, }, - ["1369_EnergyShieldAndManaForJewel"] = { + ["1404_EnergyShieldAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25089,7 +26355,7 @@ return { ["type"] = "explicit", }, }, - ["1369_EnergyShieldAndPercent"] = { + ["1404_EnergyShieldAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25099,7 +26365,7 @@ return { ["type"] = "explicit", }, }, - ["1369_EnergyShieldForJewel"] = { + ["1404_EnergyShieldForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -25117,7 +26383,7 @@ return { ["type"] = "explicit", }, }, - ["1369_EvasionEnergyShieldForJewel"] = { + ["1404_EvasionEnergyShieldForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25127,7 +26393,7 @@ return { ["type"] = "explicit", }, }, - ["1369_GlobalEnergyShieldPercent"] = { + ["1404_GlobalEnergyShieldPercent"] = { ["Amulet"] = { ["max"] = 22, ["min"] = 2, @@ -25149,7 +26415,7 @@ return { ["type"] = "explicit", }, }, - ["1369_LifeAndEnergyShieldForJewel"] = { + ["1404_LifeAndEnergyShieldForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25159,7 +26425,7 @@ return { ["type"] = "explicit", }, }, - ["1370_EnergyShieldDelay"] = { + ["1405_EnergyShieldDelay"] = { ["Boots"] = { ["max"] = 66, ["min"] = 27, @@ -25189,7 +26455,7 @@ return { ["type"] = "explicit", }, }, - ["1370_EnergyShieldDelayForJewel"] = { + ["1405_EnergyShieldDelayForJewel"] = { ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -25207,7 +26473,7 @@ return { ["type"] = "explicit", }, }, - ["1373_EnergyShieldRechargeRateForJewel"] = { + ["1408_EnergyShieldRechargeRateForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -25225,7 +26491,7 @@ return { ["type"] = "explicit", }, }, - ["1373_EnergyShieldRegeneration"] = { + ["1408_EnergyShieldRegeneration"] = { ["Boots"] = { ["max"] = 38, ["min"] = 9, @@ -25251,7 +26517,7 @@ return { ["type"] = "explicit", }, }, - ["1373_EnergyShieldRegenerationPerMinuteMaven"] = { + ["1408_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 15, @@ -25265,7 +26531,7 @@ return { ["type"] = "explicit", }, }, - ["1376_EnergyShieldRecoveryRate"] = { + ["1411_EnergyShieldRecoveryRate"] = { ["Belt"] = { ["max"] = 12, ["min"] = 7, @@ -25283,7 +26549,7 @@ return { ["type"] = "explicit", }, }, - ["1376_EnergyShieldRecoveryRateMaven"] = { + ["1411_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 15, ["min"] = 12, @@ -25297,7 +26563,7 @@ return { ["type"] = "explicit", }, }, - ["1377_AbyssJewelLife"] = { + ["1412_AbyssJewelLife"] = { ["AbyssJewel"] = { ["max"] = 40, ["min"] = 21, @@ -25315,7 +26581,7 @@ return { ["type"] = "explicit", }, }, - ["1377_BaseLifeAndMana"] = { + ["1412_BaseLifeAndMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25325,7 +26591,7 @@ return { ["type"] = "explicit", }, }, - ["1377_BaseLifeAndManaDegenGracePeriod"] = { + ["1412_BaseLifeAndManaDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25335,7 +26601,7 @@ return { ["type"] = "explicit", }, }, - ["1377_BaseLifeAndManaRegen"] = { + ["1412_BaseLifeAndManaRegen"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 28, @@ -25373,7 +26639,7 @@ return { ["type"] = "explicit", }, }, - ["1377_IncreasedLife"] = { + ["1412_IncreasedLife"] = { ["Amulet"] = { ["max"] = 55, ["min"] = 15, @@ -25419,7 +26685,7 @@ return { ["type"] = "explicit", }, }, - ["1377_IncreasedLifeAndPercent"] = { + ["1412_IncreasedLifeAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25429,7 +26695,7 @@ return { ["type"] = "explicit", }, }, - ["1377_IncreasedLifeForJewel"] = { + ["1412_IncreasedLifeForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25439,7 +26705,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LifeAndManaForJewel"] = { + ["1412_LifeAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25449,7 +26715,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LifeAndPercentLife"] = { + ["1412_LifeAndPercentLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25459,7 +26725,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseArmourAndLife"] = { + ["1412_LocalBaseArmourAndLife"] = { ["Boots"] = { ["max"] = 38, ["min"] = 18, @@ -25485,7 +26751,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseArmourEnergyShieldAndLife"] = { + ["1412_LocalBaseArmourEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25495,7 +26761,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseArmourEvasionRatingAndLife"] = { + ["1412_LocalBaseArmourEvasionRatingAndLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25505,7 +26771,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseEnergyShieldAndLife"] = { + ["1412_LocalBaseEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 38, ["min"] = 18, @@ -25531,7 +26797,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseEvasionRatingAndLife"] = { + ["1412_LocalBaseEvasionRatingAndLife"] = { ["Boots"] = { ["max"] = 38, ["min"] = 18, @@ -25557,7 +26823,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseEvasionRatingEnergyShieldAndLife"] = { + ["1412_LocalBaseEvasionRatingEnergyShieldAndLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25567,7 +26833,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalBaseWardAndLife"] = { + ["1412_LocalBaseWardAndLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25577,7 +26843,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["1412_LocalIncreasedArmourAndEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25607,7 +26873,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedArmourAndEvasionAndLife"] = { + ["1412_LocalIncreasedArmourAndEvasionAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25637,7 +26903,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedArmourAndLife"] = { + ["1412_LocalIncreasedArmourAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25667,7 +26933,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedDefencesAndLife"] = { + ["1412_LocalIncreasedDefencesAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25697,7 +26963,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedEnergyShieldAndLife"] = { + ["1412_LocalIncreasedEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25727,7 +26993,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["1412_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { ["Boots"] = { ["max"] = 14, ["min"] = 8, @@ -25757,7 +27023,7 @@ return { ["type"] = "explicit", }, }, - ["1377_LocalIncreasedEvasionAndLife"] = { + ["1412_LocalIncreasedEvasionAndLife"] = { ["Boots"] = { ["max"] = 26, ["min"] = 8, @@ -25787,7 +27053,7 @@ return { ["type"] = "explicit", }, }, - ["1379_IncreasedLifeAndPercent"] = { + ["1414_IncreasedLifeAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25797,7 +27063,7 @@ return { ["type"] = "explicit", }, }, - ["1379_LifeAndEnergyShieldForJewel"] = { + ["1414_LifeAndEnergyShieldForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25807,7 +27073,7 @@ return { ["type"] = "explicit", }, }, - ["1379_LifeAndPercentLife"] = { + ["1414_LifeAndPercentLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25817,7 +27083,7 @@ return { ["type"] = "explicit", }, }, - ["1379_MaximumLifeIncreasePercent"] = { + ["1414_MaximumLifeIncreasePercent"] = { ["Belt"] = { ["max"] = 10, ["min"] = 3, @@ -25839,7 +27105,7 @@ return { ["type"] = "explicit", }, }, - ["1379_PercentIncreasedLifeForJewel"] = { + ["1414_PercentIncreasedLifeForJewel"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 5, @@ -25857,7 +27123,7 @@ return { ["type"] = "explicit", }, }, - ["1379_PercentageLifeAndMana"] = { + ["1414_PercentageLifeAndMana"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -25871,7 +27137,7 @@ return { ["type"] = "explicit", }, }, - ["1379_PercentageLifeAndManaForJewel"] = { + ["1414_PercentageLifeAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -25881,51 +27147,7 @@ return { ["type"] = "explicit", }, }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, - ["137_LocalIncreaseSocketedFireGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, - ["1382_BaseManaAndLifeRegen"] = { + ["1417_BaseManaAndLifeRegen"] = { ["Amulet"] = { ["max"] = 33.3, ["min"] = 15, @@ -25963,7 +27185,7 @@ return { ["type"] = "explicit", }, }, - ["1382_LifeRegeneration"] = { + ["1417_LifeRegeneration"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 9, @@ -25997,7 +27219,7 @@ return { ["type"] = "explicit", }, }, - ["1382_LifeRegenerationAndPercent"] = { + ["1417_LifeRegenerationAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26007,7 +27229,7 @@ return { ["type"] = "explicit", }, }, - ["1383_BaseManaAndLifeDegenGracePeriod"] = { + ["1418_BaseManaAndLifeDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26017,7 +27239,7 @@ return { ["type"] = "explicit", }, }, - ["1383_LifeDegenerationAndPercentGracePeriod"] = { + ["1418_LifeDegenerationAndPercentGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26027,7 +27249,7 @@ return { ["type"] = "explicit", }, }, - ["1383_LifeDegenerationGracePeriod"] = { + ["1418_LifeDegenerationGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26037,7 +27259,7 @@ return { ["type"] = "explicit", }, }, - ["1385_LifeRegenerationRate"] = { + ["1420_LifeRegenerationRate"] = { ["Boots"] = { ["max"] = 21, ["min"] = 5, @@ -26063,7 +27285,7 @@ return { ["type"] = "explicit", }, }, - ["1386_LifeRecoveryRate"] = { + ["1421_LifeRecoveryRate"] = { ["Belt"] = { ["max"] = 12, ["min"] = 7, @@ -26081,7 +27303,7 @@ return { ["type"] = "explicit", }, }, - ["1386_LifeRecoveryRateMaven"] = { + ["1421_LifeRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 15, ["min"] = 12, @@ -26095,7 +27317,7 @@ return { ["type"] = "explicit", }, }, - ["1387_AbyssJewelMana"] = { + ["1422_AbyssJewelMana"] = { ["AbyssJewel"] = { ["max"] = 40, ["min"] = 21, @@ -26113,7 +27335,7 @@ return { ["type"] = "explicit", }, }, - ["1387_BaseLifeAndMana"] = { + ["1422_BaseLifeAndMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26123,7 +27345,7 @@ return { ["type"] = "explicit", }, }, - ["1387_BaseManaAndLifeDegenGracePeriod"] = { + ["1422_BaseManaAndLifeDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26133,7 +27355,7 @@ return { ["type"] = "explicit", }, }, - ["1387_BaseManaAndLifeRegen"] = { + ["1422_BaseManaAndLifeRegen"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 28, @@ -26171,7 +27393,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedMana"] = { + ["1422_IncreasedMana"] = { ["1HAxe"] = { ["max"] = 74, ["min"] = 35, @@ -26269,7 +27491,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndBaseCost"] = { + ["1422_IncreasedManaAndBaseCost"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26279,7 +27501,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndCost"] = { + ["1422_IncreasedManaAndCost"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26289,7 +27511,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndCostNew"] = { + ["1422_IncreasedManaAndCostNew"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26299,7 +27521,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndDegenGracePeriod"] = { + ["1422_IncreasedManaAndDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26309,7 +27531,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndOnHit"] = { + ["1422_IncreasedManaAndOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26319,7 +27541,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndPercent"] = { + ["1422_IncreasedManaAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26329,7 +27551,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndRegen"] = { + ["1422_IncreasedManaAndRegen"] = { ["Amulet"] = { ["max"] = 55, ["min"] = 26, @@ -26347,7 +27569,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaAndReservation"] = { + ["1422_IncreasedManaAndReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26357,7 +27579,7 @@ return { ["type"] = "explicit", }, }, - ["1387_IncreasedManaForJewel"] = { + ["1422_IncreasedManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26367,7 +27589,7 @@ return { ["type"] = "explicit", }, }, - ["1387_LifeAndManaForJewel"] = { + ["1422_LifeAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26377,7 +27599,7 @@ return { ["type"] = "explicit", }, }, - ["1387_LocalBaseEnergyShieldAndMana"] = { + ["1422_LocalBaseEnergyShieldAndMana"] = { ["Boots"] = { ["max"] = 25, ["min"] = 11, @@ -26403,7 +27625,7 @@ return { ["type"] = "explicit", }, }, - ["1387_ManaAndDamageTakenGoesToManaPercent"] = { + ["1422_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { ["max"] = 55, ["min"] = 26, @@ -26421,7 +27643,7 @@ return { ["type"] = "explicit", }, }, - ["1387_ManaAndManaCostPercent"] = { + ["1422_ManaAndManaCostPercent"] = { ["Amulet"] = { ["max"] = 55, ["min"] = 26, @@ -26439,7 +27661,7 @@ return { ["type"] = "explicit", }, }, - ["1387_MinionDamageOnWeaponAndMana"] = { + ["1422_MinionDamageOnWeaponAndMana"] = { ["1HWeapon"] = { ["max"] = 45, ["min"] = 17, @@ -26457,7 +27679,7 @@ return { ["type"] = "explicit", }, }, - ["1387_TwoHandWeaponSpellDamageAndMana"] = { + ["1422_TwoHandWeaponSpellDamageAndMana"] = { ["2HWeapon"] = { ["max"] = 64, ["min"] = 26, @@ -26475,7 +27697,7 @@ return { ["type"] = "explicit", }, }, - ["1387_WeaponSpellDamageAndMana"] = { + ["1422_WeaponSpellDamageAndMana"] = { ["1HMace"] = { ["max"] = 45, ["min"] = 17, @@ -26501,7 +27723,7 @@ return { ["type"] = "explicit", }, }, - ["1388_EnergyShieldAndManaForJewel"] = { + ["1423_EnergyShieldAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26511,7 +27733,7 @@ return { ["type"] = "explicit", }, }, - ["1388_IncreasedManaAndPercent"] = { + ["1423_IncreasedManaAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26521,7 +27743,7 @@ return { ["type"] = "explicit", }, }, - ["1388_MaximumManaIncreasePercent"] = { + ["1423_MaximumManaIncreasePercent"] = { ["Chest"] = { ["max"] = 18, ["min"] = 9, @@ -26543,7 +27765,7 @@ return { ["type"] = "explicit", }, }, - ["1388_MaximumManaIncreasePercentMaven"] = { + ["1423_MaximumManaIncreasePercentMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 12, @@ -26557,7 +27779,7 @@ return { ["type"] = "explicit", }, }, - ["1388_MaximumManaIncreaseShaper"] = { + ["1423_MaximumManaIncreaseShaper"] = { ["Chest"] = { ["max"] = 18, ["min"] = 9, @@ -26571,7 +27793,7 @@ return { ["type"] = "explicit", }, }, - ["1388_PercentIncreasedManaForJewel"] = { + ["1423_PercentIncreasedManaForJewel"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 8, @@ -26589,7 +27811,7 @@ return { ["type"] = "explicit", }, }, - ["1388_PercentageLifeAndMana"] = { + ["1423_PercentageLifeAndMana"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -26603,7 +27825,7 @@ return { ["type"] = "explicit", }, }, - ["1388_PercentageLifeAndManaForJewel"] = { + ["1423_PercentageLifeAndManaForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26613,7 +27835,7 @@ return { ["type"] = "explicit", }, }, - ["1389_BaseManaRegeneration"] = { + ["1424_BaseManaRegeneration"] = { ["1HMace"] = { ["max"] = 0.4, ["min"] = 0.3, @@ -26651,51 +27873,7 @@ return { ["type"] = "explicit", }, }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, - ["138_LocalIncreaseSocketedColdGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, - ["1390_AddedManaRegeneration"] = { + ["1425_AddedManaRegeneration"] = { ["AbyssJewel"] = { ["max"] = 4, ["min"] = 1.1, @@ -26717,7 +27895,7 @@ return { ["type"] = "explicit", }, }, - ["1390_AddedManaRegenerationMaven"] = { + ["1425_AddedManaRegenerationMaven"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -26731,7 +27909,7 @@ return { ["type"] = "explicit", }, }, - ["1390_BaseLifeAndManaRegen"] = { + ["1425_BaseLifeAndManaRegen"] = { ["Amulet"] = { ["max"] = 5.3, ["min"] = 2, @@ -26769,7 +27947,7 @@ return { ["type"] = "explicit", }, }, - ["1390_IncreasedManaAndRegen"] = { + ["1425_IncreasedManaAndRegen"] = { ["Amulet"] = { ["max"] = 5.3, ["min"] = 2, @@ -26787,7 +27965,7 @@ return { ["type"] = "explicit", }, }, - ["1391_BaseLifeAndManaDegenGracePeriod"] = { + ["1426_BaseLifeAndManaDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26797,7 +27975,7 @@ return { ["type"] = "explicit", }, }, - ["1391_IncreasedManaAndDegenGracePeriod"] = { + ["1426_IncreasedManaAndDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26807,7 +27985,7 @@ return { ["type"] = "explicit", }, }, - ["1391_ManaDegenerationGracePeriod"] = { + ["1426_ManaDegenerationGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -26817,7 +27995,7 @@ return { ["type"] = "explicit", }, }, - ["1392_IncreasedManaRegenForJewel"] = { + ["1427_IncreasedManaRegenForJewel"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 12, @@ -26835,7 +28013,7 @@ return { ["type"] = "explicit", }, }, - ["1392_ManaRegeneration"] = { + ["1427_ManaRegeneration"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 20, @@ -26913,7 +28091,7 @@ return { ["type"] = "explicit", }, }, - ["1392_ManaRegenerationMaven"] = { + ["1427_ManaRegenerationMaven"] = { ["Helmet"] = { ["max"] = 70, ["min"] = 56, @@ -26927,7 +28105,7 @@ return { ["type"] = "explicit", }, }, - ["1392_SpellDamageAndManaRegenerationRate"] = { + ["1427_SpellDamageAndManaRegenerationRate"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 7, @@ -26989,7 +28167,7 @@ return { ["type"] = "explicit", }, }, - ["1394_ManaRecoveryRate"] = { + ["1429_ManaRecoveryRate"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 8, @@ -27011,7 +28189,7 @@ return { ["type"] = "explicit", }, }, - ["1394_ManaRecoveryRateMaven"] = { + ["1429_ManaRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 15, ["min"] = 12, @@ -27025,7 +28203,7 @@ return { ["type"] = "explicit", }, }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["142_LocalIncreaseSocketedFireGemLevel"] = { ["1HWeapon"] = { ["max"] = 2, ["min"] = 1, @@ -27050,12 +28228,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", ["type"] = "explicit", }, }, - ["139_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["142_LocalIncreaseSocketedFireGemLevelMaven"] = { ["Boots"] = { ["max"] = 2, ["min"] = 2, @@ -27064,12 +28242,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", + ["id"] = "explicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", ["type"] = "explicit", }, }, - ["1400_ItemFoundQuantityIncrease"] = { + ["1435_ItemFoundQuantityIncrease"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 4, @@ -27083,7 +28261,7 @@ return { ["type"] = "explicit", }, }, - ["1404_ItemFoundRarityIncrease"] = { + ["1439_ItemFoundRarityIncrease"] = { ["Amulet"] = { ["max"] = 26, ["min"] = 6, @@ -27113,7 +28291,7 @@ return { ["type"] = "explicit", }, }, - ["1404_ItemFoundRarityIncreasePrefix"] = { + ["1439_ItemFoundRarityIncreasePrefix"] = { ["Amulet"] = { ["max"] = 28, ["min"] = 8, @@ -27143,7 +28321,7 @@ return { ["type"] = "explicit", }, }, - ["1404_ItemRarityForJewel"] = { + ["1439_ItemRarityForJewel"] = { ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -27161,7 +28339,7 @@ return { ["type"] = "explicit", }, }, - ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["143_LocalIncreaseSocketedColdGemLevel"] = { ["1HWeapon"] = { ["max"] = 2, ["min"] = 1, @@ -27186,12 +28364,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", ["type"] = "explicit", }, }, - ["140_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["143_LocalIncreaseSocketedColdGemLevelMaven"] = { ["Boots"] = { ["max"] = 2, ["min"] = 2, @@ -27200,12 +28378,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", + ["id"] = "explicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", ["type"] = "explicit", }, }, - ["1411_ExperienceIncrease"] = { + ["1446_ExperienceIncrease"] = { ["Ring"] = { ["max"] = 3, ["min"] = 2, @@ -27219,7 +28397,51 @@ return { ["type"] = "explicit", }, }, - ["1416_GlobalIncreaseSpellSkillGemLevel"] = { + ["144_LocalIncreaseSocketedLightningGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, + ["144_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, + ["1451_GlobalIncreaseSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -27253,7 +28475,7 @@ return { ["type"] = "explicit", }, }, - ["1417_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1452_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -27291,7 +28513,7 @@ return { ["type"] = "explicit", }, }, - ["1418_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["1453_GlobalIncreaseFireSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -27329,7 +28551,7 @@ return { ["type"] = "explicit", }, }, - ["1419_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1454_GlobalIncreaseColdSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -27367,7 +28589,7 @@ return { ["type"] = "explicit", }, }, - ["1420_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1455_GlobalIncreaseLightningSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -27405,7 +28627,7 @@ return { ["type"] = "explicit", }, }, - ["1421_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["1456_GlobalIncreaseChaosSpellSkillGemLevel"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -27439,7 +28661,7 @@ return { ["type"] = "explicit", }, }, - ["1422_GlobalIncreaseMinionSpellSkillGemLevel"] = { + ["1457_GlobalIncreaseMinionSpellSkillGemLevel"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -27465,7 +28687,7 @@ return { ["type"] = "explicit", }, }, - ["1424_MinionGlobalSkillLevel"] = { + ["1459_MinionGlobalSkillLevel"] = { ["Boots"] = { ["max"] = 2, ["min"] = 1, @@ -27479,7 +28701,51 @@ return { ["type"] = "explicit", }, }, - ["1427_AllResistances"] = { + ["145_LocalIncreaseSocketedChaosGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, + ["145_LocalIncreaseSocketedChaosGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "explicit", + }, + }, + ["1462_AllResistances"] = { ["Amulet"] = { ["max"] = 18, ["min"] = 3, @@ -27509,7 +28775,7 @@ return { ["type"] = "explicit", }, }, - ["1427_AllResistancesForJewel"] = { + ["1462_AllResistancesForJewel"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 8, @@ -27531,7 +28797,7 @@ return { ["type"] = "explicit", }, }, - ["1427_AllResistancesMaven"] = { + ["1462_AllResistancesMaven"] = { ["Belt"] = { ["max"] = 22, ["min"] = 19, @@ -27549,7 +28815,7 @@ return { ["type"] = "explicit", }, }, - ["1427_AllResistancesMinionResistances"] = { + ["1462_AllResistancesMinionResistances"] = { ["Amulet"] = { ["max"] = 9, ["min"] = 4, @@ -27567,17 +28833,7 @@ return { ["type"] = "explicit", }, }, - ["142_LocalIncreaseSocketedSpellGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_446733281", - ["text"] = "+# to Level of Socketed Spell Gems", - ["type"] = "explicit", - }, - }, - ["1431_MaximumFireResist"] = { + ["1466_MaximumFireResist"] = { ["Boots"] = { ["max"] = 3, ["min"] = 1, @@ -27595,7 +28851,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireDamageAvoidanceMaven"] = { + ["1468_FireDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 30, ["min"] = 20, @@ -27613,7 +28869,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistance"] = { + ["1468_FireResistance"] = { ["1HAxe"] = { ["max"] = 48, ["min"] = 6, @@ -27711,7 +28967,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistanceAilments"] = { + ["1468_FireResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27721,7 +28977,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistanceEnemyLeech"] = { + ["1468_FireResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27731,7 +28987,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistanceForJewel"] = { + ["1468_FireResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 12, @@ -27753,7 +29009,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistanceLeech"] = { + ["1468_FireResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27763,7 +29019,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistancePhysTakenAsFire"] = { + ["1468_FireResistancePhysTakenAsFire"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27773,7 +29029,7 @@ return { ["type"] = "explicit", }, }, - ["1433_FireResistancePrefix"] = { + ["1468_FireResistancePrefix"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27783,7 +29039,7 @@ return { ["type"] = "explicit", }, }, - ["1437_MaximumColdResist"] = { + ["1472_MaximumColdResist"] = { ["Gloves"] = { ["max"] = 3, ["min"] = 1, @@ -27801,7 +29057,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdDamageAvoidanceMaven"] = { + ["1474_ColdDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 30, ["min"] = 20, @@ -27819,7 +29075,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistance"] = { + ["1474_ColdResistance"] = { ["1HAxe"] = { ["max"] = 48, ["min"] = 6, @@ -27917,7 +29173,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistanceAilments"] = { + ["1474_ColdResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27927,7 +29183,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistanceEnemyLeech"] = { + ["1474_ColdResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27937,7 +29193,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistanceForJewel"] = { + ["1474_ColdResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 12, @@ -27959,7 +29215,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistanceLeech"] = { + ["1474_ColdResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27969,7 +29225,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistancePhysTakenAsCold"] = { + ["1474_ColdResistancePhysTakenAsCold"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27979,7 +29235,7 @@ return { ["type"] = "explicit", }, }, - ["1439_ColdResistancePrefix"] = { + ["1474_ColdResistancePrefix"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -27989,7 +29245,7 @@ return { ["type"] = "explicit", }, }, - ["1442_MaximumLightningResistance"] = { + ["1477_MaximumLightningResistance"] = { ["Helmet"] = { ["max"] = 3, ["min"] = 1, @@ -28007,7 +29263,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningDamageAvoidanceMaven"] = { + ["1479_LightningDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 30, ["min"] = 20, @@ -28025,7 +29281,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistance"] = { + ["1479_LightningResistance"] = { ["1HAxe"] = { ["max"] = 48, ["min"] = 6, @@ -28123,7 +29379,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistanceAilments"] = { + ["1479_LightningResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28133,7 +29389,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistanceEnemyLeech"] = { + ["1479_LightningResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28143,7 +29399,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistanceForJewel"] = { + ["1479_LightningResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 12, @@ -28165,7 +29421,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistanceLeech"] = { + ["1479_LightningResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28175,7 +29431,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistancePhysTakenAsLightning"] = { + ["1479_LightningResistancePhysTakenAsLightning"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28185,7 +29441,7 @@ return { ["type"] = "explicit", }, }, - ["1444_LightningResistancePrefix"] = { + ["1479_LightningResistancePrefix"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28195,7 +29451,7 @@ return { ["type"] = "explicit", }, }, - ["1447_MaximumChaosResistance"] = { + ["1482_MaximumChaosResistance"] = { ["Shield"] = { ["max"] = 3, ["min"] = 1, @@ -28209,7 +29465,7 @@ return { ["type"] = "explicit", }, }, - ["1447_PhysicalDamageTakenAsChaosUberMaven"] = { + ["1482_PhysicalDamageTakenAsChaosUberMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -28223,7 +29479,7 @@ return { ["type"] = "explicit", }, }, - ["1448_ChaosResistance"] = { + ["1483_ChaosResistance"] = { ["1HAxe"] = { ["max"] = 35, ["min"] = 5, @@ -28321,7 +29577,7 @@ return { ["type"] = "explicit", }, }, - ["1448_ChaosResistanceDamageOverTime"] = { + ["1483_ChaosResistanceDamageOverTime"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28331,7 +29587,7 @@ return { ["type"] = "explicit", }, }, - ["1448_ChaosResistanceForJewel"] = { + ["1483_ChaosResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 13, ["min"] = 7, @@ -28353,7 +29609,7 @@ return { ["type"] = "explicit", }, }, - ["1448_ChaosResistancePrefix"] = { + ["1483_ChaosResistancePrefix"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28363,7 +29619,7 @@ return { ["type"] = "explicit", }, }, - ["1449_MaximumResistances"] = { + ["1484_MaximumResistances"] = { ["Shield"] = { ["max"] = 2, ["min"] = 1, @@ -28377,25 +29633,7 @@ return { ["type"] = "explicit", }, }, - ["144_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "explicit", - }, - }, - ["1450_AllResistancesMaven"] = { + ["1485_AllResistancesMaven"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -28413,7 +29651,7 @@ return { ["type"] = "explicit", }, }, - ["1452_ChillEffectivenessOnSelf"] = { + ["1487_ChillEffectivenessOnSelf"] = { ["AnyJewel"] = { ["max"] = 35, ["min"] = 30, @@ -28435,7 +29673,7 @@ return { ["type"] = "explicit", }, }, - ["1454_LifeLeech"] = { + ["1489_LifeLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28445,7 +29683,7 @@ return { ["type"] = "explicit", }, }, - ["1455_EnemyLifeLeechPermyriad"] = { + ["1490_EnemyLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28455,7 +29693,7 @@ return { ["type"] = "explicit", }, }, - ["1456_LifeLeechPermyriad"] = { + ["1491_LifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 1.2, ["min"] = 0.2, @@ -28481,7 +29719,7 @@ return { ["type"] = "explicit", }, }, - ["1456_LifeLeechPermyriadForJewel"] = { + ["1491_LifeLeechPermyriadForJewel"] = { ["AnyJewel"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -28499,7 +29737,7 @@ return { ["type"] = "explicit", }, }, - ["1458_LifeLeechLocalPermyriad"] = { + ["1493_LifeLeechLocalPermyriad"] = { ["1HAxe"] = { ["max"] = 1.3, ["min"] = 0.2, @@ -28562,7 +29800,7 @@ return { ["type"] = "explicit", }, }, - ["1458_LocalIncreasedPhysicalDamagePercentAndLeech"] = { + ["1493_LocalIncreasedPhysicalDamagePercentAndLeech"] = { ["1HAxe"] = { ["max"] = 0.6, ["min"] = 0.6, @@ -28597,43 +29835,114 @@ return { ["type"] = "explicit", }, }, - ["145_ProjectilePierceAndProjectileGemLevel"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["149_LocalIncreaseSocketedSpellGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", + ["id"] = "explicit.stat_446733281", + ["text"] = "+# to Level of Socketed Spell Gems", ["type"] = "explicit", }, }, - ["146_LocalIncreaseSocketedBowGemLevel"] = { + ["14_ItemGenerationCannotChangePrefixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, ["min"] = 1, }, ["Bow"] = { - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, ["min"] = 1, }, - ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2027269580", - ["text"] = "+# to Level of Socketed Bow Gems", + ["id"] = "explicit.stat_2879723104", + ["text"] = "Prefixes Cannot Be Changed", ["type"] = "explicit", }, }, - ["1471_LifeLeechFromAttacksPermyriad"] = { + ["1506_LifeLeechFromAttacksPermyriad"] = { ["AbyssJewel"] = { ["max"] = 0.3, ["min"] = 0.3, @@ -28655,7 +29964,7 @@ return { ["type"] = "explicit", }, }, - ["1473_PhysicalDamageLifeLeechPermyriad"] = { + ["1508_PhysicalDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -28673,7 +29982,7 @@ return { ["type"] = "explicit", }, }, - ["1474_EnemyPhysicalDamageLifeLeechPermyriad"] = { + ["1509_EnemyPhysicalDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28683,7 +29992,7 @@ return { ["type"] = "explicit", }, }, - ["1477_FireDamageLifeLeechPermyriad"] = { + ["1512_FireDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -28701,7 +30010,7 @@ return { ["type"] = "explicit", }, }, - ["1477_FireResistanceLeech"] = { + ["1512_FireResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28711,7 +30020,7 @@ return { ["type"] = "explicit", }, }, - ["1478_EnemyFireDamageLifeLeechPermyriad"] = { + ["1513_EnemyFireDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28721,7 +30030,7 @@ return { ["type"] = "explicit", }, }, - ["1478_FireResistanceEnemyLeech"] = { + ["1513_FireResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28731,91 +30040,7 @@ return { ["type"] = "explicit", }, }, - ["147_LocalIncreaseSocketedMeleeGemLevel"] = { - ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, - ["147_MeleeRangeAndMeleeGemLevel"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", - ["type"] = "explicit", - }, - }, - ["1482_ColdDamageLifeLeechPermyriad"] = { + ["1517_ColdDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -28833,7 +30058,7 @@ return { ["type"] = "explicit", }, }, - ["1482_ColdResistanceLeech"] = { + ["1517_ColdResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28843,7 +30068,7 @@ return { ["type"] = "explicit", }, }, - ["1483_ColdResistanceEnemyLeech"] = { + ["1518_ColdResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28853,7 +30078,7 @@ return { ["type"] = "explicit", }, }, - ["1483_EnemyColdDamageLifeLeechPermyriad"] = { + ["1518_EnemyColdDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28863,7 +30088,25 @@ return { ["type"] = "explicit", }, }, - ["1486_LightningDamageLifeLeechPermyriad"] = { + ["151_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", + ["type"] = "explicit", + }, + }, + ["1521_LightningDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -28881,7 +30124,7 @@ return { ["type"] = "explicit", }, }, - ["1486_LightningResistanceLeech"] = { + ["1521_LightningResistanceLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28891,7 +30134,7 @@ return { ["type"] = "explicit", }, }, - ["1487_EnemyLightningDamageLifeLeechPermyriad"] = { + ["1522_EnemyLightningDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28901,7 +30144,7 @@ return { ["type"] = "explicit", }, }, - ["1487_LightningResistanceEnemyLeech"] = { + ["1522_LightningResistanceEnemyLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28911,7 +30154,7 @@ return { ["type"] = "explicit", }, }, - ["1489_ChaosDamageLifeLeechPermyriad"] = { + ["1524_ChaosDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -28929,17 +30172,7 @@ return { ["type"] = "explicit", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "explicit", - }, - }, - ["1490_EnemyChaosDamageLifeLeechPermyriad"] = { + ["1525_EnemyChaosDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -28949,128 +30182,53 @@ return { ["type"] = "explicit", }, }, - ["149_LocalIncreaseSocketedAuraLevel"] = { + ["152_ProjectilePierceAndProjectileGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, ["Helmet"] = { ["max"] = 2, - ["min"] = 2, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", + ["id"] = "explicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", ["type"] = "explicit", }, }, - ["14_ItemGenerationCannotChangePrefixes"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["1539_ManaLeech"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237948413", + ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["type"] = "explicit", }, + }, + ["153_LocalIncreaseSocketedBowGemLevel"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2879723104", - ["text"] = "Prefixes Cannot Be Changed", - ["type"] = "explicit", - }, - }, - ["1504_ManaLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3237948413", - ["text"] = "#% of Physical Attack Damage Leeched as Mana", + ["id"] = "explicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", ["type"] = "explicit", }, }, - ["1505_EnemyManaLeechPermyriad"] = { + ["1540_EnemyManaLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -29080,7 +30238,7 @@ return { ["type"] = "explicit", }, }, - ["1506_ManaLeechPermyriad"] = { + ["1541_ManaLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.8, ["min"] = 0.2, @@ -29106,7 +30264,7 @@ return { ["type"] = "explicit", }, }, - ["1506_ManaLeechPermyriadForJewel"] = { + ["1541_ManaLeechPermyriadForJewel"] = { ["AnyJewel"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -29124,7 +30282,7 @@ return { ["type"] = "explicit", }, }, - ["1508_ManaLeechLocalPermyriad"] = { + ["1543_ManaLeechLocalPermyriad"] = { ["1HAxe"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -29187,7 +30345,101 @@ return { ["type"] = "explicit", }, }, - ["1529_EnergyShieldLeechPermyriad"] = { + ["154_LocalIncreaseSocketedMeleeGemLevel"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, + ["154_MeleeRangeAndMeleeGemLevel"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "explicit", + }, + }, + ["155_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "explicit", + }, + }, + ["1564_EnergyShieldLeechPermyriad"] = { ["Boots"] = { ["max"] = 0.3, ["min"] = 0.3, @@ -29213,17 +30465,21 @@ return { ["type"] = "explicit", }, }, - ["152_IncreaseSocketedCurseGemLevel"] = { + ["156_LocalIncreaseSocketedAuraLevel"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", + ["id"] = "explicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", ["type"] = "explicit", }, }, - ["1538_MaximumLifeLeechRate"] = { + ["1573_MaximumLifeLeechRate"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 15, @@ -29241,7 +30497,7 @@ return { ["type"] = "explicit", }, }, - ["1539_MaximumLifeLeechRateOldFix"] = { + ["1574_MaximumLifeLeechRateOldFix"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -29251,7 +30507,7 @@ return { ["type"] = "explicit", }, }, - ["1540_DisplaySupportedByManaLeechMaven"] = { + ["1575_DisplaySupportedByManaLeechMaven"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 20, @@ -29265,7 +30521,7 @@ return { ["type"] = "explicit", }, }, - ["1541_MaximumEnergyShieldLeechRate"] = { + ["1576_MaximumEnergyShieldLeechRate"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 15, @@ -29283,7 +30539,7 @@ return { ["type"] = "explicit", }, }, - ["1545_LifeGainPerTargetLocal"] = { + ["1580_LifeGainPerTargetLocal"] = { ["1HAxe"] = { ["max"] = 5, ["min"] = 2, @@ -29345,7 +30601,7 @@ return { ["type"] = "explicit", }, }, - ["1546_LifeGainedOnSpellHit"] = { + ["1581_LifeGainedOnSpellHit"] = { ["Ring"] = { ["max"] = 15, ["min"] = 8, @@ -29359,7 +30615,7 @@ return { ["type"] = "explicit", }, }, - ["1547_LifeGainPerTarget"] = { + ["1582_LifeGainPerTarget"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 2, @@ -29381,7 +30637,7 @@ return { ["type"] = "explicit", }, }, - ["1547_LifeGainPerTargetForJewel"] = { + ["1582_LifeGainPerTargetForJewel"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -29399,17 +30655,7 @@ return { ["type"] = "explicit", }, }, - ["154_LocalIncreaseSocketedTrapGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_407139870", - ["text"] = "+# to Level of Socketed Trap Gems", - ["type"] = "explicit", - }, - }, - ["1550_LifeGainOnHitVsIgnitedEnemies"] = { + ["1585_LifeGainOnHitVsIgnitedEnemies"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -29419,7 +30665,7 @@ return { ["type"] = "explicit", }, }, - ["1551_IncreasedManaAndOnHit"] = { + ["1586_IncreasedManaAndOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -29429,7 +30675,7 @@ return { ["type"] = "explicit", }, }, - ["1551_ManaGainPerTarget"] = { + ["1586_ManaGainPerTarget"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 2, @@ -29451,7 +30697,7 @@ return { ["type"] = "explicit", }, }, - ["1551_ManaGainPerTargetForJewel"] = { + ["1586_ManaGainPerTargetForJewel"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -29469,7 +30715,7 @@ return { ["type"] = "explicit", }, }, - ["1551_ManaGainPerTargetMaven"] = { + ["1586_ManaGainPerTargetMaven"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 3, @@ -29487,7 +30733,7 @@ return { ["type"] = "explicit", }, }, - ["1554_EnergyShieldGainPerTargetForJewel"] = { + ["1589_EnergyShieldGainPerTargetForJewel"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -29505,7 +30751,7 @@ return { ["type"] = "explicit", }, }, - ["1555_LifeGainedFromEnemyDeath"] = { + ["1590_LifeGainedFromEnemyDeath"] = { ["1HAxe"] = { ["max"] = 14, ["min"] = 3, @@ -29583,7 +30829,7 @@ return { ["type"] = "explicit", }, }, - ["1556_MaximumLifeOnKillPercent"] = { + ["1591_MaximumLifeOnKillPercent"] = { ["Chest"] = { ["max"] = 6, ["min"] = 3, @@ -29597,7 +30843,7 @@ return { ["type"] = "explicit", }, }, - ["1556_MaximumLifeOnKillPercentMaven"] = { + ["1591_MaximumLifeOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 6, ["min"] = 5, @@ -29611,7 +30857,7 @@ return { ["type"] = "explicit", }, }, - ["1557_MaximumEnergyShieldOnKillPercent"] = { + ["1592_MaximumEnergyShieldOnKillPercent"] = { ["Chest"] = { ["max"] = 6, ["min"] = 3, @@ -29625,7 +30871,7 @@ return { ["type"] = "explicit", }, }, - ["1557_MaximumEnergyShieldOnKillPercentMaven"] = { + ["1592_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 6, ["min"] = 5, @@ -29639,7 +30885,7 @@ return { ["type"] = "explicit", }, }, - ["1558_MaximumManaOnKillPercent"] = { + ["1593_MaximumManaOnKillPercent"] = { ["Chest"] = { ["max"] = 6, ["min"] = 3, @@ -29653,7 +30899,7 @@ return { ["type"] = "explicit", }, }, - ["1558_MaximumManaOnKillPercentMaven"] = { + ["1593_MaximumManaOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 6, ["min"] = 5, @@ -29667,31 +30913,31 @@ return { ["type"] = "explicit", }, }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { + ["1599_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 100, + ["min"] = 5, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["id"] = "explicit.stat_762600725", + ["text"] = "# Life gained when you Block", ["type"] = "explicit", }, }, - ["1564_GainLifeOnBlock"] = { - ["Shield"] = { - ["max"] = 100, - ["min"] = 5, - }, + ["159_IncreaseSocketedCurseGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_762600725", - ["text"] = "# Life gained when you Block", + ["id"] = "explicit.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", ["type"] = "explicit", }, }, - ["1565_GainManaOnBlock"] = { + ["1600_GainManaOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -29701,7 +30947,7 @@ return { ["type"] = "explicit", }, }, - ["1569_ManaGainedFromEnemyDeath"] = { + ["1604_ManaGainedFromEnemyDeath"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 1, @@ -29779,7 +31025,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MaximumMinionCountAndMinionLife"] = { + ["1607_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 8, @@ -29793,7 +31039,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MinionDamageAndMinionMaximumLife"] = { + ["1607_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { ["max"] = 59, ["min"] = 16, @@ -29855,7 +31101,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MinionLife"] = { + ["1607_MinionLife"] = { ["Belt"] = { ["max"] = 30, ["min"] = 13, @@ -29889,7 +31135,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MinionLifeForJewel"] = { + ["1607_MinionLifeForJewel"] = { ["AbyssJewel"] = { ["max"] = 12, ["min"] = 8, @@ -29911,7 +31157,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MinionLifeMaven"] = { + ["1607_MinionLifeMaven"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 36, @@ -29925,7 +31171,7 @@ return { ["type"] = "explicit", }, }, - ["1572_MinionLifeSupported"] = { + ["1607_MinionLifeSupported"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 15, @@ -29939,7 +31185,7 @@ return { ["type"] = "explicit", }, }, - ["1575_MinionMovementSpeed"] = { + ["1610_MinionMovementSpeed"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 6, @@ -29961,7 +31207,7 @@ return { ["type"] = "explicit", }, }, - ["1575_MinionRunSpeed"] = { + ["1610_MinionRunSpeed"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 13, @@ -29983,157 +31229,7 @@ return { ["type"] = "explicit", }, }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { - ["1HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["157_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["1HAxe"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HSword"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HAxe"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HSword"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["157_LocalIncreaseSocketedSupportGemLevelMaven"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["1580_TotemLifeForJewel"] = { + ["1615_TotemLifeForJewel"] = { ["AnyJewel"] = { ["max"] = 12, ["min"] = 8, @@ -30151,35 +31247,27 @@ return { ["type"] = "explicit", }, }, - ["158_LocalIncreaseSocketedActiveSkillGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["161_LocalIncreaseSocketedTrapGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_524797741", - ["text"] = "+# to Level of Socketed Skill Gems", + ["id"] = "explicit.stat_407139870", + ["text"] = "+# to Level of Socketed Trap Gems", ["type"] = "explicit", }, }, - ["158_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["162_IncreasedSocketedTrapOrMineGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_524797741", - ["text"] = "+# to Level of Socketed Skill Gems", + ["id"] = "explicit.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", ["type"] = "explicit", }, }, - ["1596_AdditionalPierce"] = { + ["1631_AdditionalPierce"] = { ["1HWeapon"] = { ["max"] = 2, ["min"] = 1, @@ -30217,7 +31305,7 @@ return { ["type"] = "explicit", }, }, - ["1596_LocalIncreasedPhysicalDamagePercentAndPierce"] = { + ["1631_LocalIncreasedPhysicalDamagePercentAndPierce"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -30244,7 +31332,7 @@ return { ["type"] = "explicit", }, }, - ["1596_ProjectilePierceAndProjectileGemLevel"] = { + ["1631_ProjectilePierceAndProjectileGemLevel"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -30263,7 +31351,7 @@ return { ["type"] = "explicit", }, }, - ["1598_AdditionalProjectiles"] = { + ["1633_AdditionalProjectiles"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -30292,7 +31380,7 @@ return { ["type"] = "explicit", }, }, - ["1599_AdditionalArrows"] = { + ["1635_AdditionalArrows"] = { ["2HWeapon"] = { ["max"] = 2, ["min"] = 1, @@ -30310,12 +31398,12 @@ return { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "explicit.stat_742529963", + ["id"] = "explicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, }, - ["1602_IncreasedProjectileSpeedForJewel"] = { + ["1637_IncreasedProjectileSpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -30333,7 +31421,7 @@ return { ["type"] = "explicit", }, }, - ["1602_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { + ["1637_LocalIncreasedPhysicalDamagePercentAndProjSpeed"] = { ["1HWeapon"] = { ["max"] = 25, ["min"] = 20, @@ -30359,7 +31447,7 @@ return { ["type"] = "explicit", }, }, - ["1602_ProjectileDamageAndProjectileSpeed"] = { + ["1637_ProjectileDamageAndProjectileSpeed"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 10, @@ -30373,7 +31461,7 @@ return { ["type"] = "explicit", }, }, - ["1602_ProjectileSpeed"] = { + ["1637_ProjectileSpeed"] = { ["1HWeapon"] = { ["max"] = 52, ["min"] = 34, @@ -30395,7 +31483,7 @@ return { ["type"] = "explicit", }, }, - ["1602_ProjectileSpeedSupported"] = { + ["1637_ProjectileSpeedSupported"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 15, @@ -30409,7 +31497,7 @@ return { ["type"] = "explicit", }, }, - ["1602_SupportedByVolleySpeed"] = { + ["1637_SupportedByVolleySpeed"] = { ["1HWeapon"] = { ["max"] = 25, ["min"] = 15, @@ -30427,7 +31515,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocity"] = { + ["1639_MovementVelocity"] = { ["2HAxe"] = { ["max"] = 10, ["min"] = 3, @@ -30473,7 +31561,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocityAndCannotBeChilled"] = { + ["1639_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { ["max"] = 30, ["min"] = 13, @@ -30487,7 +31575,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["1639_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["Boots"] = { ["max"] = 30, ["min"] = 13, @@ -30501,7 +31589,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocityAndOnslaughtOnKill"] = { + ["1639_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { ["max"] = 30, ["min"] = 13, @@ -30515,7 +31603,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocityDodge"] = { + ["1639_MovementVelocityDodge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30525,7 +31613,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocitySpeed"] = { + ["1639_MovementVelocitySpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30535,7 +31623,7 @@ return { ["type"] = "explicit", }, }, - ["1604_MovementVelocitySpellDodge"] = { + ["1639_MovementVelocitySpellDodge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30545,7 +31633,7 @@ return { ["type"] = "explicit", }, }, - ["1608_FrenzyChargeOnHitChanceMaven"] = { + ["1643_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -30559,7 +31647,7 @@ return { ["type"] = "explicit", }, }, - ["1609_MinimumEnduranceCharges"] = { + ["1644_MinimumEnduranceCharges"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30581,7 +31669,7 @@ return { ["type"] = "explicit", }, }, - ["1609_MinimumEnduranceChargesAndOnKillChance"] = { + ["1644_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30599,7 +31687,7 @@ return { ["type"] = "explicit", }, }, - ["1609_MinimumEnduranceChargesAndOnKillLose"] = { + ["1644_MinimumEnduranceChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30609,7 +31697,7 @@ return { ["type"] = "explicit", }, }, - ["1610_MaximumEnduranceCharges"] = { + ["1645_MaximumEnduranceCharges"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -30643,7 +31731,7 @@ return { ["type"] = "explicit", }, }, - ["1610_MaximumEnduranceChargesMaven"] = { + ["1645_MaximumEnduranceChargesMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -30657,7 +31745,7 @@ return { ["type"] = "explicit", }, }, - ["1614_MinimumFrenzyCharges"] = { + ["1649_MinimumFrenzyCharges"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30679,7 +31767,7 @@ return { ["type"] = "explicit", }, }, - ["1614_MinimumFrenzyChargesAndOnKillChance"] = { + ["1649_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30697,7 +31785,7 @@ return { ["type"] = "explicit", }, }, - ["1614_MinimumFrenzyChargesAndOnKillLose"] = { + ["1649_MinimumFrenzyChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30707,7 +31795,157 @@ return { ["type"] = "explicit", }, }, - ["1615_MaximumFrenzyCharges"] = { + ["164_LocalIncreaseSocketedSupportGemLevel"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["164_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["1HAxe"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HSword"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HAxe"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HSword"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["164_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["1650_MaximumFrenzyCharges"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -30737,7 +31975,7 @@ return { ["type"] = "explicit", }, }, - ["1615_MaximumFrenzyChargesMaven"] = { + ["1650_MaximumFrenzyChargesMaven"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -30751,7 +31989,7 @@ return { ["type"] = "explicit", }, }, - ["1619_MinimumPowerCharges"] = { + ["1654_MinimumPowerCharges"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30773,7 +32011,7 @@ return { ["type"] = "explicit", }, }, - ["1619_MinimumPowerChargesAndOnKillChance"] = { + ["1654_MinimumPowerChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -30791,7 +32029,7 @@ return { ["type"] = "explicit", }, }, - ["1619_MinimumPowerChargesAndOnKillLose"] = { + ["1654_MinimumPowerChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30801,7 +32039,7 @@ return { ["type"] = "explicit", }, }, - ["1620_IncreasedMaximumPowerCharges"] = { + ["1655_IncreasedMaximumPowerCharges"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -30823,7 +32061,7 @@ return { ["type"] = "explicit", }, }, - ["1620_IncreasedMaximumPowerChargesMaven"] = { + ["1655_IncreasedMaximumPowerChargesMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -30837,7 +32075,35 @@ return { ["type"] = "explicit", }, }, - ["1625_GainEnduranceChargeOnCritUber"] = { + ["165_LocalIncreaseSocketedActiveSkillGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["165_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_524797741", + ["text"] = "+# to Level of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["1660_GainEnduranceChargeOnCritUber"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -30863,7 +32129,7 @@ return { ["type"] = "explicit", }, }, - ["1630_GainPowerChargeOnKillingFrozenEnemy"] = { + ["1665_GainPowerChargeOnKillingFrozenEnemy"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -30873,7 +32139,7 @@ return { ["type"] = "explicit", }, }, - ["1636_CriticalMultiplierSupportedTwoHanded"] = { + ["1671_CriticalMultiplierSupportedTwoHanded"] = { ["2HWeapon"] = { ["max"] = 10, ["min"] = 5, @@ -30891,7 +32157,7 @@ return { ["type"] = "explicit", }, }, - ["1636_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { + ["1671_CriticalStrikeChanceSpellsTwoHandedPowerCharge"] = { ["2HWeapon"] = { ["max"] = 10, ["min"] = 10, @@ -30909,7 +32175,7 @@ return { ["type"] = "explicit", }, }, - ["1636_PowerChargeOnCriticalStrikeChance"] = { + ["1671_PowerChargeOnCriticalStrikeChance"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -30923,7 +32189,7 @@ return { ["type"] = "explicit", }, }, - ["1636_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["1671_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -30937,7 +32203,7 @@ return { ["type"] = "explicit", }, }, - ["1639_FrenzyChargeOnHitChance"] = { + ["1674_FrenzyChargeOnHitChance"] = { ["Chest"] = { ["max"] = 10, ["min"] = 10, @@ -30951,7 +32217,7 @@ return { ["type"] = "explicit", }, }, - ["1639_FrenzyChargeOnHitChanceMaven"] = { + ["1674_FrenzyChargeOnHitChanceMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 10, @@ -30965,7 +32231,7 @@ return { ["type"] = "explicit", }, }, - ["1644_CannotBeFrozen"] = { + ["1679_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30974,7 +32240,7 @@ return { ["type"] = "explicit", }, }, - ["1649_AvoidElementalStatusAilments"] = { + ["1684_AvoidElementalStatusAilments"] = { ["Boots"] = { ["max"] = 45, ["min"] = 16, @@ -30992,7 +32258,7 @@ return { ["type"] = "explicit", }, }, - ["1649_AvoidStunAndElementalStatusAilments"] = { + ["1684_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { ["max"] = 35, ["min"] = 20, @@ -31006,7 +32272,7 @@ return { ["type"] = "explicit", }, }, - ["1650_AvoidChillForJewel"] = { + ["1685_AvoidChillForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31016,7 +32282,7 @@ return { ["type"] = "explicit", }, }, - ["1650_AvoidFreezeAndChill"] = { + ["1685_AvoidFreezeAndChill"] = { ["Boots"] = { ["max"] = 30, ["min"] = 20, @@ -31030,7 +32296,7 @@ return { ["type"] = "explicit", }, }, - ["1650_MovementVelocityAndCannotBeChilled"] = { + ["1685_MovementVelocityAndCannotBeChilled"] = { ["Boots"] = { ["max"] = 100, ["min"] = 100, @@ -31044,7 +32310,7 @@ return { ["type"] = "explicit", }, }, - ["1651_AvoidFreeze"] = { + ["1686_AvoidFreeze"] = { ["Boots"] = { ["max"] = 100, ["min"] = 51, @@ -31062,7 +32328,7 @@ return { ["type"] = "explicit", }, }, - ["1651_AvoidFreezeAndChill"] = { + ["1686_AvoidFreezeAndChill"] = { ["Boots"] = { ["max"] = 100, ["min"] = 100, @@ -31076,7 +32342,7 @@ return { ["type"] = "explicit", }, }, - ["1651_AvoidFreezeForJewel"] = { + ["1686_AvoidFreezeForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31086,7 +32352,7 @@ return { ["type"] = "explicit", }, }, - ["1651_ChanceToAvoidFreezeAndChill"] = { + ["1686_ChanceToAvoidFreezeAndChill"] = { ["AbyssJewel"] = { ["max"] = 50, ["min"] = 31, @@ -31116,7 +32382,7 @@ return { ["type"] = "explicit", }, }, - ["1651_DexterityAndAvoidFreeze"] = { + ["1686_DexterityAndAvoidFreeze"] = { ["Chest"] = { ["max"] = 25, ["min"] = 21, @@ -31134,7 +32400,7 @@ return { ["type"] = "explicit", }, }, - ["1652_AvoidIgnite"] = { + ["1687_AvoidIgnite"] = { ["AbyssJewel"] = { ["max"] = 50, ["min"] = 31, @@ -31168,7 +32434,7 @@ return { ["type"] = "explicit", }, }, - ["1652_AvoidIgniteForJewel"] = { + ["1687_AvoidIgniteForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31178,7 +32444,7 @@ return { ["type"] = "explicit", }, }, - ["1652_StrengthAndAvoidIgnite"] = { + ["1687_StrengthAndAvoidIgnite"] = { ["Chest"] = { ["max"] = 25, ["min"] = 21, @@ -31196,7 +32462,7 @@ return { ["type"] = "explicit", }, }, - ["1654_AvoidShock"] = { + ["1689_AvoidShock"] = { ["Boots"] = { ["max"] = 80, ["min"] = 51, @@ -31214,7 +32480,7 @@ return { ["type"] = "explicit", }, }, - ["1654_AvoidShockForJewel"] = { + ["1689_AvoidShockForJewel"] = { ["AbyssJewel"] = { ["max"] = 50, ["min"] = 31, @@ -31232,7 +32498,7 @@ return { ["type"] = "explicit", }, }, - ["1654_IntelligenceAndAvoidShock"] = { + ["1689_IntelligenceAndAvoidShock"] = { ["Chest"] = { ["max"] = 25, ["min"] = 21, @@ -31250,7 +32516,7 @@ return { ["type"] = "explicit", }, }, - ["1654_ReducedShockChance"] = { + ["1689_ReducedShockChance"] = { ["Belt"] = { ["max"] = 60, ["min"] = 35, @@ -31272,7 +32538,7 @@ return { ["type"] = "explicit", }, }, - ["1655_AvoidBleedAndPoison"] = { + ["1690_AvoidBleedAndPoison"] = { ["Boots"] = { ["max"] = 70, ["min"] = 41, @@ -31286,7 +32552,7 @@ return { ["type"] = "explicit", }, }, - ["1655_ChanceToAvoidPoison"] = { + ["1690_ChanceToAvoidPoison"] = { ["AbyssJewel"] = { ["max"] = 50, ["min"] = 31, @@ -31320,7 +32586,7 @@ return { ["type"] = "explicit", }, }, - ["1655_MovementVelocitySpellDodge"] = { + ["1690_MovementVelocitySpellDodge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31330,7 +32596,7 @@ return { ["type"] = "explicit", }, }, - ["1657_AvoidStun"] = { + ["1692_AvoidStun"] = { ["AbyssJewel"] = { ["max"] = 30, ["min"] = 21, @@ -31364,7 +32630,7 @@ return { ["type"] = "explicit", }, }, - ["1657_AvoidStunAndElementalStatusAilments"] = { + ["1692_AvoidStunAndElementalStatusAilments"] = { ["Chest"] = { ["max"] = 35, ["min"] = 20, @@ -31378,7 +32644,7 @@ return { ["type"] = "explicit", }, }, - ["1657_AvoidStunForJewel"] = { + ["1692_AvoidStunForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31388,7 +32654,7 @@ return { ["type"] = "explicit", }, }, - ["1662_ChillingConfluxMaven"] = { + ["1697_ChillingConfluxMaven"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 20, @@ -31402,7 +32668,7 @@ return { ["type"] = "explicit", }, }, - ["1663_ShockChanceAndDurationForJewel"] = { + ["1698_ShockChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 12, @@ -31420,7 +32686,7 @@ return { ["type"] = "explicit", }, }, - ["1663_ShockDurationForJewel"] = { + ["1698_ShockDurationForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31430,7 +32696,7 @@ return { ["type"] = "explicit", }, }, - ["1663_ShockingConfluxMaven"] = { + ["1698_ShockingConfluxMaven"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 20, @@ -31444,7 +32710,7 @@ return { ["type"] = "explicit", }, }, - ["1664_FreezeChanceAndDuration"] = { + ["1699_FreezeChanceAndDuration"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 8, @@ -31458,7 +32724,7 @@ return { ["type"] = "explicit", }, }, - ["1664_FreezeChanceAndDurationForJewel"] = { + ["1699_FreezeChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 12, @@ -31476,7 +32742,104 @@ return { ["type"] = "explicit", }, }, - ["1665_BurnDurationForJewel"] = { + ["16_ItemGenerationCannotChangeSuffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3464137628", + ["text"] = "Suffixes Cannot Be Changed", + ["type"] = "explicit", + }, + }, + ["1700_BurnDurationForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -31486,7 +32849,7 @@ return { ["type"] = "explicit", }, }, - ["1665_FasterIgniteDamageMaven"] = { + ["1700_FasterIgniteDamageMaven"] = { ["Boots"] = { ["max"] = 20, ["min"] = 10, @@ -31500,7 +32863,7 @@ return { ["type"] = "explicit", }, }, - ["1665_IgniteChanceAndDurationForJewel"] = { + ["1700_IgniteChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -31518,7 +32881,7 @@ return { ["type"] = "explicit", }, }, - ["1665_IgniteDurationSupported"] = { + ["1700_IgniteDurationSupported"] = { ["Helmet"] = { ["max"] = 20, ["min"] = 8, @@ -31532,7 +32895,7 @@ return { ["type"] = "explicit", }, }, - ["1665_IgnitingConfluxMaven"] = { + ["1700_IgnitingConfluxMaven"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 20, @@ -31546,7 +32909,7 @@ return { ["type"] = "explicit", }, }, - ["1666_IncreasedAilmentDuration"] = { + ["1701_IncreasedAilmentDuration"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 10, @@ -31560,7 +32923,7 @@ return { ["type"] = "explicit", }, }, - ["1666_IncreasedAilmentDurationMaven"] = { + ["1701_IncreasedAilmentDurationMaven"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 13, @@ -31574,7 +32937,7 @@ return { ["type"] = "explicit", }, }, - ["1669_StunDurationAndThresholdUber"] = { + ["1704_StunDurationAndThresholdUber"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 11, @@ -31600,7 +32963,7 @@ return { ["type"] = "explicit", }, }, - ["1669_StunDurationForJewel"] = { + ["1704_StunDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 14, ["min"] = 10, @@ -31618,7 +32981,7 @@ return { ["type"] = "explicit", }, }, - ["1669_StunDurationIncreasePercent"] = { + ["1704_StunDurationIncreasePercent"] = { ["1HAxe"] = { ["max"] = 35, ["min"] = 11, @@ -31688,7 +33051,7 @@ return { ["type"] = "explicit", }, }, - ["1673_SelfStatusAilmentDuration"] = { + ["1708_SelfStatusAilmentDuration"] = { ["Boots"] = { ["max"] = 30, ["min"] = 20, @@ -31718,7 +33081,7 @@ return { ["type"] = "explicit", }, }, - ["1680_ReducedFreezeDuration"] = { + ["1715_ReducedFreezeDuration"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 51, @@ -31732,7 +33095,7 @@ return { ["type"] = "explicit", }, }, - ["1680_ReducedFreezeDurationMaven"] = { + ["1715_ReducedFreezeDurationMaven"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 51, @@ -31746,7 +33109,7 @@ return { ["type"] = "explicit", }, }, - ["1681_ReducedBurnDuration"] = { + ["1716_ReducedBurnDuration"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 51, @@ -31760,7 +33123,7 @@ return { ["type"] = "explicit", }, }, - ["1681_ReducedBurnDurationMaven"] = { + ["1716_ReducedBurnDurationMaven"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 51, @@ -31774,7 +33137,7 @@ return { ["type"] = "explicit", }, }, - ["1681_ReducedIgniteDurationOnSelf"] = { + ["1716_ReducedIgniteDurationOnSelf"] = { ["AnyJewel"] = { ["max"] = 35, ["min"] = 30, @@ -31796,7 +33159,7 @@ return { ["type"] = "explicit", }, }, - ["1683_BurnDamage"] = { + ["1718_BurnDamage"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 26, @@ -31826,7 +33189,7 @@ return { ["type"] = "explicit", }, }, - ["1683_BurnDamagePrefix"] = { + ["1718_BurnDamagePrefix"] = { ["1HMace"] = { ["max"] = 94, ["min"] = 60, @@ -31856,7 +33219,7 @@ return { ["type"] = "explicit", }, }, - ["1683_BurningDamageForJewel"] = { + ["1718_BurningDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 16, @@ -31874,7 +33237,7 @@ return { ["type"] = "explicit", }, }, - ["1683_BurningDamageSupported"] = { + ["1718_BurningDamageSupported"] = { ["Helmet"] = { ["max"] = 35, ["min"] = 20, @@ -31888,7 +33251,7 @@ return { ["type"] = "explicit", }, }, - ["1683_IgniteChanceAndDamage"] = { + ["1718_IgniteChanceAndDamage"] = { ["Helmet"] = { ["max"] = 20, ["min"] = 15, @@ -31902,7 +33265,7 @@ return { ["type"] = "explicit", }, }, - ["1686_AreaDamageAndAreaOfEffect"] = { + ["1721_AreaDamageAndAreaOfEffect"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 6, @@ -31916,7 +33279,7 @@ return { ["type"] = "explicit", }, }, - ["1686_AreaOfEffect"] = { + ["1721_AreaOfEffect"] = { ["2HAxe"] = { ["max"] = 20, ["min"] = 5, @@ -31970,7 +33333,7 @@ return { ["type"] = "explicit", }, }, - ["1686_AreaOfEffectSupported"] = { + ["1721_AreaOfEffectSupported"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 7, @@ -31984,7 +33347,7 @@ return { ["type"] = "explicit", }, }, - ["1686_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["1721_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["Chest"] = { ["max"] = 12, ["min"] = 8, @@ -31998,7 +33361,7 @@ return { ["type"] = "explicit", }, }, - ["1686_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["1721_EnemiesExplodeOnDeathPhysicalMaven"] = { ["Chest"] = { ["max"] = 12, ["min"] = 8, @@ -32012,7 +33375,7 @@ return { ["type"] = "explicit", }, }, - ["1686_LocalIncreasedPhysicalDamagePercentAndArea"] = { + ["1721_LocalIncreasedPhysicalDamagePercentAndArea"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 10, @@ -32042,7 +33405,7 @@ return { ["type"] = "explicit", }, }, - ["1686_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { + ["1721_SkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 8, @@ -32060,7 +33423,7 @@ return { ["type"] = "explicit", }, }, - ["1686_SupportedBySpellCascadeArea"] = { + ["1721_SupportedBySpellCascadeArea"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 5, @@ -32086,7 +33449,7 @@ return { ["type"] = "explicit", }, }, - ["1686_SupportedBySpiritStrikeArea"] = { + ["1721_SupportedBySpiritStrikeArea"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 5, @@ -32136,7 +33499,7 @@ return { ["type"] = "explicit", }, }, - ["1689_ManaAndManaCostPercent"] = { + ["1724_ManaAndManaCostPercent"] = { ["Amulet"] = { ["max"] = 7, ["min"] = 3, @@ -32154,7 +33517,7 @@ return { ["type"] = "explicit", }, }, - ["1689_ManaCostReduction"] = { + ["1724_ManaCostReduction"] = { ["Ring"] = { ["max"] = 6, ["min"] = 4, @@ -32168,7 +33531,7 @@ return { ["type"] = "explicit", }, }, - ["1689_ManaCostReductionForJewel"] = { + ["1724_ManaCostReductionForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -32186,73 +33549,7 @@ return { ["type"] = "explicit", }, }, - ["168_SocketedGemQuality"] = { - ["1HAxe"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HSword"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HAxe"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HSword"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Dagger"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3828613551", - ["text"] = "+#% to Quality of Socketed Gems", - ["type"] = "explicit", - }, - }, - ["1697_IncreaseManaCostFlat"] = { + ["1732_IncreaseManaCostFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32262,7 +33559,7 @@ return { ["type"] = "explicit", }, }, - ["1697_IncreasedManaAndCost"] = { + ["1732_IncreasedManaAndCost"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32272,194 +33569,7 @@ return { ["type"] = "explicit", }, }, - ["169_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["169_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { - ["1HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["1HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["1HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["2HAxe"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["2HSword"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Dagger"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["169_LocalIncreaseSocketedSupportGemLevelMaven"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "explicit", - }, - }, - ["16_ItemGenerationCannotChangeSuffixes"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3464137628", - ["text"] = "Suffixes Cannot Be Changed", - ["type"] = "explicit", - }, - }, - ["1701_SkillEffectDurationSupported"] = { + ["1736_SkillEffectDurationSupported"] = { ["Boots"] = { ["max"] = 15, ["min"] = 10, @@ -32473,7 +33583,7 @@ return { ["type"] = "explicit", }, }, - ["1702_ChaosDamageAndChaosSkillDuration"] = { + ["1737_ChaosDamageAndChaosSkillDuration"] = { ["1HAxe"] = { ["max"] = 30, ["min"] = 7, @@ -32535,7 +33645,7 @@ return { ["type"] = "explicit", }, }, - ["1704_AvoidInterruptionWhileCasting"] = { + ["1739_AvoidInterruptionWhileCasting"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 15, @@ -32561,7 +33671,7 @@ return { ["type"] = "explicit", }, }, - ["1704_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { + ["1739_IncreasedCastSpeedTwoHandedAvoidInterruption"] = { ["2HWeapon"] = { ["max"] = 35, ["min"] = 15, @@ -32579,7 +33689,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalArmourAndEnergyShieldAndStunRecovery"] = { + ["1741_LocalArmourAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32605,7 +33715,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { + ["1741_LocalArmourAndEvasionAndEnergyShieldAndStunRecovery"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32631,7 +33741,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalArmourAndEvasionAndStunRecovery"] = { + ["1741_LocalArmourAndEvasionAndStunRecovery"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32657,7 +33767,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalEnergyShieldAndStunRecoveryPercent"] = { + ["1741_LocalEnergyShieldAndStunRecoveryPercent"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32683,7 +33793,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalEvasionAndEnergyShieldAndStunRecovery"] = { + ["1741_LocalEvasionAndEnergyShieldAndStunRecovery"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32693,7 +33803,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { + ["1741_LocalEvasionRatingAndStunRecoveryIncreasePercent"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32719,7 +33829,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { + ["1741_LocalPhysicalDamageReductionRatingAndStunRecoveryPercent"] = { ["Boots"] = { ["max"] = 17, ["min"] = 6, @@ -32745,7 +33855,7 @@ return { ["type"] = "explicit", }, }, - ["1706_LocalWardAndStunRecoveryPercent"] = { + ["1741_LocalWardAndStunRecoveryPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32755,7 +33865,7 @@ return { ["type"] = "explicit", }, }, - ["1706_StunRecovery"] = { + ["1741_StunRecovery"] = { ["Belt"] = { ["max"] = 28, ["min"] = 11, @@ -32773,7 +33883,7 @@ return { ["type"] = "explicit", }, }, - ["1706_StunRecoveryForJewel"] = { + ["1741_StunRecoveryForJewel"] = { ["AnyJewel"] = { ["max"] = 35, ["min"] = 25, @@ -32791,21 +33901,7 @@ return { ["type"] = "explicit", }, }, - ["170_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1325783255", - ["text"] = "+#% to Quality of Socketed Skill Gems", - ["type"] = "explicit", - }, - }, - ["1727_TrapCooldownRecoveryAndDuration"] = { + ["1762_TrapCooldownRecoveryAndDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32815,7 +33911,7 @@ return { ["type"] = "explicit", }, }, - ["1728_MineDetonationSpeedAndDuration"] = { + ["1763_MineDetonationSpeedAndDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -32825,7 +33921,7 @@ return { ["type"] = "explicit", }, }, - ["1731_TrapSpeedCooldownSupported"] = { + ["1766_TrapSpeedCooldownSupported"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 8, @@ -32839,7 +33935,7 @@ return { ["type"] = "explicit", }, }, - ["1731_TrapThrowSpeed"] = { + ["1766_TrapThrowSpeed"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 7, @@ -32857,7 +33953,7 @@ return { ["type"] = "explicit", }, }, - ["1731_TrapThrowSpeedForJewel"] = { + ["1766_TrapThrowSpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -32875,7 +33971,7 @@ return { ["type"] = "explicit", }, }, - ["1731_TrapThrowSpeedOnWeapon"] = { + ["1766_TrapThrowSpeedOnWeapon"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -32937,7 +34033,7 @@ return { ["type"] = "explicit", }, }, - ["1732_MineLaySpeedForJewel"] = { + ["1767_MineLaySpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -32955,7 +34051,7 @@ return { ["type"] = "explicit", }, }, - ["1732_MineLayingSpeed"] = { + ["1767_MineLayingSpeed"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 7, @@ -32973,7 +34069,7 @@ return { ["type"] = "explicit", }, }, - ["1732_MineLayingSpeedOnWeapon"] = { + ["1767_MineLayingSpeedOnWeapon"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -33035,7 +34131,7 @@ return { ["type"] = "explicit", }, }, - ["1735_SelfPhysAsExtraFireTaken"] = { + ["1770_SelfPhysAsExtraFireTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33045,7 +34141,7 @@ return { ["type"] = "explicit", }, }, - ["1736_ConvertPhysicalToFireMaven"] = { + ["1771_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 3, @@ -33063,7 +34159,7 @@ return { ["type"] = "explicit", }, }, - ["1736_FireDamageAsPortionOfDamage"] = { + ["1771_FireDamageAsPortionOfDamage"] = { ["Quiver"] = { ["max"] = 15, ["min"] = 15, @@ -33081,7 +34177,7 @@ return { ["type"] = "explicit", }, }, - ["1736_PhysicalAddedAsFire"] = { + ["1771_PhysicalAddedAsFire"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 7, @@ -33143,7 +34239,7 @@ return { ["type"] = "explicit", }, }, - ["1737_ConvertPhysicalToColdMaven"] = { + ["1772_ConvertPhysicalToColdMaven"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 3, @@ -33161,7 +34257,7 @@ return { ["type"] = "explicit", }, }, - ["1737_PhysicalAddedAsCold"] = { + ["1772_PhysicalAddedAsCold"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 7, @@ -33227,7 +34323,7 @@ return { ["type"] = "explicit", }, }, - ["1738_ConvertPhysicalToLightningMaven"] = { + ["1773_ConvertPhysicalToLightningMaven"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 3, @@ -33245,7 +34341,7 @@ return { ["type"] = "explicit", }, }, - ["1738_PhysicalAddedAsLightning"] = { + ["1773_PhysicalAddedAsLightning"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 7, @@ -33295,7 +34391,7 @@ return { ["type"] = "explicit", }, }, - ["1739_LocalPhysicalDamagePercentAddedAsChaos"] = { + ["1774_LocalPhysicalDamagePercentAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33305,7 +34401,7 @@ return { ["type"] = "explicit", }, }, - ["1739_PhysicalAddedAsChaos"] = { + ["1774_PhysicalAddedAsChaos"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -33371,7 +34467,7 @@ return { ["type"] = "explicit", }, }, - ["1742_ChaosDamageAsPortionOfLightningDamage"] = { + ["1777_ChaosDamageAsPortionOfLightningDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33381,7 +34477,7 @@ return { ["type"] = "explicit", }, }, - ["1742_LightningAddedAsChaos"] = { + ["1777_LightningAddedAsChaos"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -33447,7 +34543,7 @@ return { ["type"] = "explicit", }, }, - ["1744_ChaosDamageAsPortionOfColdDamage"] = { + ["1779_ChaosDamageAsPortionOfColdDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33457,7 +34553,7 @@ return { ["type"] = "explicit", }, }, - ["1744_ColdAddedAsChaos"] = { + ["1779_ColdAddedAsChaos"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -33523,7 +34619,7 @@ return { ["type"] = "explicit", }, }, - ["1745_ChaosDamageAsPortionOfFireDamage"] = { + ["1780_ChaosDamageAsPortionOfFireDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33533,7 +34629,7 @@ return { ["type"] = "explicit", }, }, - ["1745_FireAddedAsChaos"] = { + ["1780_FireAddedAsChaos"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -33599,7 +34695,7 @@ return { ["type"] = "explicit", }, }, - ["1746_ElementalDamagePercentAddedAsChaos"] = { + ["1781_ElementalDamagePercentAddedAsChaos"] = { ["1HMace"] = { ["max"] = 8, ["min"] = 5, @@ -33633,7 +34729,7 @@ return { ["type"] = "explicit", }, }, - ["1747_LifeDegenerationAndPercentGracePeriod"] = { + ["1782_LifeDegenerationAndPercentGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33643,7 +34739,7 @@ return { ["type"] = "explicit", }, }, - ["1748_LifeRegenerationAndPercent"] = { + ["1783_LifeRegenerationAndPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33653,7 +34749,7 @@ return { ["type"] = "explicit", }, }, - ["1748_LifeRegenerationRatePercentage"] = { + ["1783_LifeRegenerationRatePercentage"] = { ["AbyssJewel"] = { ["max"] = 0.3, ["min"] = 0.3, @@ -33703,25 +34799,21 @@ return { ["type"] = "explicit", }, }, - ["174_LocalIncreaseSocketedChaosGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, + ["1787_ChaosDamageOverTimeTaken"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["id"] = "explicit.stat_3762784591", + ["text"] = "#% reduced Chaos Damage taken over time", ["type"] = "explicit", }, }, - ["1752_ChaosDamageOverTimeTaken"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["1787_ChaosResistanceDamageOverTime"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33731,17 +34823,73 @@ return { ["type"] = "explicit", }, }, - ["1752_ChaosResistanceDamageOverTime"] = { + ["178_SocketedGemQuality"] = { + ["1HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Dagger"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3762784591", - ["text"] = "#% reduced Chaos Damage taken over time", + ["id"] = "explicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", ["type"] = "explicit", }, }, - ["1759_ConvertPhysicalToFire"] = { + ["1794_ConvertPhysicalToFire"] = { ["1HAxe"] = { ["max"] = 30, ["min"] = 23, @@ -33795,7 +34943,7 @@ return { ["type"] = "explicit", }, }, - ["1759_ConvertPhysicalToFireMaven"] = { + ["1794_ConvertPhysicalToFireMaven"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 22, @@ -33813,7 +34961,7 @@ return { ["type"] = "explicit", }, }, - ["1759_FireDamagePhysConvertedToFire"] = { + ["1794_FireDamagePhysConvertedToFire"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33823,21 +34971,7 @@ return { ["type"] = "explicit", }, }, - ["175_LocalIncreaseSocketedColdGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "explicit", - }, - }, - ["1761_ColdDamagePhysConvertedToCold"] = { + ["1796_ColdDamagePhysConvertedToCold"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33847,7 +34981,7 @@ return { ["type"] = "explicit", }, }, - ["1761_ConvertPhysicalToCold"] = { + ["1796_ConvertPhysicalToCold"] = { ["1HAxe"] = { ["max"] = 30, ["min"] = 23, @@ -33901,7 +35035,7 @@ return { ["type"] = "explicit", }, }, - ["1761_ConvertPhysicalToColdMaven"] = { + ["1796_ConvertPhysicalToColdMaven"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 22, @@ -33919,7 +35053,7 @@ return { ["type"] = "explicit", }, }, - ["1763_ConvertPhysicalToLightning"] = { + ["1798_ConvertPhysicalToLightning"] = { ["1HMace"] = { ["max"] = 30, ["min"] = 23, @@ -33961,7 +35095,7 @@ return { ["type"] = "explicit", }, }, - ["1763_ConvertPhysicalToLightningMaven"] = { + ["1798_ConvertPhysicalToLightningMaven"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 22, @@ -33979,7 +35113,7 @@ return { ["type"] = "explicit", }, }, - ["1763_LightningDamagePhysConvertedToLightning"] = { + ["1798_LightningDamagePhysConvertedToLightning"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -33989,7 +35123,194 @@ return { ["type"] = "explicit", }, }, - ["1766_PhysicalDamageConvertedToChaos"] = { + ["179_IncreaseSocketedSupportGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["179_LocalIncreaseSocketedSupportGemLevelAndQuality"] = { + ["1HAxe"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HSword"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HAxe"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HSword"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["179_LocalIncreaseSocketedSupportGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "explicit", + }, + }, + ["17_ItemGenerationCannotRollCasterAffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1149326139", + ["text"] = "Cannot roll Caster Modifiers", + ["type"] = "explicit", + }, + }, + ["1801_PhysicalDamageConvertedToChaos"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 10, @@ -34051,7 +35372,21 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamage"] = { + ["180_LocalIncreaseSocketedActiveSkillGemLevelMaven"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1325783255", + ["text"] = "+#% to Quality of Socketed Skill Gems", + ["type"] = "explicit", + }, + }, + ["1812_MinionDamage"] = { ["AbyssJewel"] = { ["max"] = 16, ["min"] = 14, @@ -34077,7 +35412,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageAndMinionMaximumLife"] = { + ["1812_MinionDamageAndMinionMaximumLife"] = { ["1HAxe"] = { ["max"] = 59, ["min"] = 16, @@ -34139,7 +35474,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageForJewel"] = { + ["1812_MinionDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 14, @@ -34157,7 +35492,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageOnWeapon"] = { + ["1812_MinionDamageOnWeapon"] = { ["1HAxe"] = { ["max"] = 94, ["min"] = 20, @@ -34223,7 +35558,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageOnWeaponAndMana"] = { + ["1812_MinionDamageOnWeaponAndMana"] = { ["1HWeapon"] = { ["max"] = 39, ["min"] = 5, @@ -34241,7 +35576,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageOnWeaponDoubleDamage"] = { + ["1812_MinionDamageOnWeaponDoubleDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -34251,7 +35586,7 @@ return { ["type"] = "explicit", }, }, - ["1777_MinionDamageSupported"] = { + ["1812_MinionDamageSupported"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 15, @@ -34265,7 +35600,7 @@ return { ["type"] = "explicit", }, }, - ["1778_MinionDamageIfMinionSkillUsedRecently"] = { + ["1813_MinionDamageIfMinionSkillUsedRecently"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 15, @@ -34283,7 +35618,7 @@ return { ["type"] = "explicit", }, }, - ["1782_ElementalDamagePercent"] = { + ["1817_ElementalDamagePercent"] = { ["1HAxe"] = { ["max"] = 49, ["min"] = 19, @@ -34357,7 +35692,7 @@ return { ["type"] = "explicit", }, }, - ["1782_ElementalDamagePercentMaven"] = { + ["1817_ElementalDamagePercentMaven"] = { ["Helmet"] = { ["max"] = 22, ["min"] = 19, @@ -34371,7 +35706,7 @@ return { ["type"] = "explicit", }, }, - ["1782_ElementalDamagePrefixElementalFocus"] = { + ["1817_ElementalDamagePrefixElementalFocus"] = { ["1HMace"] = { ["max"] = 60, ["min"] = 45, @@ -34389,21 +35724,7 @@ return { ["type"] = "explicit", }, }, - ["178_LocalIncreaseSocketedFireGemLevelMaven"] = { - ["Boots"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3422008440", - ["text"] = "+#% to Quality of Socketed Fire Gems", - ["type"] = "explicit", - }, - }, - ["1790_BlockPercentMaven"] = { + ["1825_BlockPercentMaven"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -34417,7 +35738,7 @@ return { ["type"] = "explicit", }, }, - ["1790_MaximumBlockChance"] = { + ["1825_MaximumBlockChance"] = { ["Amulet"] = { ["max"] = 2, ["min"] = 2, @@ -34431,7 +35752,7 @@ return { ["type"] = "explicit", }, }, - ["1791_MaximumSpellBlockChance"] = { + ["1826_MaximumSpellBlockChance"] = { ["Amulet"] = { ["max"] = 2, ["min"] = 2, @@ -34445,7 +35766,7 @@ return { ["type"] = "explicit", }, }, - ["1791_SpellBlockPercentageMaven"] = { + ["1826_SpellBlockPercentageMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -34459,7 +35780,7 @@ return { ["type"] = "explicit", }, }, - ["1796_KnockbackChanceForJewel"] = { + ["1831_KnockbackChanceForJewel"] = { ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -34477,7 +35798,7 @@ return { ["type"] = "explicit", }, }, - ["1797_ProjectileDamageAndProjectileSpeed"] = { + ["1832_ProjectileDamageAndProjectileSpeed"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 9, @@ -34491,7 +35812,7 @@ return { ["type"] = "explicit", }, }, - ["1797_ProjectileDamageForJewel"] = { + ["1832_ProjectileDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 12, ["min"] = 10, @@ -34509,7 +35830,7 @@ return { ["type"] = "explicit", }, }, - ["1797_ProjectileDamageSupported"] = { + ["1832_ProjectileDamageSupported"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 15, @@ -34523,7 +35844,7 @@ return { ["type"] = "explicit", }, }, - ["1797_SupportedByLesserMultipleProjectilesDamage"] = { + ["1832_SupportedByLesserMultipleProjectilesDamage"] = { ["1HWeapon"] = { ["max"] = 30, ["min"] = 15, @@ -34541,7 +35862,7 @@ return { ["type"] = "explicit", }, }, - ["1798_ProjectileAttackDamage"] = { + ["1833_ProjectileAttackDamage"] = { ["Gloves"] = { ["max"] = 38, ["min"] = 18, @@ -34559,104 +35880,21 @@ return { ["type"] = "explicit", }, }, - ["17_ItemGenerationCannotRollCasterAffixes"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["184_LocalIncreaseSocketedChaosGemLevelMaven"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1149326139", - ["text"] = "Cannot roll Caster Modifiers", + ["id"] = "explicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", ["type"] = "explicit", }, }, - ["180_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["185_LocalIncreaseSocketedColdGemLevelMaven"] = { ["Boots"] = { ["max"] = 7, ["min"] = 3, @@ -34665,12 +35903,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["id"] = "explicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", ["type"] = "explicit", }, }, - ["1825_LocalAccuracyRating"] = { + ["1860_LocalAccuracyRating"] = { ["1HAxe"] = { ["max"] = 780, ["min"] = 80, @@ -34733,7 +35971,7 @@ return { ["type"] = "explicit", }, }, - ["1825_LocalAccuracyRatingAndLocalItemQuality"] = { + ["1860_LocalAccuracyRatingAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to Accuracy Rating", @@ -34744,7 +35982,7 @@ return { ["type"] = "explicit", }, }, - ["1825_LocalAccuracyRatingStrengthDexterity"] = { + ["1860_LocalAccuracyRatingStrengthDexterity"] = { ["1HAxe"] = { ["max"] = 350, ["min"] = 161, @@ -34807,7 +36045,7 @@ return { ["type"] = "explicit", }, }, - ["1825_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1860_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { ["1HAxe"] = { ["max"] = 200, ["min"] = 16, @@ -34870,7 +36108,7 @@ return { ["type"] = "explicit", }, }, - ["1825_LocalLightRadiusAndAccuracy"] = { + ["1860_LocalLightRadiusAndAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to Accuracy Rating", @@ -34881,7 +36119,7 @@ return { ["type"] = "explicit", }, }, - ["1827_ChanceToIgnite"] = { + ["1862_ChanceToIgnite"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -34911,7 +36149,7 @@ return { ["type"] = "explicit", }, }, - ["1827_ChanceToIgniteForJewel"] = { + ["1862_ChanceToIgniteForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -34921,7 +36159,7 @@ return { ["type"] = "explicit", }, }, - ["1827_FireDamageAndChanceToIgnite"] = { + ["1862_FireDamageAndChanceToIgnite"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 13, @@ -34983,7 +36221,7 @@ return { ["type"] = "explicit", }, }, - ["1827_IgniteChanceAndDamage"] = { + ["1862_IgniteChanceAndDamage"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -34997,7 +36235,7 @@ return { ["type"] = "explicit", }, }, - ["1827_IgniteChanceAndDamageMaven"] = { + ["1862_IgniteChanceAndDamageMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -35011,7 +36249,7 @@ return { ["type"] = "explicit", }, }, - ["1827_IgniteChanceAndDurationForJewel"] = { + ["1862_IgniteChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -35029,7 +36267,7 @@ return { ["type"] = "explicit", }, }, - ["1830_ChanceToFreeze"] = { + ["1865_ChanceToFreeze"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -35059,7 +36297,7 @@ return { ["type"] = "explicit", }, }, - ["1830_ChanceToFreezeForJewel"] = { + ["1865_ChanceToFreezeForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -35069,7 +36307,7 @@ return { ["type"] = "explicit", }, }, - ["1830_ColdDamageAndBaseChanceToFreeze"] = { + ["1865_ColdDamageAndBaseChanceToFreeze"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 13, @@ -35131,7 +36369,7 @@ return { ["type"] = "explicit", }, }, - ["1830_FreezeChanceAndDuration"] = { + ["1865_FreezeChanceAndDuration"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -35145,7 +36383,7 @@ return { ["type"] = "explicit", }, }, - ["1830_FreezeChanceAndDurationForJewel"] = { + ["1865_FreezeChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -35163,7 +36401,7 @@ return { ["type"] = "explicit", }, }, - ["1830_FreezeChanceAndDurationMaven"] = { + ["1865_FreezeChanceAndDurationMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -35177,7 +36415,7 @@ return { ["type"] = "explicit", }, }, - ["1834_ChanceToShock"] = { + ["1869_ChanceToShock"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -35207,7 +36445,7 @@ return { ["type"] = "explicit", }, }, - ["1834_ChanceToShockForJewel"] = { + ["1869_ChanceToShockForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -35217,7 +36455,7 @@ return { ["type"] = "explicit", }, }, - ["1834_LightningDamageAndChanceToShock"] = { + ["1869_LightningDamageAndChanceToShock"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 13, @@ -35279,7 +36517,7 @@ return { ["type"] = "explicit", }, }, - ["1834_ShockChanceAndDurationForJewel"] = { + ["1869_ShockChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -35297,7 +36535,7 @@ return { ["type"] = "explicit", }, }, - ["1834_ShockChanceAndEffect"] = { + ["1869_ShockChanceAndEffect"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 6, @@ -35311,7 +36549,7 @@ return { ["type"] = "explicit", }, }, - ["1834_ShockChanceAndEffectMaven"] = { + ["1869_ShockChanceAndEffectMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -35325,7 +36563,7 @@ return { ["type"] = "explicit", }, }, - ["1836_AreaDamageAndAreaOfEffect"] = { + ["1871_AreaDamageAndAreaOfEffect"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 9, @@ -35339,7 +36577,7 @@ return { ["type"] = "explicit", }, }, - ["1836_AreaDamageForJewel"] = { + ["1871_AreaDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 12, ["min"] = 10, @@ -35357,7 +36595,7 @@ return { ["type"] = "explicit", }, }, - ["1836_AreaDamageSupported"] = { + ["1871_AreaDamageSupported"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 15, @@ -35371,7 +36609,7 @@ return { ["type"] = "explicit", }, }, - ["1836_SupportedByIncreasedAreaOfEffectDamage"] = { + ["1871_SupportedByIncreasedAreaOfEffectDamage"] = { ["1HMace"] = { ["max"] = 37, ["min"] = 23, @@ -35397,7 +36635,7 @@ return { ["type"] = "explicit", }, }, - ["1836_SupportedByMeleeSplashDamage"] = { + ["1871_SupportedByMeleeSplashDamage"] = { ["1HAxe"] = { ["max"] = 37, ["min"] = 23, @@ -35447,7 +36685,7 @@ return { ["type"] = "explicit", }, }, - ["1840_CullingStrike"] = { + ["1875_CullingStrike"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -35484,7 +36722,7 @@ return { ["type"] = "explicit", }, }, - ["1840_CullingStrikeMaven"] = { + ["1875_CullingStrikeMaven"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -35521,7 +36759,7 @@ return { ["type"] = "explicit", }, }, - ["1844_AlwaysHits"] = { + ["1879_AlwaysHits"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -35582,7 +36820,7 @@ return { ["type"] = "explicit", }, }, - ["1848_AttackAndCastSpeed"] = { + ["1883_AttackAndCastSpeed"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 3, @@ -35600,7 +36838,7 @@ return { ["type"] = "explicit", }, }, - ["1848_AttackAndCastSpeedForJewel"] = { + ["1883_AttackAndCastSpeedForJewel"] = { ["AnyJewel"] = { ["max"] = 4, ["min"] = 2, @@ -35618,7 +36856,7 @@ return { ["type"] = "explicit", }, }, - ["1848_IncreasedAttackAndCastSpeedSupported"] = { + ["1883_IncreasedAttackAndCastSpeedSupported"] = { ["Gloves"] = { ["max"] = 14, ["min"] = 7, @@ -35632,7 +36870,7 @@ return { ["type"] = "explicit", }, }, - ["1848_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["1883_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["Gloves"] = { ["max"] = 14, ["min"] = 13, @@ -35646,7 +36884,7 @@ return { ["type"] = "explicit", }, }, - ["1852_AccuracyRatingPerFrenzyChargeUber"] = { + ["1887_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { ["max"] = 5, ["min"] = 5, @@ -35672,7 +36910,21 @@ return { ["type"] = "explicit", }, }, - ["1861_GlobalFlaskLifeRecovery"] = { + ["188_LocalIncreaseSocketedFireGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", + ["type"] = "explicit", + }, + }, + ["1896_GlobalFlaskLifeRecovery"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -35694,7 +36946,7 @@ return { ["type"] = "explicit", }, }, - ["1862_ManaRecoveryRateMaven"] = { + ["1897_ManaRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 35, ["min"] = 20, @@ -35708,7 +36960,104 @@ return { ["type"] = "explicit", }, }, - ["1871_AddedPhysicalDamageWithAxes"] = { + ["18_ItemGenerationCannotRollAttackAffixes"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4122424929", + ["text"] = "Cannot roll Attack Modifiers", + ["type"] = "explicit", + }, + }, + ["1906_AddedPhysicalDamageWithAxes"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35726,7 +37075,7 @@ return { ["type"] = "explicit", }, }, - ["1872_PhysicalDamageWithBowsJewel"] = { + ["1907_PhysicalDamageWithBowsJewel"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35744,7 +37093,7 @@ return { ["type"] = "explicit", }, }, - ["1873_AddedPhysicalDamageWithClaws"] = { + ["1908_AddedPhysicalDamageWithClaws"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35762,7 +37111,7 @@ return { ["type"] = "explicit", }, }, - ["1874_AddedPhysicalDamageWithDaggers"] = { + ["1909_AddedPhysicalDamageWithDaggers"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35780,7 +37129,21 @@ return { ["type"] = "explicit", }, }, - ["1875_AddedPhysicalDamageWithMaces"] = { + ["190_LocalIncreaseSocketedLightningGemLevelMaven"] = { + ["Boots"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "explicit", + }, + }, + ["1910_AddedPhysicalDamageWithMaces"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35798,7 +37161,7 @@ return { ["type"] = "explicit", }, }, - ["1876_AddedPhysicalDamageWithStaves"] = { + ["1911_AddedPhysicalDamageWithStaves"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35816,7 +37179,7 @@ return { ["type"] = "explicit", }, }, - ["1877_AddedPhysicalDamageWithSwords"] = { + ["1912_AddedPhysicalDamageWithSwords"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35834,7 +37197,7 @@ return { ["type"] = "explicit", }, }, - ["1878_AddedPhysicalDamageWithWands"] = { + ["1913_AddedPhysicalDamageWithWands"] = { ["AbyssJewel"] = { ["max"] = 9, ["min"] = 2.5, @@ -35852,7 +37215,7 @@ return { ["type"] = "explicit", }, }, - ["1881_AddedFireDamageWithAxes"] = { + ["1916_AddedFireDamageWithAxes"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35870,7 +37233,7 @@ return { ["type"] = "explicit", }, }, - ["1882_FireDamageWithBowsJewel"] = { + ["1917_FireDamageWithBowsJewel"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35888,7 +37251,7 @@ return { ["type"] = "explicit", }, }, - ["1883_AddedFireDamageWithClaws"] = { + ["1918_AddedFireDamageWithClaws"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35906,7 +37269,7 @@ return { ["type"] = "explicit", }, }, - ["1884_AddedFireDamageWithDaggers"] = { + ["1919_AddedFireDamageWithDaggers"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35924,7 +37287,7 @@ return { ["type"] = "explicit", }, }, - ["1885_AddedFireDamageWithMaces"] = { + ["1920_AddedFireDamageWithMaces"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35942,7 +37305,7 @@ return { ["type"] = "explicit", }, }, - ["1886_AddedFireDamageWithStaves"] = { + ["1921_AddedFireDamageWithStaves"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35960,7 +37323,7 @@ return { ["type"] = "explicit", }, }, - ["1887_AddedFireDamageWithSwords"] = { + ["1922_AddedFireDamageWithSwords"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35978,7 +37341,7 @@ return { ["type"] = "explicit", }, }, - ["1888_AddedFireDamageWithWands"] = { + ["1923_AddedFireDamageWithWands"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 8, @@ -35996,7 +37359,7 @@ return { ["type"] = "explicit", }, }, - ["1889_AddedColdDamageWithAxes"] = { + ["1924_AddedColdDamageWithAxes"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36014,47 +37377,7 @@ return { ["type"] = "explicit", }, }, - ["188_AreaOfEffectSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["188_SupportedByIncreasedAreaOfEffectDamage"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3720936304", - ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1890_AddedColdDamageWithBows"] = { + ["1925_AddedColdDamageWithBows"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36072,7 +37395,7 @@ return { ["type"] = "explicit", }, }, - ["1891_AddedColdDamageWithClaws"] = { + ["1926_AddedColdDamageWithClaws"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36090,7 +37413,7 @@ return { ["type"] = "explicit", }, }, - ["1892_AddedColdDamageWithDaggers"] = { + ["1927_AddedColdDamageWithDaggers"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36108,7 +37431,7 @@ return { ["type"] = "explicit", }, }, - ["1893_AddedColdDamageWithMaces"] = { + ["1928_AddedColdDamageWithMaces"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36126,7 +37449,7 @@ return { ["type"] = "explicit", }, }, - ["1894_AddedColdDamageWithStaves"] = { + ["1929_AddedColdDamageWithStaves"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36144,7 +37467,7 @@ return { ["type"] = "explicit", }, }, - ["1895_AddedColdDamageWithSwords"] = { + ["1930_AddedColdDamageWithSwords"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36162,7 +37485,7 @@ return { ["type"] = "explicit", }, }, - ["1896_AddedColdDamageWithWands"] = { + ["1931_AddedColdDamageWithWands"] = { ["AbyssJewel"] = { ["max"] = 21.5, ["min"] = 6.5, @@ -36180,7 +37503,7 @@ return { ["type"] = "explicit", }, }, - ["1897_AddedLightningDamageWithAxes"] = { + ["1932_AddedLightningDamageWithAxes"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36198,7 +37521,7 @@ return { ["type"] = "explicit", }, }, - ["1898_AddedLightningDamageWithBows"] = { + ["1933_AddedLightningDamageWithBows"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36216,7 +37539,7 @@ return { ["type"] = "explicit", }, }, - ["1899_AddedLightningDamageWithClaws"] = { + ["1934_AddedLightningDamageWithClaws"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36234,146 +37557,7 @@ return { ["type"] = "explicit", }, }, - ["189_SupportedByArcaneSurge"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, - ["189_SupportedByArcaneSurgeWeapon"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, - ["189_WeaponSpellDamageArcaneSurge"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2287264161", - ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", - ["type"] = "explicit", - }, - }, - ["18_ItemGenerationCannotRollAttackAffixes"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4122424929", - ["text"] = "Cannot roll Attack Modifiers", - ["type"] = "explicit", - }, - }, - ["1900_AddedLightningDamageWithDaggers"] = { + ["1935_AddedLightningDamageWithDaggers"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36391,7 +37575,7 @@ return { ["type"] = "explicit", }, }, - ["1901_AddedLightningDamageWithMaces"] = { + ["1936_AddedLightningDamageWithMaces"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36409,7 +37593,7 @@ return { ["type"] = "explicit", }, }, - ["1902_AddedLightningDamageWithStaves"] = { + ["1937_AddedLightningDamageWithStaves"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36427,7 +37611,7 @@ return { ["type"] = "explicit", }, }, - ["1903_AddedLightningDamageWithSwords"] = { + ["1938_AddedLightningDamageWithSwords"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36445,7 +37629,7 @@ return { ["type"] = "explicit", }, }, - ["1904_AddedLightningDamageWithWands"] = { + ["1939_AddedLightningDamageWithWands"] = { ["AbyssJewel"] = { ["max"] = 27.5, ["min"] = 10, @@ -36463,7 +37647,7 @@ return { ["type"] = "explicit", }, }, - ["1905_AddedChaosDamageWithBows"] = { + ["1940_AddedChaosDamageWithBows"] = { ["AbyssJewel"] = { ["max"] = 18.5, ["min"] = 6.5, @@ -36481,7 +37665,7 @@ return { ["type"] = "explicit", }, }, - ["1906_AddedChaosDamageWithClaws"] = { + ["1941_AddedChaosDamageWithClaws"] = { ["AbyssJewel"] = { ["max"] = 18.5, ["min"] = 6.5, @@ -36499,7 +37683,7 @@ return { ["type"] = "explicit", }, }, - ["1907_AddedChaosDamageWithDaggers"] = { + ["1942_AddedChaosDamageWithDaggers"] = { ["AbyssJewel"] = { ["max"] = 18.5, ["min"] = 6.5, @@ -36517,7 +37701,7 @@ return { ["type"] = "explicit", }, }, - ["1908_SpellAddedChaosDamageWhileDualWielding"] = { + ["1943_SpellAddedChaosDamageWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36535,7 +37719,7 @@ return { ["type"] = "explicit", }, }, - ["1909_SpellAddedChaosDamageWhileHoldingAShield"] = { + ["1944_SpellAddedChaosDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36553,7 +37737,7 @@ return { ["type"] = "explicit", }, }, - ["1910_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { + ["1945_SpellAddedChaosDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36571,7 +37755,7 @@ return { ["type"] = "explicit", }, }, - ["1911_SpellAddedColdDamageWhileDualWielding"] = { + ["1946_SpellAddedColdDamageWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36589,7 +37773,7 @@ return { ["type"] = "explicit", }, }, - ["1912_SpellAddedColdDamageWhileHoldingAShield"] = { + ["1947_SpellAddedColdDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36607,7 +37791,7 @@ return { ["type"] = "explicit", }, }, - ["1913_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { + ["1948_SpellAddedColdDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36625,7 +37809,7 @@ return { ["type"] = "explicit", }, }, - ["1914_SpellAddedFireDamageWhileDualWielding"] = { + ["1949_SpellAddedFireDamageWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36643,7 +37827,7 @@ return { ["type"] = "explicit", }, }, - ["1915_SpellAddedFireDamageWhileHoldingAShield"] = { + ["1950_SpellAddedFireDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36661,7 +37845,7 @@ return { ["type"] = "explicit", }, }, - ["1916_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { + ["1951_SpellAddedFireDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 29.5, ["min"] = 3.5, @@ -36679,7 +37863,7 @@ return { ["type"] = "explicit", }, }, - ["1917_SpellAddedLightningDamageWhileDualWielding"] = { + ["1952_SpellAddedLightningDamageWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 28.5, ["min"] = 3.5, @@ -36697,7 +37881,7 @@ return { ["type"] = "explicit", }, }, - ["1918_SpellAddedLightningDamageWhileHoldingAShield"] = { + ["1953_SpellAddedLightningDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 28.5, ["min"] = 3.5, @@ -36715,7 +37899,7 @@ return { ["type"] = "explicit", }, }, - ["1919_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { + ["1954_SpellAddedLightningDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 28.5, ["min"] = 3.5, @@ -36733,7 +37917,7 @@ return { ["type"] = "explicit", }, }, - ["1920_SpellAddedPhysicalDamageWhileDualWielding"] = { + ["1955_SpellAddedPhysicalDamageWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36751,7 +37935,7 @@ return { ["type"] = "explicit", }, }, - ["1921_SpellAddedPhysicalDamageWhileHoldingAShield"] = { + ["1956_SpellAddedPhysicalDamageWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36769,7 +37953,7 @@ return { ["type"] = "explicit", }, }, - ["1922_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { + ["1957_SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 20.5, ["min"] = 2, @@ -36787,7 +37971,7 @@ return { ["type"] = "explicit", }, }, - ["1926_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["1961_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { ["max"] = 25, ["min"] = 20, @@ -36813,7 +37997,7 @@ return { ["type"] = "explicit", }, }, - ["1927_EnduranceChargeDurationForJewel"] = { + ["1962_EnduranceChargeDurationForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -36823,7 +38007,7 @@ return { ["type"] = "explicit", }, }, - ["1927_EnduranceChargeOnKillChanceMaven"] = { + ["1962_EnduranceChargeOnKillChanceMaven"] = { ["1HAxe"] = { ["max"] = 50, ["min"] = 50, @@ -36873,7 +38057,7 @@ return { ["type"] = "explicit", }, }, - ["1929_FrenzyChargeDurationForJewel"] = { + ["1964_FrenzyChargeDurationForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -36883,7 +38067,7 @@ return { ["type"] = "explicit", }, }, - ["1929_FrenzyChargeOnKillChanceMaven"] = { + ["1964_FrenzyChargeOnKillChanceMaven"] = { ["1HAxe"] = { ["max"] = 50, ["min"] = 50, @@ -36937,7 +38121,7 @@ return { ["type"] = "explicit", }, }, - ["1937_DamageOverTimeWhileDualWielding"] = { + ["1972_DamageOverTimeWhileDualWielding"] = { ["AbyssJewel"] = { ["max"] = 18, ["min"] = 10, @@ -36955,7 +38139,7 @@ return { ["type"] = "explicit", }, }, - ["1938_DamageOverTimeWhileHoldingAShield"] = { + ["1973_DamageOverTimeWhileHoldingAShield"] = { ["AbyssJewel"] = { ["max"] = 18, ["min"] = 10, @@ -36973,7 +38157,7 @@ return { ["type"] = "explicit", }, }, - ["1939_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { + ["1974_DamageOverTimeWhileWieldingTwoHandedWeapon"] = { ["AbyssJewel"] = { ["max"] = 18, ["min"] = 10, @@ -36991,7 +38175,7 @@ return { ["type"] = "explicit", }, }, - ["1944_PowerChargeDurationForJewel"] = { + ["1979_PowerChargeDurationForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37001,7 +38185,7 @@ return { ["type"] = "explicit", }, }, - ["1944_PowerChargeOnKillChanceMaven"] = { + ["1979_PowerChargeOnKillChanceMaven"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 50, @@ -37043,7 +38227,47 @@ return { ["type"] = "explicit", }, }, - ["1959_IncreasedLifeLeechRate"] = { + ["198_AreaOfEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["198_SupportedByIncreasedAreaOfEffectDamage"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3720936304", + ["text"] = "Socketed Gems are Supported by Level # Increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["1994_IncreasedLifeLeechRate"] = { ["Amulet"] = { ["max"] = 150, ["min"] = 150, @@ -37061,7 +38285,7 @@ return { ["type"] = "explicit", }, }, - ["1959_LifeLeechSpeed"] = { + ["1994_LifeLeechSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37071,7 +38295,7 @@ return { ["type"] = "explicit", }, }, - ["1962_MaximumMinionCount"] = { + ["1997_MaximumMinionCount"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -37084,12 +38308,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1652515349", + ["id"] = "explicit.stat_966747987", ["text"] = "+# to maximum number of Raised Zombies", ["type"] = "explicit", }, }, - ["1962_MaximumMinionCountAndMinionLife"] = { + ["1997_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -37098,12 +38322,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1652515349", + ["id"] = "explicit.stat_966747987", ["text"] = "+# to maximum number of Raised Zombies", ["type"] = "explicit", }, }, - ["1963_MaximumMinionCount"] = { + ["1998_MaximumMinionCount"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37113,7 +38337,7 @@ return { ["type"] = "explicit", }, }, - ["1964_MaximumMinionCount"] = { + ["1999_MaximumMinionCount"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -37126,12 +38350,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2428829184", + ["id"] = "explicit.stat_1225383362", ["text"] = "+# to maximum number of Skeletons", ["type"] = "explicit", }, }, - ["1964_MaximumMinionCountAndMinionLife"] = { + ["1999_MaximumMinionCountAndMinionLife"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -37140,27 +38364,151 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2428829184", + ["id"] = "explicit.stat_1225383362", ["text"] = "+# to maximum number of Skeletons", ["type"] = "explicit", }, }, - ["1970_AdditionalCurseOnEnemies"] = { + ["199_SupportedByArcaneSurge"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["199_SupportedByArcaneSurgeWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["199_WeaponSpellDamageArcaneSurge"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2287264161", + ["text"] = "Socketed Gems are Supported by Level # Arcane Surge", + ["type"] = "explicit", + }, + }, + ["19_ItemGenerationCanHaveMultipleCraftedMods"] = { + ["1HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859333175", + ["text"] = "Can have up to 3 Crafted Modifiers", ["type"] = "explicit", }, }, - ["1970_AdditionalCurseOnEnemiesMaven"] = { + ["2005_AdditionalCurseOnEnemies"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -37175,7 +38523,7 @@ return { ["type"] = "explicit", }, }, - ["1970_OLDAdditionalCurseOnEnemiesMaven"] = { + ["2005_AdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -37190,7 +38538,22 @@ return { ["type"] = "explicit", }, }, - ["1972_CurseEffectOnYouJewel"] = { + ["2005_OLDAdditionalCurseOnEnemiesMaven"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, + ["2007_CurseEffectOnYouJewel"] = { ["AnyJewel"] = { ["max"] = 30, ["min"] = 25, @@ -37208,7 +38571,7 @@ return { ["type"] = "explicit", }, }, - ["1972_ReducedCurseEffect"] = { + ["2007_ReducedCurseEffect"] = { ["Ring"] = { ["max"] = 40, ["min"] = 16, @@ -37222,57 +38585,7 @@ return { ["type"] = "explicit", }, }, - ["197_LocalPhysicalDamagePercentBrutality"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_715256302", - ["text"] = "Socketed Gems are Supported by Level # Brutality", - ["type"] = "explicit", - }, - }, - ["1982_IgnoreArmourMovementPenalties"] = { + ["2018_IgnoreArmourMovementPenalties"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -37285,7 +38598,7 @@ return { ["type"] = "explicit", }, }, - ["1984_BeltIncreasedFlaskChargesGained"] = { + ["2020_BeltIncreasedFlaskChargesGained"] = { ["Belt"] = { ["max"] = 40, ["min"] = 5, @@ -37299,7 +38612,7 @@ return { ["type"] = "explicit", }, }, - ["1984_FlaskEffectAndFlaskChargesGained"] = { + ["2020_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { ["max"] = -20, ["min"] = -33, @@ -37313,7 +38626,7 @@ return { ["type"] = "explicit", }, }, - ["1985_BeltReducedFlaskChargesUsed"] = { + ["2021_BeltReducedFlaskChargesUsed"] = { ["Belt"] = { ["max"] = 20, ["min"] = 10, @@ -37327,7 +38640,7 @@ return { ["type"] = "explicit", }, }, - ["1988_BeltIncreasedFlaskDuration"] = { + ["2024_BeltIncreasedFlaskDuration"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 6, @@ -37349,21 +38662,7 @@ return { ["type"] = "explicit", }, }, - ["198_SupportedByCastOnDamageTaken"] = { - ["Shield"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3036440332", - ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", - ["type"] = "explicit", - }, - }, - ["1990_BeltFlaskLifeRecoveryRate"] = { + ["2026_BeltFlaskLifeRecoveryRate"] = { ["Belt"] = { ["max"] = 40, ["min"] = 5, @@ -37377,7 +38676,7 @@ return { ["type"] = "explicit", }, }, - ["1991_BeltFlaskManaRecoveryRate"] = { + ["2027_BeltFlaskManaRecoveryRate"] = { ["Belt"] = { ["max"] = 40, ["min"] = 5, @@ -37391,134 +38690,7 @@ return { ["type"] = "explicit", }, }, - ["199_SupportedByCastOnMeleeKillWeapon"] = { - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Staff"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3312593243", - ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", - ["type"] = "explicit", - }, - }, - ["19_ItemGenerationCanHaveMultipleCraftedMods"] = { - ["1HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1859333175", - ["text"] = "Can have up to 3 Crafted Modifiers", - ["type"] = "explicit", - }, - }, - ["2003_AttackerTakesDamageNoRange"] = { + ["2039_AttackerTakesDamageNoRange"] = { ["Belt"] = { ["max"] = 200, ["min"] = 1, @@ -37548,25 +38720,7 @@ return { ["type"] = "explicit", }, }, - ["200_SupportedByCastWhileChannellingWeapon"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Staff"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316646496", - ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", - ["type"] = "explicit", - }, - }, - ["2014_CurseCastSpeedForJewel"] = { + ["2050_CurseCastSpeedForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37576,7 +38730,7 @@ return { ["type"] = "explicit", }, }, - ["2024_AuraRadiusForJewel"] = { + ["2060_AuraRadiusForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37586,7 +38740,7 @@ return { ["type"] = "explicit", }, }, - ["2025_CurseAreaOfEffect"] = { + ["2061_CurseAreaOfEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37596,7 +38750,7 @@ return { ["type"] = "explicit", }, }, - ["2025_CurseRadiusForJewel"] = { + ["2061_CurseRadiusForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37606,7 +38760,7 @@ return { ["type"] = "explicit", }, }, - ["2026_LifeReservationEfficiency"] = { + ["2062_LifeReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37616,7 +38770,7 @@ return { ["type"] = "explicit", }, }, - ["2028_ManaReservationEfficiency"] = { + ["2064_ManaReservationEfficiency"] = { ["Amulet"] = { ["max"] = 14, ["min"] = 4, @@ -37646,71 +38800,7 @@ return { ["type"] = "explicit", }, }, - ["202_BleedingDamageSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", - ["type"] = "explicit", - }, - }, - ["202_ChanceToBleedSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4197676934", - ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", - ["type"] = "explicit", - }, - }, - ["2032_IncreasedManaAndReservation"] = { + ["2068_IncreasedManaAndReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37720,7 +38810,7 @@ return { ["type"] = "explicit", }, }, - ["2032_ReducedReservation"] = { + ["2068_ReducedReservation"] = { ["Amulet"] = { ["max"] = 14, ["min"] = 12, @@ -37738,7 +38828,7 @@ return { ["type"] = "explicit", }, }, - ["2034_PhysicalAttackDamageTaken"] = { + ["2070_PhysicalAttackDamageTaken"] = { ["Belt"] = { ["max"] = 36, ["min"] = 35, @@ -37752,7 +38842,7 @@ return { ["type"] = "explicit", }, }, - ["2035_FlatPhysicalDamageTaken"] = { + ["2071_FlatPhysicalDamageTaken"] = { ["Chest"] = { ["max"] = 50, ["min"] = 34, @@ -37766,7 +38856,7 @@ return { ["type"] = "explicit", }, }, - ["2041_ReducedPhysicalReflectTakenMaven"] = { + ["2077_ReducedPhysicalReflectTakenMaven"] = { ["Chest"] = { ["max"] = -3, ["min"] = -5, @@ -37780,7 +38870,7 @@ return { ["type"] = "explicit", }, }, - ["2042_FireDamageTaken"] = { + ["2078_FireDamageTaken"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -37790,7 +38880,7 @@ return { ["type"] = "explicit", }, }, - ["2043_ChaosDamageTakenPercentage"] = { + ["2079_ChaosDamageTakenPercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -37800,7 +38890,57 @@ return { ["type"] = "explicit", }, }, - ["2045_DegenDamageTaken"] = { + ["207_LocalPhysicalDamagePercentBrutality"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715256302", + ["text"] = "Socketed Gems are Supported by Level # Brutality", + ["type"] = "explicit", + }, + }, + ["2081_DegenDamageTaken"] = { ["Shield"] = { ["max"] = 10, ["min"] = 4, @@ -37814,7 +38954,7 @@ return { ["type"] = "explicit", }, }, - ["2049_IncreasedShieldBlockPercentage"] = { + ["2085_IncreasedShieldBlockPercentage"] = { ["Shield"] = { ["max"] = 15, ["min"] = 1, @@ -37829,7 +38969,7 @@ return { ["type"] = "explicit", }, }, - ["2049_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { + ["2085_LocalPhysicalDamageReductionRatingPercentAndBlockChance"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+#% Chance to Block", @@ -37840,7 +38980,21 @@ return { ["type"] = "explicit", }, }, - ["2054_AdditionalTotems"] = { + ["208_SupportedByCastOnDamageTaken"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3036440332", + ["text"] = "Socketed Gems are Supported by Level # Cast when Damage Taken", + ["type"] = "explicit", + }, + }, + ["2090_AdditionalTotems"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -37854,7 +39008,7 @@ return { ["type"] = "explicit", }, }, - ["2062_LocalIncreasedPhysicalDamageAndBlindChance"] = { + ["2098_LocalIncreasedPhysicalDamageAndBlindChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 13, @@ -37916,7 +39070,37 @@ return { ["type"] = "explicit", }, }, - ["2072_ReducedPhysicalDamageTaken"] = { + ["209_SupportedByCastOnMeleeKillWeapon"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3312593243", + ["text"] = "Socketed Gems are Supported by Level # Cast On Melee Kill", + ["type"] = "explicit", + }, + }, + ["2108_ReducedPhysicalDamageTaken"] = { ["Boots"] = { ["max"] = 8, ["min"] = 4, @@ -37950,7 +39134,7 @@ return { ["type"] = "explicit", }, }, - ["2072_ReducedPhysicalDamageTakenMaven"] = { + ["2108_ReducedPhysicalDamageTakenMaven"] = { ["Boots"] = { ["max"] = 4, ["min"] = 2, @@ -37964,7 +39148,7 @@ return { ["type"] = "explicit", }, }, - ["2073_MinionPhysicalDamageReduction"] = { + ["2109_MinionPhysicalDamageReduction"] = { ["Shield"] = { ["max"] = 15, ["min"] = 7, @@ -37978,81 +39162,133 @@ return { ["type"] = "explicit", }, }, - ["216_WeaponSpellDamageEfficacy"] = { - ["1HMace"] = { + ["210_SupportedByCastWhileChannellingWeapon"] = { + ["2HWeapon"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, }, - ["1HWeapon"] = { + ["Staff"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316646496", + ["text"] = "Socketed Gems are Supported by Level # Cast While Channelling", + ["type"] = "explicit", + }, + }, + ["212_BleedingDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3924539382", - ["text"] = "Socketed Gems are Supported by Level # Efficacy", + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", ["type"] = "explicit", }, }, - ["217_ElementalDamagePrefixElementalFocus"] = { + ["212_ChanceToBleedSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, ["1HWeapon"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1169422227", - ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["219_SupportedByEmpower"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3581578643", - ["text"] = "Socketed Gems are Supported by Level # Empower", + ["id"] = "explicit.stat_4197676934", + ["text"] = "Socketed Gems are Supported by Level # Chance To Bleed", ["type"] = "explicit", }, }, - ["221_SupportedByEnhance"] = { + ["226_WeaponSpellDamageEfficacy"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2556436882", - ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["id"] = "explicit.stat_3924539382", + ["text"] = "Socketed Gems are Supported by Level # Efficacy", ["type"] = "explicit", }, }, - ["222_SupportedByEnlighten"] = { + ["227_ElementalDamagePrefixElementalFocus"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2065361612", - ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["id"] = "explicit.stat_1169422227", + ["text"] = "Socketed Gems are Supported by Level # Elemental Focus", ["type"] = "explicit", }, }, - ["2238_FireResistancePhysTakenAsFire"] = { + ["2280_FireResistancePhysTakenAsFire"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38062,7 +39298,7 @@ return { ["type"] = "explicit", }, }, - ["2238_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["2280_PhysicalDamageTakenAsFireAndLightningPercent"] = { ["Chest"] = { ["max"] = 9, ["min"] = 3, @@ -38076,7 +39312,7 @@ return { ["type"] = "explicit", }, }, - ["2238_PhysicalDamageTakenAsFirePercent"] = { + ["2280_PhysicalDamageTakenAsFirePercent"] = { ["Helmet"] = { ["max"] = 10, ["min"] = 5, @@ -38090,7 +39326,7 @@ return { ["type"] = "explicit", }, }, - ["2238_PhysicalDamageTakenAsFireUber"] = { + ["2280_PhysicalDamageTakenAsFireUber"] = { ["Chest"] = { ["max"] = 15, ["min"] = 5, @@ -38108,7 +39344,7 @@ return { ["type"] = "explicit", }, }, - ["2238_PhysicalDamageTakenAsFireUberMaven"] = { + ["2280_PhysicalDamageTakenAsFireUberMaven"] = { ["Chest"] = { ["max"] = 18, ["min"] = 16, @@ -38122,7 +39358,7 @@ return { ["type"] = "explicit", }, }, - ["2239_ColdResistancePhysTakenAsCold"] = { + ["2281_ColdResistancePhysTakenAsCold"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38132,7 +39368,7 @@ return { ["type"] = "explicit", }, }, - ["2239_PhysicalDamageTakenAsCold"] = { + ["2281_PhysicalDamageTakenAsCold"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -38146,7 +39382,7 @@ return { ["type"] = "explicit", }, }, - ["2239_PhysicalDamageTakenAsColdUber"] = { + ["2281_PhysicalDamageTakenAsColdUber"] = { ["Chest"] = { ["max"] = 15, ["min"] = 5, @@ -38164,7 +39400,7 @@ return { ["type"] = "explicit", }, }, - ["2239_PhysicalDamageTakenAsColdUberMaven"] = { + ["2281_PhysicalDamageTakenAsColdUberMaven"] = { ["Chest"] = { ["max"] = 18, ["min"] = 16, @@ -38178,7 +39414,7 @@ return { ["type"] = "explicit", }, }, - ["2240_LightningResistancePhysTakenAsLightning"] = { + ["2282_LightningResistancePhysTakenAsLightning"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38188,7 +39424,7 @@ return { ["type"] = "explicit", }, }, - ["2240_PhysicalDamageTakenAsFireAndLightningPercent"] = { + ["2282_PhysicalDamageTakenAsFireAndLightningPercent"] = { ["Chest"] = { ["max"] = 9, ["min"] = 3, @@ -38202,7 +39438,7 @@ return { ["type"] = "explicit", }, }, - ["2240_PhysicalDamageTakenAsLightningUber"] = { + ["2282_PhysicalDamageTakenAsLightningUber"] = { ["Chest"] = { ["max"] = 15, ["min"] = 5, @@ -38220,7 +39456,7 @@ return { ["type"] = "explicit", }, }, - ["2240_PhysicalDamageTakenAsLightningUberMaven"] = { + ["2282_PhysicalDamageTakenAsLightningUberMaven"] = { ["Chest"] = { ["max"] = 18, ["min"] = 16, @@ -38234,7 +39470,7 @@ return { ["type"] = "explicit", }, }, - ["2242_PhysicalDamageTakenAsChaosUber"] = { + ["2284_PhysicalDamageTakenAsChaosUber"] = { ["Chest"] = { ["max"] = 15, ["min"] = 5, @@ -38248,7 +39484,7 @@ return { ["type"] = "explicit", }, }, - ["2242_PhysicalDamageTakenAsChaosUberMaven"] = { + ["2284_PhysicalDamageTakenAsChaosUberMaven"] = { ["Chest"] = { ["max"] = 18, ["min"] = 16, @@ -38262,7 +39498,7 @@ return { ["type"] = "explicit", }, }, - ["2246_ManaAndDamageTakenGoesToManaPercent"] = { + ["2288_ManaAndDamageTakenGoesToManaPercent"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 4, @@ -38280,7 +39516,7 @@ return { ["type"] = "explicit", }, }, - ["2246_PercentDamageGoesToMana"] = { + ["2288_PercentDamageGoesToMana"] = { ["AbyssJewel"] = { ["max"] = 3, ["min"] = 2, @@ -38302,7 +39538,7 @@ return { ["type"] = "explicit", }, }, - ["2255_BlockVsProjectiles"] = { + ["2297_BlockVsProjectiles"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38312,43 +39548,31 @@ return { ["type"] = "explicit", }, }, - ["2258_RecoverEnergyShieldPercentOnBlock"] = { - ["Shield"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["229_SupportedByEmpower"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1606263610", - ["text"] = "Recover #% of Energy Shield when you Block", + ["id"] = "explicit.stat_3581578643", + ["text"] = "Socketed Gems are Supported by Level # Empower", ["type"] = "explicit", }, }, - ["225_FireDamagePrefixFirePenetration"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, + ["2300_RecoverEnergyShieldPercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3265951306", - ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["id"] = "explicit.stat_1606263610", + ["text"] = "Recover #% of Energy Shield when you Block", ["type"] = "explicit", }, }, - ["2272_CausesBleeding25PercentChance"] = { + ["2314_CausesBleeding25PercentChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38358,7 +39582,7 @@ return { ["type"] = "explicit", }, }, - ["2274_CausesBleedingChance"] = { + ["2316_CausesBleedingChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38368,7 +39592,7 @@ return { ["type"] = "explicit", }, }, - ["2274_ChanceToBleedSupported"] = { + ["2316_ChanceToBleedSupported"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 10, @@ -38418,7 +39642,7 @@ return { ["type"] = "explicit", }, }, - ["2274_LocalAddedPhysicalDamageAndCausesBleeding"] = { + ["2316_LocalAddedPhysicalDamageAndCausesBleeding"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 35, @@ -38480,7 +39704,7 @@ return { ["type"] = "explicit", }, }, - ["2274_LocalChanceToBleed"] = { + ["2316_LocalChanceToBleed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38490,7 +39714,7 @@ return { ["type"] = "explicit", }, }, - ["2274_LocalIncreasedPhysicalDamageAndBleedChance"] = { + ["2316_LocalIncreasedPhysicalDamageAndBleedChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 13, @@ -38552,7 +39776,17 @@ return { ["type"] = "explicit", }, }, - ["2280_BleedChanceAndDurationForJewel"] = { + ["231_SupportedByEnhance"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2556436882", + ["text"] = "Socketed Gems are Supported by Level # Enhance", + ["type"] = "explicit", + }, + }, + ["2322_BleedChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -38570,7 +39804,7 @@ return { ["type"] = "explicit", }, }, - ["2280_BleedOnHitAndDamage"] = { + ["2322_BleedOnHitAndDamage"] = { ["Quiver"] = { ["max"] = 15, ["min"] = 10, @@ -38584,7 +39818,7 @@ return { ["type"] = "explicit", }, }, - ["2280_BleedingDamageChance"] = { + ["2322_BleedingDamageChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38594,7 +39828,7 @@ return { ["type"] = "explicit", }, }, - ["2280_BleedingDamageChanceWeaponSuffix"] = { + ["2322_BleedingDamageChanceWeaponSuffix"] = { ["1HAxe"] = { ["max"] = 30, ["min"] = 20, @@ -38640,7 +39874,7 @@ return { ["type"] = "explicit", }, }, - ["2281_AbyssMinionAttacksBleedOnHitChance"] = { + ["2323_AbyssMinionAttacksBleedOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -38658,7 +39892,7 @@ return { ["type"] = "explicit", }, }, - ["2285_AddedPhysicalDamageVsBleedingEnemies"] = { + ["2327_AddedPhysicalDamageVsBleedingEnemies"] = { ["Gloves"] = { ["max"] = 14.5, ["min"] = 9.5, @@ -38672,7 +39906,17 @@ return { ["type"] = "explicit", }, }, - ["2291_LightRadiusAndAccuracy"] = { + ["232_SupportedByEnlighten"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2065361612", + ["text"] = "Socketed Gems are Supported by Level # Enlighten", + ["type"] = "explicit", + }, + }, + ["2333_LightRadiusAndAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38682,7 +39926,7 @@ return { ["type"] = "explicit", }, }, - ["2291_LightRadiusAndAccuracyPercent"] = { + ["2333_LightRadiusAndAccuracyPercent"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 5, @@ -38700,7 +39944,7 @@ return { ["type"] = "explicit", }, }, - ["2291_LocalLightRadiusAndAccuracy"] = { + ["2333_LocalLightRadiusAndAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38710,7 +39954,7 @@ return { ["type"] = "explicit", }, }, - ["2291_LocalLightRadiusAndAccuracyPercent"] = { + ["2333_LocalLightRadiusAndAccuracyPercent"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 5, @@ -38772,7 +40016,7 @@ return { ["type"] = "explicit", }, }, - ["2299_ManaRegenerationWhileShocked"] = { + ["2341_ManaRegenerationWhileShocked"] = { ["Boots"] = { ["max"] = 70, ["min"] = 70, @@ -38786,7 +40030,7 @@ return { ["type"] = "explicit", }, }, - ["2314_CurseOnHitLevelVulnerabilityMod"] = { + ["2356_CurseOnHitLevelVulnerabilityMod"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -38799,7 +40043,7 @@ return { ["type"] = "explicit", }, }, - ["2315_CurseLevel10VulnerabilityOnHit"] = { + ["2357_CurseLevel10VulnerabilityOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -38809,7 +40053,7 @@ return { ["type"] = "explicit", }, }, - ["2316_CurseOnHitLevelElementalWeaknessMod"] = { + ["2358_CurseOnHitLevelElementalWeaknessMod"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -38822,7 +40066,29 @@ return { ["type"] = "explicit", }, }, - ["2318_ConductivityOnHitLevel"] = { + ["235_FireDamagePrefixFirePenetration"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3265951306", + ["text"] = "Socketed Gems are Supported by Level # Fire Penetration", + ["type"] = "explicit", + }, + }, + ["2360_ConductivityOnHitLevel"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -38843,7 +40109,7 @@ return { ["type"] = "explicit", }, }, - ["2319_CurseOnHitDespair"] = { + ["2361_CurseOnHitDespair"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -38904,7 +40170,7 @@ return { ["type"] = "explicit", }, }, - ["2319_CurseOnHitDespairMod"] = { + ["2361_CurseOnHitDespairMod"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -38917,7 +40183,7 @@ return { ["type"] = "explicit", }, }, - ["2321_FlammabilityOnHitLevel"] = { + ["2363_FlammabilityOnHitLevel"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -38938,7 +40204,7 @@ return { ["type"] = "explicit", }, }, - ["2322_FrostbiteOnHitLevel"] = { + ["2364_FrostbiteOnHitLevel"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -38959,7 +40225,7 @@ return { ["type"] = "explicit", }, }, - ["2325_MeleeDamageAndMeleeRange"] = { + ["2367_MeleeDamageAndMeleeRange"] = { ["Amulet"] = { ["max"] = 0.2, ["min"] = 0.1, @@ -38977,7 +40243,7 @@ return { ["type"] = "explicit", }, }, - ["2325_MeleeRangeAndMeleeGemLevel"] = { + ["2367_MeleeRangeAndMeleeGemLevel"] = { ["Gloves"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -38995,7 +40261,7 @@ return { ["type"] = "explicit", }, }, - ["2325_MeleeWeaponAndUnarmedRange"] = { + ["2367_MeleeWeaponAndUnarmedRange"] = { ["Gloves"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -39009,7 +40275,7 @@ return { ["type"] = "explicit", }, }, - ["2343_GlobalItemAttributeRequirements"] = { + ["2385_GlobalItemAttributeRequirements"] = { ["Amulet"] = { ["max"] = -5, ["min"] = -15, @@ -39023,7 +40289,7 @@ return { ["type"] = "explicit", }, }, - ["2350_ItemDropsOnGuardianDeath"] = { + ["2392_ItemDropsOnGuardianDeath"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -39036,7 +40302,7 @@ return { ["type"] = "explicit", }, }, - ["2355_FasterIgniteDamage"] = { + ["2397_FasterIgniteDamage"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 8, @@ -39070,7 +40336,7 @@ return { ["type"] = "explicit", }, }, - ["2355_FasterIgniteDamageMaven"] = { + ["2397_FasterIgniteDamageMaven"] = { ["Boots"] = { ["max"] = 15, ["min"] = 11, @@ -39084,7 +40350,7 @@ return { ["type"] = "explicit", }, }, - ["2355_IgniteChanceAndDamageMaven"] = { + ["2397_IgniteChanceAndDamageMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -39098,7 +40364,7 @@ return { ["type"] = "explicit", }, }, - ["2369_SummonTotemCastSpeed"] = { + ["2411_SummonTotemCastSpeed"] = { ["Amulet"] = { ["max"] = 40, ["min"] = 18, @@ -39120,7 +40386,7 @@ return { ["type"] = "explicit", }, }, - ["2369_TotemSpeedAttackSupported"] = { + ["2411_TotemSpeedAttackSupported"] = { ["Boots"] = { ["max"] = 20, ["min"] = 8, @@ -39134,7 +40400,7 @@ return { ["type"] = "explicit", }, }, - ["2369_TotemSpeedSpellSupported"] = { + ["2411_TotemSpeedSpellSupported"] = { ["Boots"] = { ["max"] = 20, ["min"] = 8, @@ -39148,7 +40414,7 @@ return { ["type"] = "explicit", }, }, - ["2387_CurseEffectiveness"] = { + ["2429_CurseEffectiveness"] = { ["Shield"] = { ["max"] = 12, ["min"] = 4, @@ -39162,7 +40428,7 @@ return { ["type"] = "explicit", }, }, - ["2389_MarkEffect"] = { + ["2431_MarkEffect"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 25, @@ -39176,21 +40442,7 @@ return { ["type"] = "explicit", }, }, - ["239_IgniteDurationSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2420410470", - ["text"] = "Socketed Gems are Supported by Level # Immolate", - ["type"] = "explicit", - }, - }, - ["2406_MapExtraInvasionBosses"] = { + ["2451_MapExtraInvasionBosses"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -39199,7 +40451,7 @@ return { ["type"] = "explicit", }, }, - ["2414_EnduranceChargeOnKillChance"] = { + ["2460_EnduranceChargeOnKillChance"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 4, @@ -39249,7 +40501,7 @@ return { ["type"] = "explicit", }, }, - ["2414_EnduranceChargeOnKillChanceMaven"] = { + ["2460_EnduranceChargeOnKillChanceMaven"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 7, @@ -39299,7 +40551,7 @@ return { ["type"] = "explicit", }, }, - ["2414_MinimumEnduranceChargesAndOnKillChance"] = { + ["2460_MinimumEnduranceChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 3, @@ -39317,7 +40569,7 @@ return { ["type"] = "explicit", }, }, - ["2415_MinimumEnduranceChargesAndOnKillLose"] = { + ["2461_MinimumEnduranceChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39327,7 +40579,7 @@ return { ["type"] = "explicit", }, }, - ["2416_FrenzyChargeOnKillChance"] = { + ["2462_FrenzyChargeOnKillChance"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 4, @@ -39381,7 +40633,7 @@ return { ["type"] = "explicit", }, }, - ["2416_FrenzyChargeOnKillChanceMaven"] = { + ["2462_FrenzyChargeOnKillChanceMaven"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 7, @@ -39435,7 +40687,7 @@ return { ["type"] = "explicit", }, }, - ["2416_MinimumFrenzyChargesAndOnKillChance"] = { + ["2462_MinimumFrenzyChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 3, @@ -39453,7 +40705,7 @@ return { ["type"] = "explicit", }, }, - ["2417_MinimumFrenzyChargesAndOnKillLose"] = { + ["2463_MinimumFrenzyChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39463,7 +40715,7 @@ return { ["type"] = "explicit", }, }, - ["2418_MinimumPowerChargesAndOnKillChance"] = { + ["2464_MinimumPowerChargesAndOnKillChance"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 3, @@ -39481,7 +40733,7 @@ return { ["type"] = "explicit", }, }, - ["2418_PowerChargeOnKillChance"] = { + ["2464_PowerChargeOnKillChance"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 4, @@ -39523,7 +40775,7 @@ return { ["type"] = "explicit", }, }, - ["2418_PowerChargeOnKillChanceMaven"] = { + ["2464_PowerChargeOnKillChanceMaven"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 11, @@ -39565,7 +40817,7 @@ return { ["type"] = "explicit", }, }, - ["2419_MinimumPowerChargesAndOnKillLose"] = { + ["2465_MinimumPowerChargesAndOnKillLose"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39575,21 +40827,7 @@ return { ["type"] = "explicit", }, }, - ["242_BurningDamageSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2680613507", - ["text"] = "Socketed Gems are Supported by Level # Burning Damage", - ["type"] = "explicit", - }, - }, - ["2430_EnergyShieldRecoveryRateMaven"] = { + ["2476_EnergyShieldRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 100, ["min"] = 50, @@ -39603,7 +40841,7 @@ return { ["type"] = "explicit", }, }, - ["2431_EnergyShieldAndRegen"] = { + ["2477_EnergyShieldAndRegen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39613,7 +40851,7 @@ return { ["type"] = "explicit", }, }, - ["2431_EnergyShieldRegenerationPerMinute"] = { + ["2477_EnergyShieldRegenerationPerMinute"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -39639,7 +40877,7 @@ return { ["type"] = "explicit", }, }, - ["2431_EnergyShieldRegenerationPerMinuteMaven"] = { + ["2477_EnergyShieldRegenerationPerMinuteMaven"] = { ["Helmet"] = { ["max"] = 1.5, ["min"] = 1, @@ -39653,7 +40891,7 @@ return { ["type"] = "explicit", }, }, - ["2432_EnergyShieldAndDegenGracePeriod"] = { + ["2478_EnergyShieldAndDegenGracePeriod"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39663,7 +40901,75 @@ return { ["type"] = "explicit", }, }, - ["243_CriticalStrikeChanceSpellsSupported"] = { + ["249_IgniteDurationSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2420410470", + ["text"] = "Socketed Gems are Supported by Level # Immolate", + ["type"] = "explicit", + }, + }, + ["2528_DamageRemovedFromManaBeforeLife"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["252_BurningDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2680613507", + ["text"] = "Socketed Gems are Supported by Level # Burning Damage", + ["type"] = "explicit", + }, + }, + ["2535_EnemiesExplodeOnDeath"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3457687358", + ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", + ["type"] = "explicit", + }, + }, + ["253_CriticalStrikeChanceSpellsSupported"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 18, @@ -39689,7 +40995,7 @@ return { ["type"] = "explicit", }, }, - ["243_CriticalStrikeChanceSupported"] = { + ["253_CriticalStrikeChanceSupported"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 18, @@ -39743,7 +41049,7 @@ return { ["type"] = "explicit", }, }, - ["244_SkillEffectDurationSupported"] = { + ["254_SkillEffectDurationSupported"] = { ["Boots"] = { ["max"] = 20, ["min"] = 15, @@ -39757,71 +41063,7 @@ return { ["type"] = "explicit", }, }, - ["247_LocalIncreasedPhysicalDamagePercentIronGrip"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_251446805", - ["text"] = "Socketed Gems are Supported by Level # Iron Grip", - ["type"] = "explicit", - }, - }, - ["2482_DamageRemovedFromManaBeforeLife"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, - ["2489_EnemiesExplodeOnDeath"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3457687358", - ["text"] = "Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage", - ["type"] = "explicit", - }, - }, - ["249_SupportedByItemRarityUnique"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3587013273", - ["text"] = "Socketed Gems are Supported by Level # Item Rarity", - ["type"] = "explicit", - }, - }, - ["2523_SpellDamagePer10Intelligence"] = { + ["2569_SpellDamagePer10Intelligence"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -39839,7 +41081,7 @@ return { ["type"] = "explicit", }, }, - ["2526_LightRadiusScalesWithEnergyShield"] = { + ["2572_LightRadiusScalesWithEnergyShield"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -39856,7 +41098,7 @@ return { ["type"] = "explicit", }, }, - ["2527_FlaskEffect"] = { + ["2573_FlaskEffect"] = { ["Belt"] = { ["max"] = 12, ["min"] = 4, @@ -39870,7 +41112,7 @@ return { ["type"] = "explicit", }, }, - ["2527_FlaskEffectAndFlaskChargesGained"] = { + ["2573_FlaskEffectAndFlaskChargesGained"] = { ["Belt"] = { ["max"] = 18, ["min"] = 8, @@ -39884,7 +41126,7 @@ return { ["type"] = "explicit", }, }, - ["2528_MagicUtilityFlaskEffect"] = { + ["2574_MagicUtilityFlaskEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39894,33 +41136,7 @@ return { ["type"] = "explicit", }, }, - ["252_LightningDamagePrefixLightningPenetration"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3354027870", - ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", - ["type"] = "explicit", - }, - }, - ["2530_LocalMeleeWeaponRange"] = { + ["2576_LocalMeleeWeaponRange"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -39930,7 +41146,7 @@ return { ["type"] = "explicit", }, }, - ["2530_LocalWeaponRangeUber"] = { + ["2576_LocalWeaponRangeUber"] = { ["2HAxe"] = { ["max"] = 0.3, ["min"] = 0.1, @@ -39960,77 +41176,41 @@ return { ["type"] = "explicit", }, }, - ["2541_RarityDuringFlaskEffect"] = { + ["257_LocalIncreasedPhysicalDamagePercentIronGrip"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_301625329", - ["text"] = "#% increased Rarity of Items found during any Flask Effect", + ["id"] = "explicit.stat_251446805", + ["text"] = "Socketed Gems are Supported by Level # Iron Grip", ["type"] = "explicit", }, }, - ["254_ChanceToMaimSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, + ["2587_RarityDuringFlaskEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["id"] = "explicit.stat_301625329", + ["text"] = "#% increased Rarity of Items found during any Flask Effect", ["type"] = "explicit", }, }, - ["254_SupportedByMaim"] = { + ["259_SupportedByItemRarityUnique"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3826977109", - ["text"] = "Socketed Gems are Supported by Level # Maim", + ["id"] = "explicit.stat_3587013273", + ["text"] = "Socketed Gems are Supported by Level # Item Rarity", ["type"] = "explicit", }, }, - ["2572_TotemElementalResistancesForJewel"] = { + ["2618_TotemElementalResistancesForJewel"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 6, @@ -40048,7 +41228,7 @@ return { ["type"] = "explicit", }, }, - ["2583_FireAndColdResistance"] = { + ["2629_FireAndColdResistance"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 10, @@ -40146,7 +41326,7 @@ return { ["type"] = "explicit", }, }, - ["2583_FireColdResistanceForJewel"] = { + ["2629_FireColdResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 12, ["min"] = 10, @@ -40168,7 +41348,33 @@ return { ["type"] = "explicit", }, }, - ["2584_FireAndLightningResistance"] = { + ["262_LightningDamagePrefixLightningPenetration"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3354027870", + ["text"] = "Socketed Gems are Supported by Level # Lightning Penetration", + ["type"] = "explicit", + }, + }, + ["2630_FireAndLightningResistance"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 10, @@ -40266,7 +41472,7 @@ return { ["type"] = "explicit", }, }, - ["2584_FireLightningResistanceForJewel"] = { + ["2630_FireLightningResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 12, ["min"] = 10, @@ -40288,7 +41494,7 @@ return { ["type"] = "explicit", }, }, - ["2585_ColdAndLightningResistance"] = { + ["2631_ColdAndLightningResistance"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 10, @@ -40386,7 +41592,7 @@ return { ["type"] = "explicit", }, }, - ["2585_ColdLightningResistanceForJewel"] = { + ["2631_ColdLightningResistanceForJewel"] = { ["AbyssJewel"] = { ["max"] = 12, ["min"] = 10, @@ -40408,7 +41614,7 @@ return { ["type"] = "explicit", }, }, - ["2586_ChanceToFreezeShockIgniteProliferation"] = { + ["2632_ChanceToFreezeShockIgniteProliferation"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -40426,7 +41632,7 @@ return { ["type"] = "explicit", }, }, - ["2586_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["2632_ChanceToFreezeShockIgniteUnboundAilments"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -40444,7 +41650,7 @@ return { ["type"] = "explicit", }, }, - ["2596_GlobalChanceToBlindOnHitMaven"] = { + ["2642_GlobalChanceToBlindOnHitMaven"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 20, @@ -40462,7 +41668,67 @@ return { ["type"] = "explicit", }, }, - ["2611_OnslaughtWhenHitForDuration"] = { + ["264_ChanceToMaimSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, + ["264_SupportedByMaim"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3826977109", + ["text"] = "Socketed Gems are Supported by Level # Maim", + ["type"] = "explicit", + }, + }, + ["2657_OnslaughtWhenHitForDuration"] = { ["Chest"] = { ["max"] = 6, ["min"] = 6, @@ -40476,7 +41742,7 @@ return { ["type"] = "explicit", }, }, - ["2617_AllDefences"] = { + ["2663_AllDefences"] = { ["AbyssJewel"] = { ["max"] = 6, ["min"] = 4, @@ -40498,7 +41764,7 @@ return { ["type"] = "explicit", }, }, - ["2617_IncreasedDefensesForJewel"] = { + ["2663_IncreasedDefensesForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -40508,7 +41774,7 @@ return { ["type"] = "explicit", }, }, - ["2627_FishingLineStrength"] = { + ["2673_FishingLineStrength"] = { ["FishingRod"] = { ["max"] = 40, ["min"] = 20, @@ -40522,7 +41788,7 @@ return { ["type"] = "explicit", }, }, - ["2628_FishingPoolConsumption"] = { + ["2674_FishingPoolConsumption"] = { ["FishingRod"] = { ["max"] = 30, ["min"] = 15, @@ -40536,7 +41802,7 @@ return { ["type"] = "explicit", }, }, - ["2629_FishingLureType"] = { + ["2675_FishingLureType"] = { ["FishingRod"] = { ["max"] = 1, ["min"] = 1, @@ -40549,32 +41815,7 @@ return { ["type"] = "explicit", }, }, - ["262_IncreasedCastSpeedSpellEcho"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Dagger"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_725896422", - ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", - ["type"] = "explicit", - }, - }, - ["2630_FishingHookType"] = { + ["2676_FishingHookType"] = { ["FishingRod"] = { ["max"] = 1, ["min"] = 1, @@ -40587,7 +41828,7 @@ return { ["type"] = "explicit", }, }, - ["2631_FishingCastDistance"] = { + ["2677_FishingCastDistance"] = { ["FishingRod"] = { ["max"] = 50, ["min"] = 30, @@ -40601,7 +41842,7 @@ return { ["type"] = "explicit", }, }, - ["2632_FishingQuantity"] = { + ["2678_FishingQuantity"] = { ["FishingRod"] = { ["max"] = 20, ["min"] = 15, @@ -40615,7 +41856,7 @@ return { ["type"] = "explicit", }, }, - ["2633_FishingRarity"] = { + ["2679_FishingRarity"] = { ["FishingRod"] = { ["max"] = 40, ["min"] = 25, @@ -40629,61 +41870,7 @@ return { ["type"] = "explicit", }, }, - ["264_LocalIncreasedAttackSpeedOnslaught"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, - ["264_LocalPhysicalDamagePercentOnslaught"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, - ["264_SupportedByOnslaughtWeapon"] = { - ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3237923082", - ["text"] = "Socketed Gems are Supported by Level # Momentum", - ["type"] = "explicit", - }, - }, - ["2655_AllColdDamageCanIgnite"] = { + ["2701_AllColdDamageCanIgnite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -40692,7 +41879,7 @@ return { ["type"] = "explicit", }, }, - ["2660_AllFireDamageCanShock"] = { + ["2706_AllFireDamageCanShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -40701,7 +41888,7 @@ return { ["type"] = "explicit", }, }, - ["2667_AllLightningDamageCanFreeze"] = { + ["2713_AllLightningDamageCanFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -40710,35 +41897,32 @@ return { ["type"] = "explicit", }, }, - ["266_SupportedByVolleySpeed"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, + ["272_IncreasedCastSpeedSpellEcho"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2696557965", - ["text"] = "Socketed Gems are Supported by Level # Volley", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["267_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { - ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2513293614", - ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", + ["id"] = "explicit.stat_725896422", + ["text"] = "Socketed Gems are Supported by Level 10 Spell Echo", ["type"] = "explicit", }, }, - ["2687_MinionBlockForJewel"] = { + ["2733_MinionBlockForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -40748,7 +41932,7 @@ return { ["type"] = "explicit", }, }, - ["2691_MinionAttackAndCastSpeed"] = { + ["2737_MinionAttackAndCastSpeed"] = { ["AbyssJewel"] = { ["max"] = 6, ["min"] = 4, @@ -40770,7 +41954,7 @@ return { ["type"] = "explicit", }, }, - ["2691_MinionAttackAndCastSpeedOnWeapon"] = { + ["2737_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { ["max"] = 38, ["min"] = 10, @@ -40832,7 +42016,7 @@ return { ["type"] = "explicit", }, }, - ["2692_MinionAttackAndCastSpeed"] = { + ["2738_MinionAttackAndCastSpeed"] = { ["AbyssJewel"] = { ["max"] = 6, ["min"] = 4, @@ -40854,7 +42038,7 @@ return { ["type"] = "explicit", }, }, - ["2692_MinionAttackAndCastSpeedOnWeapon"] = { + ["2738_MinionAttackAndCastSpeedOnWeapon"] = { ["1HAxe"] = { ["max"] = 38, ["min"] = 10, @@ -40916,7 +42100,7 @@ return { ["type"] = "explicit", }, }, - ["2694_MinionLifeLeech"] = { + ["2740_MinionLifeLeech"] = { ["AbyssJewel"] = { ["max"] = 0.5, ["min"] = 0.3, @@ -40934,7 +42118,7 @@ return { ["type"] = "explicit", }, }, - ["2695_MinionLifeMaven"] = { + ["2741_MinionLifeMaven"] = { ["Helmet"] = { ["max"] = 1.5, ["min"] = 1, @@ -40948,7 +42132,7 @@ return { ["type"] = "explicit", }, }, - ["2695_MinionLifeRegeneration"] = { + ["2741_MinionLifeRegeneration"] = { ["AbyssJewel"] = { ["max"] = 0.8, ["min"] = 0.4, @@ -40966,7 +42150,7 @@ return { ["type"] = "explicit", }, }, - ["2696_AllResistancesMinionResistances"] = { + ["2742_AllResistancesMinionResistances"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 5, @@ -40984,7 +42168,7 @@ return { ["type"] = "explicit", }, }, - ["2696_MinionElementalResistance"] = { + ["2742_MinionElementalResistance"] = { ["Ring"] = { ["max"] = 30, ["min"] = 11, @@ -41002,7 +42186,7 @@ return { ["type"] = "explicit", }, }, - ["2696_MinionElementalResistancesForJewel"] = { + ["2742_MinionElementalResistancesForJewel"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 6, @@ -41024,7 +42208,7 @@ return { ["type"] = "explicit", }, }, - ["2697_MinionChaosResistance"] = { + ["2743_MinionChaosResistance"] = { ["AbyssJewel"] = { ["max"] = 11, ["min"] = 7, @@ -41042,7 +42226,61 @@ return { ["type"] = "explicit", }, }, - ["2719_PhysicalDamageAddedAsRandomElement"] = { + ["274_LocalIncreasedAttackSpeedOnslaught"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["274_LocalPhysicalDamagePercentOnslaught"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["274_SupportedByOnslaughtWeapon"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3237923082", + ["text"] = "Socketed Gems are Supported by Level # Momentum", + ["type"] = "explicit", + }, + }, + ["2765_PhysicalDamageAddedAsRandomElement"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 7, @@ -41068,25 +42306,25 @@ return { ["type"] = "explicit", }, }, - ["271_PoisonDurationWeaponSupported"] = { + ["276_SupportedByVolleySpeed"] = { ["1HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, - ["Dagger"] = { + ["Wand"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2228279620", - ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["id"] = "explicit.stat_2696557965", + ["text"] = "Socketed Gems are Supported by Level # Volley", ["type"] = "explicit", }, }, - ["2726_IncreasedWandDamageForJewel"] = { + ["2772_IncreasedWandDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 14, @@ -41104,45 +42342,17 @@ return { ["type"] = "explicit", }, }, - ["272_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, - ["272_SupportedByPowerChargeOnCritWeapon"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", - ["type"] = "explicit", - }, - }, - ["272_WeaponSpellDamagePowerChargeOnCrit"] = { + ["277_LocalIncreasedPhysicalDamagePercentProjectileAttackDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015918489", - ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["id"] = "explicit.stat_2513293614", + ["text"] = "Socketed Gems are Supported by Level # Vicious Projectiles", ["type"] = "explicit", }, }, - ["2740_BlindOnHitSupported"] = { + ["2786_BlindOnHitSupported"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 5, @@ -41156,7 +42366,7 @@ return { ["type"] = "explicit", }, }, - ["2740_GlobalChanceToBlindOnHit"] = { + ["2786_GlobalChanceToBlindOnHit"] = { ["Boots"] = { ["max"] = 6, ["min"] = 4, @@ -41186,7 +42396,7 @@ return { ["type"] = "explicit", }, }, - ["2740_GlobalChanceToBlindOnHitMaven"] = { + ["2786_GlobalChanceToBlindOnHitMaven"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 12, @@ -41204,7 +42414,7 @@ return { ["type"] = "explicit", }, }, - ["2756_NearbyEnemiesAreBlindedMaven"] = { + ["2802_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -41217,7 +42427,7 @@ return { ["type"] = "explicit", }, }, - ["2760_ArmourPenetration"] = { + ["2806_ArmourPenetration"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 7, @@ -41255,7 +42465,7 @@ return { ["type"] = "explicit", }, }, - ["2762_ElementalPenetration"] = { + ["2808_ElementalPenetration"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 4, @@ -41337,7 +42547,7 @@ return { ["type"] = "explicit", }, }, - ["2763_FireResistancePenetration"] = { + ["2809_FireResistancePenetration"] = { ["1HAxe"] = { ["max"] = 8, ["min"] = 4, @@ -41415,7 +42625,7 @@ return { ["type"] = "explicit", }, }, - ["2763_SpellAddedFireDamagePenetrationHybrid"] = { + ["2809_SpellAddedFireDamagePenetrationHybrid"] = { ["1HMace"] = { ["max"] = 4, ["min"] = 4, @@ -41449,7 +42659,7 @@ return { ["type"] = "explicit", }, }, - ["2764_ColdResistancePenetration"] = { + ["2810_ColdResistancePenetration"] = { ["1HAxe"] = { ["max"] = 8, ["min"] = 3, @@ -41527,7 +42737,7 @@ return { ["type"] = "explicit", }, }, - ["2764_SpellAddedColdDamagePenetrationHybrid"] = { + ["2810_SpellAddedColdDamagePenetrationHybrid"] = { ["1HMace"] = { ["max"] = 4, ["min"] = 4, @@ -41561,7 +42771,7 @@ return { ["type"] = "explicit", }, }, - ["2765_LightningResistancePenetration"] = { + ["2811_LightningResistancePenetration"] = { ["1HAxe"] = { ["max"] = 8, ["min"] = 5, @@ -41639,7 +42849,7 @@ return { ["type"] = "explicit", }, }, - ["2765_SpellAddedLightningDamagePenetrationHybrid"] = { + ["2811_SpellAddedLightningDamagePenetrationHybrid"] = { ["1HMace"] = { ["max"] = 4, ["min"] = 4, @@ -41673,7 +42883,25 @@ return { ["type"] = "explicit", }, }, - ["2774_ChanceToGainOnslaughtOnKill"] = { + ["281_PoisonDurationWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2228279620", + ["text"] = "Socketed Gems are Supported by Level # Critical Strike Affliction", + ["type"] = "explicit", + }, + }, + ["2820_ChanceToGainOnslaughtOnKill"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 10, @@ -41747,7 +42975,7 @@ return { ["type"] = "explicit", }, }, - ["2774_ChanceToGainOnslaughtOnKillMaven"] = { + ["2820_ChanceToGainOnslaughtOnKillMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 8, @@ -41765,7 +42993,7 @@ return { ["type"] = "explicit", }, }, - ["2774_IncreasedAttackAndCastSpeedSupportedMaven"] = { + ["2820_IncreasedAttackAndCastSpeedSupportedMaven"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 5, @@ -41779,7 +43007,7 @@ return { ["type"] = "explicit", }, }, - ["2774_MovementVelocityAndOnslaughtOnKill"] = { + ["2820_MovementVelocityAndOnslaughtOnKill"] = { ["Boots"] = { ["max"] = 16, ["min"] = 8, @@ -41793,35 +43021,45 @@ return { ["type"] = "explicit", }, }, - ["277_TotemDamageAttackSupported"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 18, - }, + ["282_LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", ["type"] = "explicit", }, }, - ["277_TotemSpeedAttackSupported"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 18, + ["282_SupportedByPowerChargeOnCritWeapon"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3030692053", - ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", ["type"] = "explicit", }, }, - ["2795_IncreasedDamagePerCurse"] = { + ["282_WeaponSpellDamagePowerChargeOnCrit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015918489", + ["text"] = "Socketed Gems are Supported by Level # Power Charge On Critical Strike", + ["type"] = "explicit", + }, + }, + ["2841_IncreasedDamagePerCurse"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -41831,7 +43069,7 @@ return { ["type"] = "explicit", }, }, - ["2805_MinionAreaOfEffect"] = { + ["2851_MinionAreaOfEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -41841,85 +43079,49 @@ return { ["type"] = "explicit", }, }, - ["280_SupportedByLessDuration"] = { - ["Helmet"] = { + ["287_TotemDamageAttackSupported"] = { + ["Boots"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487643588", - ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", ["type"] = "explicit", }, }, - ["2839_RecoverLifePercentOnBlock"] = { - ["Shield"] = { - ["max"] = 5, - ["min"] = 3, + ["287_TotemSpeedAttackSupported"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442647190", - ["text"] = "Recover #% of Life when you Block", + ["id"] = "explicit.stat_3030692053", + ["text"] = "Socketed Gems are Supported by Level # Ballista Totem", ["type"] = "explicit", }, }, - ["283_LocalPhysicalDamagePercentRuthless"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, + ["2885_RecoverLifePercentOnBlock"] = { + ["Shield"] = { + ["max"] = 5, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3796013729", - ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of Life when you Block", ["type"] = "explicit", }, }, - ["2842_DamageWhileLeeching"] = { + ["2888_DamageWhileLeeching"] = { ["1HSword"] = { ["max"] = 30, ["min"] = 18, @@ -41953,7 +43155,7 @@ return { ["type"] = "explicit", }, }, - ["2859_ChanceToGainUnholyMightOnKillAbyss"] = { + ["2905_ChanceToGainUnholyMightOnKillAbyss"] = { ["AbyssJewel"] = { ["max"] = 5, ["min"] = 2, @@ -41971,7 +43173,21 @@ return { ["type"] = "explicit", }, }, - ["2871_VaalSkillDamage"] = { + ["290_SupportedByLessDuration"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2487643588", + ["text"] = "Socketed Gems are Supported by Level # Less Duration", + ["type"] = "explicit", + }, + }, + ["2917_VaalSkillDamage"] = { ["Belt"] = { ["max"] = 40, ["min"] = 20, @@ -41989,7 +43205,7 @@ return { ["type"] = "explicit", }, }, - ["2880_AdditionalVaalSoulOnKill"] = { + ["2926_AdditionalVaalSoulOnKill"] = { ["AbyssJewel"] = { ["max"] = 5, ["min"] = 3, @@ -42027,7 +43243,7 @@ return { ["type"] = "explicit", }, }, - ["2881_VaalSkillDuration"] = { + ["2927_VaalSkillDuration"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 15, @@ -42041,7 +43257,7 @@ return { ["type"] = "explicit", }, }, - ["2883_VaalSkillCriticalStrikeChance"] = { + ["2929_VaalSkillCriticalStrikeChance"] = { ["Gloves"] = { ["max"] = 120, ["min"] = 80, @@ -42059,57 +43275,7 @@ return { ["type"] = "explicit", }, }, - ["288_ProjectileDamageSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1390285657", - ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", - ["type"] = "explicit", - }, - }, - ["290_SupportedBySpellCascadeArea"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_503990161", - ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", - ["type"] = "explicit", - }, - }, - ["2916_ChillEnemiesWhenHit"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2459809121", - ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", - ["type"] = "explicit", - }, - }, - ["293_SupportedBySpiritStrikeArea"] = { + ["293_LocalPhysicalDamagePercentRuthless"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 16, @@ -42154,12 +43320,36 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_696805682", - ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", + ["id"] = "explicit.stat_3796013729", + ["text"] = "Socketed Gems are Supported by Level # Ruthless", + ["type"] = "explicit", + }, + }, + ["2962_ChillEnemiesWhenHit"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2459809121", + ["text"] = "Chill Enemy for # second when Hit, reducing their Action Speed by 30%", + ["type"] = "explicit", + }, + }, + ["298_ProjectileDamageSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1390285657", + ["text"] = "Socketed Gems are Supported by Level # Slower Projectiles", ["type"] = "explicit", }, }, - ["2945_BleedDamageAndDuration"] = { + ["2991_BleedDamageAndDuration"] = { ["Ring"] = { ["max"] = 22, ["min"] = 8, @@ -42173,7 +43363,7 @@ return { ["type"] = "explicit", }, }, - ["2945_BleedDamageForJewel"] = { + ["2991_BleedDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 16, @@ -42191,7 +43381,7 @@ return { ["type"] = "explicit", }, }, - ["2945_BleedOnHitAndDamage"] = { + ["2991_BleedOnHitAndDamage"] = { ["Quiver"] = { ["max"] = 30, ["min"] = 15, @@ -42205,7 +43395,7 @@ return { ["type"] = "explicit", }, }, - ["2945_BleedingDamageChance"] = { + ["2991_BleedingDamageChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42215,7 +43405,7 @@ return { ["type"] = "explicit", }, }, - ["2945_BleedingDamageChanceWeaponSuffix"] = { + ["2991_BleedingDamageChanceWeaponSuffix"] = { ["1HAxe"] = { ["max"] = 50, ["min"] = 21, @@ -42261,7 +43451,7 @@ return { ["type"] = "explicit", }, }, - ["2945_BleedingDamageSupported"] = { + ["2991_BleedingDamageSupported"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 20, @@ -42275,7 +43465,7 @@ return { ["type"] = "explicit", }, }, - ["2946_FasterPoisonDamageMaven"] = { + ["2992_FasterPoisonDamageMaven"] = { ["Boots"] = { ["max"] = 20, ["min"] = 10, @@ -42289,7 +43479,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonChanceAndDurationForJewel"] = { + ["2992_PoisonChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 8, ["min"] = 6, @@ -42307,7 +43497,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonDamageAndDuration"] = { + ["2992_PoisonDamageAndDuration"] = { ["Ring"] = { ["max"] = 10, ["min"] = 5, @@ -42321,7 +43511,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonDuration"] = { + ["2992_PoisonDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42331,7 +43521,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonDurationChaosDamage"] = { + ["2992_PoisonDurationChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42341,7 +43531,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonDurationSupported"] = { + ["2992_PoisonDurationSupported"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 17, @@ -42355,7 +43545,7 @@ return { ["type"] = "explicit", }, }, - ["2946_PoisonDurationWeaponSupported"] = { + ["2992_PoisonDurationWeaponSupported"] = { ["1HWeapon"] = { ["max"] = 14, ["min"] = 6, @@ -42373,7 +43563,7 @@ return { ["type"] = "explicit", }, }, - ["2949_PoisonChanceAndDurationForJewel"] = { + ["2995_PoisonChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 5, ["min"] = 3, @@ -42391,7 +43581,7 @@ return { ["type"] = "explicit", }, }, - ["2949_PoisonOnHitAndDamage"] = { + ["2995_PoisonOnHitAndDamage"] = { ["Quiver"] = { ["max"] = 20, ["min"] = 15, @@ -42405,7 +43595,7 @@ return { ["type"] = "explicit", }, }, - ["2950_AbyssMinionPoisonOnHitChance"] = { + ["2996_AbyssMinionPoisonOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -42423,7 +43613,7 @@ return { ["type"] = "explicit", }, }, - ["2950_MinionsPoisonEnemiesOnHit"] = { + ["2996_MinionsPoisonEnemiesOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42433,7 +43623,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamage"] = { + ["3003_PoisonDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42443,7 +43633,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageAddedChaosToAttacks"] = { + ["3003_PoisonDamageAddedChaosToAttacks"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42453,7 +43643,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageAddedChaosToSpells"] = { + ["3003_PoisonDamageAddedChaosToSpells"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42463,7 +43653,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageAndDuration"] = { + ["3003_PoisonDamageAndDuration"] = { ["Ring"] = { ["max"] = 22, ["min"] = 8, @@ -42477,7 +43667,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageAndLocalChanceOnHit"] = { + ["3003_PoisonDamageAndLocalChanceOnHit"] = { ["1HSword"] = { ["max"] = 50, ["min"] = 21, @@ -42515,7 +43705,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageForJewel"] = { + ["3003_PoisonDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 16, @@ -42533,7 +43723,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageSupported"] = { + ["3003_PoisonDamageSupported"] = { ["Gloves"] = { ["max"] = 35, ["min"] = 20, @@ -42547,7 +43737,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonDamageWeaponSupported"] = { + ["3003_PoisonDamageWeaponSupported"] = { ["1HWeapon"] = { ["max"] = 26, ["min"] = 19, @@ -42565,7 +43755,7 @@ return { ["type"] = "explicit", }, }, - ["2957_PoisonOnHitAndDamage"] = { + ["3003_PoisonOnHitAndDamage"] = { ["Quiver"] = { ["max"] = 30, ["min"] = 15, @@ -42579,7 +43769,7 @@ return { ["type"] = "explicit", }, }, - ["2962_MovementSpeedDuringFlaskEffect"] = { + ["3008_MovementSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 10, ["min"] = 6, @@ -42593,7 +43783,33 @@ return { ["type"] = "explicit", }, }, - ["2968_NoExtraBleedDamageWhileMoving"] = { + ["300_SupportedBySpellCascadeArea"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_503990161", + ["text"] = "Socketed Gems are Supported by Level # Spell Cascade", + ["type"] = "explicit", + }, + }, + ["3014_NoExtraBleedDamageWhileMoving"] = { ["Quiver"] = { ["max"] = 1, ["min"] = 1, @@ -42610,7 +43826,7 @@ return { ["type"] = "explicit", }, }, - ["2968_NoExtraDamageFromBleedMoving"] = { + ["3014_NoExtraDamageFromBleedMoving"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -42619,7 +43835,7 @@ return { ["type"] = "explicit", }, }, - ["2975_DamagePerEnduranceCharge"] = { + ["3021_DamagePerEnduranceCharge"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 3, @@ -42685,7 +43901,7 @@ return { ["type"] = "explicit", }, }, - ["2992_AttackSpeedWithFortify"] = { + ["3038_AttackSpeedWithFortify"] = { ["1HSword"] = { ["max"] = 15, ["min"] = 10, @@ -42711,7 +43927,7 @@ return { ["type"] = "explicit", }, }, - ["2993_ChanceToBlockIfDamagedRecently"] = { + ["3039_ChanceToBlockIfDamagedRecently"] = { ["2HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -42737,35 +43953,57 @@ return { ["type"] = "explicit", }, }, - ["299_TrapDamageCooldownSupported"] = { - ["Gloves"] = { - ["max"] = 25, + ["303_SupportedBySpiritStrikeArea"] = { + ["1HAxe"] = { + ["max"] = 20, ["min"] = 16, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", - ["type"] = "explicit", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 16, }, - }, - ["299_TrapSpeedCooldownSupported"] = { - ["Gloves"] = { - ["max"] = 25, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 16, + }, + ["Dagger"] = { + ["max"] = 20, ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3839163699", - ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", + ["id"] = "explicit.stat_696805682", + ["text"] = "Socketed Gems are Supported by Level # Ancestral Call", ["type"] = "explicit", }, }, - ["3000_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { + ["3046_MovementVelocityAndMovementVelocityIfNotHitRecently"] = { ["Boots"] = { ["max"] = 12, ["min"] = 6, @@ -42779,7 +44017,7 @@ return { ["type"] = "explicit", }, }, - ["3021_MovementVelocitySpeed"] = { + ["3067_MovementVelocitySpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42789,39 +44027,49 @@ return { ["type"] = "explicit", }, }, - ["302_ChanceToFreezeShockIgniteUnboundAilments"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, + ["3096_IncreasedStunThreshold"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 31, }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["309_TrapDamageCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3699494172", - ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", ["type"] = "explicit", }, }, - ["3050_IncreasedStunThreshold"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 31, + ["309_TrapSpeedCooldownSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_3839163699", + ["text"] = "Socketed Gems are Supported by Level # Advanced Traps", ["type"] = "explicit", }, }, - ["3055_WarcrySpeed"] = { + ["3101_WarcrySpeed"] = { ["Amulet"] = { ["max"] = 35, ["min"] = 15, @@ -42839,7 +44087,7 @@ return { ["type"] = "explicit", }, }, - ["3064_DamagePerFrenzyCharge"] = { + ["3110_DamagePerFrenzyCharge"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 3, @@ -42905,7 +44153,7 @@ return { ["type"] = "explicit", }, }, - ["3066_ArcaneSurgeEffect"] = { + ["3112_ArcaneSurgeEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42915,7 +44163,7 @@ return { ["type"] = "explicit", }, }, - ["3068_OnslaughtEffect"] = { + ["3114_OnslaughtEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -42925,7 +44173,7 @@ return { ["type"] = "explicit", }, }, - ["3070_CriticalStrikeChanceAgainstPoisonedEnemies"] = { + ["3116_CriticalStrikeChanceAgainstPoisonedEnemies"] = { ["1HWeapon"] = { ["max"] = 100, ["min"] = 80, @@ -42943,7 +44191,7 @@ return { ["type"] = "explicit", }, }, - ["3071_ReducedElementalReflectTakenMaven"] = { + ["3117_ReducedElementalReflectTakenMaven"] = { ["Chest"] = { ["max"] = -3, ["min"] = -5, @@ -42957,7 +44205,7 @@ return { ["type"] = "explicit", }, }, - ["3078_AttackSpeedDuringFlaskEffect"] = { + ["3124_AttackSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 14, ["min"] = 8, @@ -42971,7 +44219,7 @@ return { ["type"] = "explicit", }, }, - ["3079_ChaosResistanceWhileUsingFlask"] = { + ["3125_ChaosResistanceWhileUsingFlask"] = { ["Belt"] = { ["max"] = 50, ["min"] = 20, @@ -42985,7 +44233,7 @@ return { ["type"] = "explicit", }, }, - ["3082_EnemiesExplodeOnDeathPhysicalChance"] = { + ["3128_EnemiesExplodeOnDeathPhysicalChance"] = { ["Chest"] = { ["max"] = 30, ["min"] = 11, @@ -42999,7 +44247,7 @@ return { ["type"] = "explicit", }, }, - ["3082_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { + ["3128_EnemiesExplodeOnDeathPhysicalChanceMaven"] = { ["Chest"] = { ["max"] = 35, ["min"] = 31, @@ -43013,16 +44261,25 @@ return { ["type"] = "explicit", }, }, - ["308_SocketedTriggeredSkillsDoubleDamage"] = { + ["312_ChanceToFreezeShockIgniteUnboundAilments"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4021083819", - ["text"] = "Socketed Triggered Skills deal Double Damage", + ["id"] = "explicit.stat_3699494172", + ["text"] = "Socketed Gems are Supported by Level # Unbound Ailments", ["type"] = "explicit", }, }, - ["3107_WarcryCooldownSpeed"] = { + ["3153_WarcryCooldownSpeed"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 17, @@ -43060,7 +44317,7 @@ return { ["type"] = "explicit", }, }, - ["3113_IncreasedOneHandedMeleeDamageForJewel"] = { + ["3159_IncreasedOneHandedMeleeDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 14, ["min"] = 12, @@ -43078,7 +44335,7 @@ return { ["type"] = "explicit", }, }, - ["3114_IncreasedTwoHandedMeleeDamageForJewel"] = { + ["3160_IncreasedTwoHandedMeleeDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 14, ["min"] = 12, @@ -43096,7 +44353,7 @@ return { ["type"] = "explicit", }, }, - ["3133_AngerAuraEffect"] = { + ["3179_AngerAuraEffect"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 28, @@ -43130,7 +44387,7 @@ return { ["type"] = "explicit", }, }, - ["3138_WrathAuraEffect"] = { + ["3184_WrathAuraEffect"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 28, @@ -43164,7 +44421,7 @@ return { ["type"] = "explicit", }, }, - ["3143_HatredAuraEffect"] = { + ["3189_HatredAuraEffect"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 28, @@ -43198,7 +44455,16 @@ return { ["type"] = "explicit", }, }, - ["3146_CannotBePoisoned"] = { + ["318_SocketedTriggeredSkillsDoubleDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4021083819", + ["text"] = "Socketed Triggered Skills deal Double Damage", + ["type"] = "explicit", + }, + }, + ["3192_CannotBePoisoned"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -43211,7 +44477,7 @@ return { ["type"] = "explicit", }, }, - ["3148_PhysicalDamageAvoidance"] = { + ["3194_PhysicalDamageAvoidance"] = { ["Quiver"] = { ["max"] = 10, ["min"] = 5, @@ -43229,7 +44495,7 @@ return { ["type"] = "explicit", }, }, - ["3150_FireDamageAvoidance"] = { + ["3196_FireDamageAvoidance"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -43255,7 +44521,7 @@ return { ["type"] = "explicit", }, }, - ["3150_FireDamageAvoidanceMaven"] = { + ["3196_FireDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 8, @@ -43273,7 +44539,7 @@ return { ["type"] = "explicit", }, }, - ["3151_ColdDamageAvoidance"] = { + ["3197_ColdDamageAvoidance"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -43299,7 +44565,7 @@ return { ["type"] = "explicit", }, }, - ["3151_ColdDamageAvoidanceMaven"] = { + ["3197_ColdDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 8, @@ -43317,7 +44583,7 @@ return { ["type"] = "explicit", }, }, - ["3152_LightningDamageAvoidance"] = { + ["3198_LightningDamageAvoidance"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -43343,7 +44609,7 @@ return { ["type"] = "explicit", }, }, - ["3152_LightningDamageAvoidanceMaven"] = { + ["3198_LightningDamageAvoidanceMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 8, @@ -43361,7 +44627,7 @@ return { ["type"] = "explicit", }, }, - ["3154_UnholyMightOnKillPercentChance"] = { + ["3200_UnholyMightOnKillPercentChance"] = { ["1HWeapon"] = { ["max"] = 25, ["min"] = 5, @@ -43391,7 +44657,7 @@ return { ["type"] = "explicit", }, }, - ["3157_OnslaugtOnKillPercentChance"] = { + ["3203_OnslaugtOnKillPercentChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 5, @@ -43445,7 +44711,7 @@ return { ["type"] = "explicit", }, }, - ["3165_LightningDamageTaken"] = { + ["3211_LightningDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43455,7 +44721,7 @@ return { ["type"] = "explicit", }, }, - ["3166_ColdDamageTakenPercentage"] = { + ["3212_ColdDamageTakenPercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43465,7 +44731,7 @@ return { ["type"] = "explicit", }, }, - ["3168_FlaskChargeOnCrit"] = { + ["3214_FlaskChargeOnCrit"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -43478,7 +44744,7 @@ return { ["type"] = "explicit", }, }, - ["3173_NearbyEnemiesAreBlinded"] = { + ["3219_NearbyEnemiesAreBlinded"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -43491,7 +44757,7 @@ return { ["type"] = "explicit", }, }, - ["3173_NearbyEnemiesAreBlindedMaven"] = { + ["3219_NearbyEnemiesAreBlindedMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -43504,7 +44770,7 @@ return { ["type"] = "explicit", }, }, - ["3183_CriticalChanceAgainstBlindedEnemies"] = { + ["3229_CriticalChanceAgainstBlindedEnemies"] = { ["1HWeapon"] = { ["max"] = 100, ["min"] = 80, @@ -43522,7 +44788,7 @@ return { ["type"] = "explicit", }, }, - ["3208_MinionAttacksTauntOnHitChance"] = { + ["3254_MinionAttacksTauntOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 8, ["min"] = 3, @@ -43540,7 +44806,7 @@ return { ["type"] = "explicit", }, }, - ["3210_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { + ["3256_CriticalStrikeMultiplierAgainstEnemiesOnFullLife"] = { ["1HWeapon"] = { ["max"] = 60, ["min"] = 41, @@ -43558,7 +44824,7 @@ return { ["type"] = "explicit", }, }, - ["3232_IncreasedDamageFromAuras"] = { + ["3278_IncreasedDamageFromAuras"] = { ["1HAxe"] = { ["max"] = 2, ["min"] = 2, @@ -43620,7 +44886,7 @@ return { ["type"] = "explicit", }, }, - ["3235_TrapCooldownRecoveryAndDuration"] = { + ["3281_TrapCooldownRecoveryAndDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43630,7 +44896,7 @@ return { ["type"] = "explicit", }, }, - ["3239_ChancetoGainPhasingOnKill"] = { + ["3285_ChancetoGainPhasingOnKill"] = { ["1HWeapon"] = { ["max"] = 25, ["min"] = 15, @@ -43668,7 +44934,7 @@ return { ["type"] = "explicit", }, }, - ["3248_ChanceToLoseManaOnSkillUse"] = { + ["3294_ChanceToLoseManaOnSkillUse"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43678,7 +44944,7 @@ return { ["type"] = "explicit", }, }, - ["3249_ChanceToRecoverManaOnSkillUse"] = { + ["3295_ChanceToRecoverManaOnSkillUse"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 10, @@ -43692,7 +44958,7 @@ return { ["type"] = "explicit", }, }, - ["3253_TrapAreaOfEffect"] = { + ["3299_TrapAreaOfEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43702,7 +44968,7 @@ return { ["type"] = "explicit", }, }, - ["3322_AdditionalMinesPlacedSupported"] = { + ["3368_AdditionalMinesPlacedSupported"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -43715,7 +44981,7 @@ return { ["type"] = "explicit", }, }, - ["3332_ElementalDamagePercentMaven"] = { + ["3378_ElementalDamagePercentMaven"] = { ["Helmet"] = { ["max"] = 3, ["min"] = 2, @@ -43729,7 +44995,7 @@ return { ["type"] = "explicit", }, }, - ["3337_ChanceForDoubleStunDuration"] = { + ["3383_ChanceForDoubleStunDuration"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 7, @@ -43755,7 +45021,7 @@ return { ["type"] = "explicit", }, }, - ["3339_AuraEffect"] = { + ["3385_AuraEffect"] = { ["Chest"] = { ["max"] = 30, ["min"] = 15, @@ -43773,7 +45039,7 @@ return { ["type"] = "explicit", }, }, - ["3340_AuraEffectOnEnemies"] = { + ["3386_AuraEffectOnEnemies"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43783,7 +45049,7 @@ return { ["type"] = "explicit", }, }, - ["3385_PowerFrenzyOrEnduranceChargeOnKill"] = { + ["3431_PowerFrenzyOrEnduranceChargeOnKill"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 16, @@ -43849,21 +45115,7 @@ return { ["type"] = "explicit", }, }, - ["352_AreaDamageSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2388360415", - ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", - ["type"] = "explicit", - }, - }, - ["3531_LocalAttackReduceEnemyElementalResistance"] = { + ["3577_LocalAttackReduceEnemyElementalResistance"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 6, @@ -43925,7 +45177,7 @@ return { ["type"] = "explicit", }, }, - ["3531_LocalElementalPenetration"] = { + ["3577_LocalElementalPenetration"] = { ["1HAxe"] = { ["max"] = 12, ["min"] = 6, @@ -43987,7 +45239,7 @@ return { ["type"] = "explicit", }, }, - ["3532_LocalFireDamageAndPen"] = { + ["3578_LocalFireDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -43997,7 +45249,7 @@ return { ["type"] = "explicit", }, }, - ["3532_LocalFireDamagePenetrationHybrid"] = { + ["3578_LocalFireDamagePenetrationHybrid"] = { ["1HAxe"] = { ["max"] = 7, ["min"] = 5, @@ -44059,7 +45311,7 @@ return { ["type"] = "explicit", }, }, - ["3532_LocalFireDamageTwoHandAndPen"] = { + ["3578_LocalFireDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -44069,7 +45321,7 @@ return { ["type"] = "explicit", }, }, - ["3532_LocalFirePenetration"] = { + ["3578_LocalFirePenetration"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -44131,7 +45383,7 @@ return { ["type"] = "explicit", }, }, - ["3533_LocalColdDamageAndPen"] = { + ["3579_LocalColdDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -44141,7 +45393,7 @@ return { ["type"] = "explicit", }, }, - ["3533_LocalColdDamagePenetrationHybrid"] = { + ["3579_LocalColdDamagePenetrationHybrid"] = { ["1HAxe"] = { ["max"] = 7, ["min"] = 5, @@ -44203,7 +45455,7 @@ return { ["type"] = "explicit", }, }, - ["3533_LocalColdDamageTwoHandAndPen"] = { + ["3579_LocalColdDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -44213,7 +45465,7 @@ return { ["type"] = "explicit", }, }, - ["3533_LocalColdPenetration"] = { + ["3579_LocalColdPenetration"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -44275,7 +45527,7 @@ return { ["type"] = "explicit", }, }, - ["3534_LocalLightningDamageAndPen"] = { + ["3580_LocalLightningDamageAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -44285,7 +45537,7 @@ return { ["type"] = "explicit", }, }, - ["3534_LocalLightningDamagePenetrationHybrid"] = { + ["3580_LocalLightningDamagePenetrationHybrid"] = { ["1HAxe"] = { ["max"] = 7, ["min"] = 5, @@ -44347,7 +45599,7 @@ return { ["type"] = "explicit", }, }, - ["3534_LocalLightningDamageTwoHandAndPen"] = { + ["3580_LocalLightningDamageTwoHandAndPen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -44357,7 +45609,7 @@ return { ["type"] = "explicit", }, }, - ["3534_LocalLightningPenetration"] = { + ["3580_LocalLightningPenetration"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -44419,7 +45671,7 @@ return { ["type"] = "explicit", }, }, - ["3539_MinionAddedChaosDamage"] = { + ["3585_MinionAddedChaosDamage"] = { ["AbyssJewel"] = { ["max"] = 32.5, ["min"] = 3.5, @@ -44437,35 +45689,7 @@ return { ["type"] = "explicit", }, }, - ["353_AdditionalTrapsThrownSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - ["type"] = "explicit", - }, - }, - ["353_TrapDamageSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1122134690", - ["text"] = "Socketed Gems are Supported by Level # Trap", - ["type"] = "explicit", - }, - }, - ["3540_MinionAddedColdDamage"] = { + ["3586_MinionAddedColdDamage"] = { ["AbyssJewel"] = { ["max"] = 43, ["min"] = 5.5, @@ -44483,7 +45707,7 @@ return { ["type"] = "explicit", }, }, - ["3541_MinionAddedFireDamage"] = { + ["3587_MinionAddedFireDamage"] = { ["AbyssJewel"] = { ["max"] = 43, ["min"] = 5.5, @@ -44501,7 +45725,7 @@ return { ["type"] = "explicit", }, }, - ["3542_MinionAddedLightningDamage"] = { + ["3588_MinionAddedLightningDamage"] = { ["AbyssJewel"] = { ["max"] = 41.5, ["min"] = 5, @@ -44519,7 +45743,7 @@ return { ["type"] = "explicit", }, }, - ["3543_MinionAddedPhysicalDamage"] = { + ["3589_MinionAddedPhysicalDamage"] = { ["AbyssJewel"] = { ["max"] = 32.5, ["min"] = 3.5, @@ -44537,7 +45761,7 @@ return { ["type"] = "explicit", }, }, - ["3556_RegenerateLifeOver1Second"] = { + ["3602_RegenerateLifeOver1Second"] = { ["Chest"] = { ["max"] = 25, ["min"] = 15, @@ -44551,7 +45775,7 @@ return { ["type"] = "explicit", }, }, - ["356_MineDamageTrapSupported"] = { + ["362_AreaDamageSupported"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 16, @@ -44560,95 +45784,27 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", + ["id"] = "explicit.stat_2388360415", + ["text"] = "Socketed Gems are Supported by Level # Concentrated Effect", ["type"] = "explicit", }, }, - ["356_TrapDamageMineSupported"] = { + ["363_AdditionalTrapsThrownSupported"] = { ["Gloves"] = { ["max"] = 25, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3814066599", - ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", - ["type"] = "explicit", - }, - }, - ["360_LocalPhysicalDamagePercentAddedFireDamage"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2572192375", - ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", - ["type"] = "explicit", - }, - }, - ["362_TotemDamageSpellSupported"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 18, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", ["type"] = "explicit", }, }, - ["362_TotemSpeedSpellSupported"] = { - ["Boots"] = { + ["363_TrapDamageSupported"] = { + ["Gloves"] = { ["max"] = 25, ["min"] = 18, }, @@ -44656,81 +45812,13 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2962840349", - ["text"] = "Socketed Gems are Supported by Level # Spell Totem", - ["type"] = "explicit", - }, - }, - ["364_ChanceToFreezeShockIgniteProliferation"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2929101122", - ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", - ["type"] = "explicit", - }, - }, - ["366_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2985291457", - ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", + ["id"] = "explicit.stat_1122134690", + ["text"] = "Socketed Gems are Supported by Level # Trap", ["type"] = "explicit", }, }, - ["367_IncreasedAttackSpeedSupported"] = { - ["Gloves"] = { + ["366_MineDamageTrapSupported"] = { + ["Helmet"] = { ["max"] = 25, ["min"] = 16, }, @@ -44738,66 +45826,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", - ["type"] = "explicit", - }, - }, - ["367_LocalIncreasedAttackSpeedFasterAttacks"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_928701213", - ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", ["type"] = "explicit", }, }, - ["368_BlindOnHitSupported"] = { + ["366_TrapDamageMineSupported"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 16, @@ -44806,12 +45840,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223640518", - ["text"] = "Socketed Gems are supported by Level # Blind", + ["id"] = "explicit.stat_3814066599", + ["text"] = "Socketed Gems are Supported by Level # Trap And Mine Damage", ["type"] = "explicit", }, }, - ["369_SupportedByMeleeSplashDamage"] = { + ["371_LocalPhysicalDamagePercentAddedFireDamage"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 16, @@ -44852,116 +45886,116 @@ return { ["max"] = 20, ["min"] = 16, }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 16, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1811422871", - ["text"] = "Socketed Gems are supported by Level # Melee Splash", + ["id"] = "explicit.stat_2572192375", + ["text"] = "Socketed Gems are Supported by Level # Added Fire Damage", ["type"] = "explicit", }, }, - ["370_SupportedByCastOnCritWeapon"] = { - ["2HAxe"] = { - ["max"] = 20, + ["373_TotemDamageSpellSupported"] = { + ["Boots"] = { + ["max"] = 25, ["min"] = 18, }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, + ["sign"] = "", + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, + ["tradeMod"] = { + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 20, + }, + ["373_TotemSpeedSpellSupported"] = { + ["Boots"] = { + ["max"] = 25, ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2325632050", - ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", + ["id"] = "explicit.stat_2962840349", + ["text"] = "Socketed Gems are Supported by Level # Spell Totem", ["type"] = "explicit", }, }, - ["374_IncreasedAccuracyPercentSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, + ["375_ChanceToFreezeShockIgniteProliferation"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1567462963", - ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", + ["id"] = "explicit.stat_2929101122", + ["text"] = "Socketed Gems are Supported by Level # Elemental Proliferation", ["type"] = "explicit", }, }, - ["375_LocalIncreasedAttackSpeedMultistrike"] = { + ["377_LocalPhysicalDamagePercentMeleePhysicalDamage"] = { ["1HAxe"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HMace"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HSword"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HAxe"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HMace"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HSword"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["Claw"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["Dagger"] = { ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2501237765", - ["text"] = "Socketed Gems are supported by Level # Multistrike", - ["type"] = "explicit", + ["min"] = 16, }, - }, - ["376_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["id"] = "explicit.stat_2985291457", + ["text"] = "Socketed Gems are Supported by Level # Melee Physical Damage", ["type"] = "explicit", }, }, - ["376_ProjectileSpeedSupported"] = { + ["378_IncreasedAttackSpeedSupported"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 16, @@ -44970,26 +46004,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_99089516", - ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", - ["type"] = "explicit", - }, - }, - ["377_SupportedByLifeLeech"] = { - ["Boots"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_891277550", - ["text"] = "Socketed Gems are supported by Level # Life Leech", + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", ["type"] = "explicit", }, }, - ["379_CriticalStrikeMultiplierSupported"] = { + ["378_LocalIncreasedAttackSpeedFasterAttacks"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 18, @@ -45038,108 +46058,116 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1108755349", - ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", + ["id"] = "explicit.stat_928701213", + ["text"] = "Socketed Gems are Supported by Level # Faster Attacks", + ["type"] = "explicit", + }, + }, + ["379_BlindOnHitSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2223640518", + ["text"] = "Socketed Gems are supported by Level # Blind", ["type"] = "explicit", }, }, - ["381_IncreasedWeaponElementalDamagePercentSupported"] = { + ["380_SupportedByMeleeSplashDamage"] = { ["1HAxe"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HMace"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HSword"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["1HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HAxe"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HMace"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HSword"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["2HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["Claw"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["Dagger"] = { ["max"] = 20, - ["min"] = 18, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2532625478", - ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", + ["id"] = "explicit.stat_1811422871", + ["text"] = "Socketed Gems are supported by Level # Melee Splash", ["type"] = "explicit", }, }, - ["3830_OfferingEffect"] = { - ["Chest"] = { - ["max"] = 35, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["381_SupportedByCastOnCritWeapon"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3191479793", - ["text"] = "#% increased effect of Offerings", - ["type"] = "explicit", + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["383_SupportedByInspirationWeapon"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Bow"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "explicit.stat_2325632050", + ["text"] = "Socketed Gems are supported by Level # Cast On Critical Strike", ["type"] = "explicit", }, }, - ["383_WeaponSpellDamageReducedMana"] = { + ["3876_OfferingEffect"] = { + ["Chest"] = { + ["max"] = 35, + ["min"] = 16, + }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_749770518", - ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["id"] = "explicit.stat_3191479793", + ["text"] = "#% increased effect of Offerings", ["type"] = "explicit", }, }, - ["3849_DamageDuringFlaskEffect"] = { + ["3895_DamageDuringFlaskEffect"] = { ["Gloves"] = { ["max"] = 40, ["min"] = 19, @@ -45153,97 +46181,145 @@ return { ["type"] = "explicit", }, }, - ["385_DisplaySocketedGemsSupportedByFortify"] = { - ["Boots"] = { + ["389_IncreasedAccuracyPercentSupported"] = { + ["Gloves"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["id"] = "explicit.stat_1567462963", + ["text"] = "Socketed Gems are supported by Level # Additional Accuracy", ["type"] = "explicit", }, }, - ["385_LocalPhysicalDamagePercentFortify"] = { - ["sign"] = "", - ["specialCaseData"] = { + ["390_LocalIncreasedAttackSpeedMultistrike"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", - ["type"] = "explicit", + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["385_SupportedByFortifyWeapon"] = { ["2HAxe"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_107118693", - ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["id"] = "explicit.stat_2501237765", + ["text"] = "Socketed Gems are supported by Level # Multistrike", ["type"] = "explicit", }, }, - ["386_AdditionalMinesPlacedSupported"] = { - ["Helmet"] = { + ["391_LocalIncreasedPhysicalDamagePercentFasterProjectiles"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", + ["type"] = "explicit", + }, + }, + ["391_ProjectileSpeedSupported"] = { + ["Gloves"] = { ["max"] = 25, - ["min"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["id"] = "explicit.stat_99089516", + ["text"] = "Socketed Gems are supported by Level # Faster Projectiles", ["type"] = "explicit", }, }, - ["386_MineDamageSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 18, + ["392_SupportedByLifeLeech"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1710508327", - ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["id"] = "explicit.stat_891277550", + ["text"] = "Socketed Gems are supported by Level # Life Leech", ["type"] = "explicit", }, }, - ["388_IncreasedCastSpeedFasterCasting"] = { + ["394_CriticalStrikeMultiplierSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, ["1HMace"] = { ["max"] = 20, ["min"] = 18, }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, ["1HWeapon"] = { ["max"] = 20, ["min"] = 18, }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, + }, ["Dagger"] = { ["max"] = 20, ["min"] = 18, @@ -45256,72 +46332,66 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["id"] = "explicit.stat_1108755349", + ["text"] = "Socketed Gems are supported by Level # Increased Critical Damage", ["type"] = "explicit", }, }, - ["388_IncreasedCastSpeedSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, + ["396_IncreasedWeaponElementalDamagePercentSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2169938251", - ["text"] = "Socketed Gems are Supported by Level # Faster Casting", - ["type"] = "explicit", + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["391_MinionLifeSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1337327984", - ["text"] = "Socketed Gems are Supported by Level # Minion Life", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["392_SupportedByLesserMultipleProjectilesDamage"] = { - ["1HWeapon"] = { + ["2HSword"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, }, - ["Wand"] = { + ["2HWeapon"] = { ["max"] = 20, - ["min"] = 16, + ["min"] = 18, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_584144941", - ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", - ["type"] = "explicit", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, }, - }, - ["393_MinionDamageSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_808939569", - ["text"] = "Socketed Gems are Supported by Level # Minion Damage", + ["id"] = "explicit.stat_2532625478", + ["text"] = "Socketed Gems are supported by Level # Elemental Damage with Attacks", ["type"] = "explicit", }, }, - ["3983_AvoidBleedAndPoison"] = { + ["4029_AvoidBleedAndPoison"] = { ["Boots"] = { ["max"] = 70, ["min"] = 41, @@ -45335,7 +46405,7 @@ return { ["type"] = "explicit", }, }, - ["3983_ChanceToAvoidBleeding"] = { + ["4029_ChanceToAvoidBleeding"] = { ["AbyssJewel"] = { ["max"] = 50, ["min"] = 31, @@ -45369,7 +46439,7 @@ return { ["type"] = "explicit", }, }, - ["3983_MovementVelocityDodge"] = { + ["4029_MovementVelocityDodge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -45379,7 +46449,7 @@ return { ["type"] = "explicit", }, }, - ["3986_AreaOfEffectIfKilledRecently"] = { + ["4032_AreaOfEffectIfKilledRecently"] = { ["1HMace"] = { ["max"] = 25, ["min"] = 17, @@ -45405,21 +46475,35 @@ return { ["type"] = "explicit", }, }, - ["398_ChillEffectSupported"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 16, + ["403_SupportedByInspirationWeapon"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_13669281", - ["text"] = "Socketed Gems are Supported by Level # Hypothermia", + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", + ["type"] = "explicit", + }, + }, + ["403_WeaponSpellDamageReducedMana"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_749770518", + ["text"] = "Socketed Gems are Supported by Level # Inspiration", ["type"] = "explicit", }, }, - ["3997_FlaskChanceToNotConsumeCharges"] = { + ["4043_FlaskChanceToNotConsumeCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -45429,7 +46513,7 @@ return { ["type"] = "explicit", }, }, - ["4006_MaximumEnduranceChargesMaven"] = { + ["4052_MaximumEnduranceChargesMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 10, @@ -45443,57 +46527,89 @@ return { ["type"] = "explicit", }, }, - ["400_ColdDamagePrefixColdPenetration"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 16, + ["405_DisplaySocketedGemsSupportedByFortify"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 16, + ["sign"] = "", + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 16, + ["tradeMod"] = { + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", + ["type"] = "explicit", }, + }, + ["405_LocalPhysicalDamagePercentFortify"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1991958615", - ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", ["type"] = "explicit", }, }, - ["401_DisplaySupportedByManaLeech"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, + ["405_SupportedByFortifyWeapon"] = { + ["2HAxe"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["id"] = "explicit.stat_107118693", + ["text"] = "Socketed Gems are Supported by Level # Fortify", ["type"] = "explicit", }, }, - ["401_DisplaySupportedByManaLeechMaven"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["406_AdditionalMinesPlacedSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2608615082", - ["text"] = "Socketed Gems are Supported by Level # Mana Leech", + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", + ["type"] = "explicit", + }, + }, + ["406_MineDamageSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1710508327", + ["text"] = "Socketed Gems are Supported by Level # Blastchain Mine", ["type"] = "explicit", }, }, - ["4028_MovementSpeedIfEnemySlainRecently"] = { + ["4074_MovementSpeedIfEnemySlainRecently"] = { ["AbyssJewel"] = { ["max"] = 4, ["min"] = 2, @@ -45511,7 +46627,7 @@ return { ["type"] = "explicit", }, }, - ["4031_DualWieldingCritMultiplierForJewel"] = { + ["4077_DualWieldingCritMultiplierForJewel"] = { ["AnyJewel"] = { ["max"] = 18, ["min"] = 15, @@ -45529,7 +46645,7 @@ return { ["type"] = "explicit", }, }, - ["4033_ArmourAndEvasionRating"] = { + ["4079_ArmourAndEvasionRating"] = { ["Belt"] = { ["max"] = 400, ["min"] = 105, @@ -45547,7 +46663,7 @@ return { ["type"] = "explicit", }, }, - ["4034_ElementalPenetrationDuringFlaskEffect"] = { + ["4080_ElementalPenetrationDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 5, ["min"] = 5, @@ -45561,7 +46677,7 @@ return { ["type"] = "explicit", }, }, - ["4035_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { + ["4081_AdditionalPhysicalDamageReductionDuringFlaskEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -45571,7 +46687,7 @@ return { ["type"] = "explicit", }, }, - ["4037_PowerChargeOnBlock"] = { + ["4083_PowerChargeOnBlock"] = { ["Shield"] = { ["max"] = 25, ["min"] = 25, @@ -45585,7 +46701,7 @@ return { ["type"] = "explicit", }, }, - ["4037_PowerChargeOnBlockUber"] = { + ["4083_PowerChargeOnBlockUber"] = { ["2HWeapon"] = { ["max"] = 25, ["min"] = 25, @@ -45603,7 +46719,7 @@ return { ["type"] = "explicit", }, }, - ["4038_NearbyEnemiesChilledOnBlock"] = { + ["4084_NearbyEnemiesChilledOnBlock"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -45616,7 +46732,7 @@ return { ["type"] = "explicit", }, }, - ["4039_SelfColdDamageTakenPerFrenzy"] = { + ["4085_SelfColdDamageTakenPerFrenzy"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -45626,7 +46742,7 @@ return { ["type"] = "explicit", }, }, - ["4040_AddedColdDamagePerFrenzyCharge"] = { + ["4086_AddedColdDamagePerFrenzyCharge"] = { ["Quiver"] = { ["max"] = 10, ["min"] = 10, @@ -45644,7 +46760,7 @@ return { ["type"] = "explicit", }, }, - ["4042_AddedFireDamageIfBlockedRecently"] = { + ["4088_AddedFireDamageIfBlockedRecently"] = { ["Shield"] = { ["max"] = 80, ["min"] = 80, @@ -45658,7 +46774,47 @@ return { ["type"] = "explicit", }, }, - ["4047_ElusiveOnCriticalStrike"] = { + ["408_IncreasedCastSpeedFasterCasting"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, + ["408_IncreasedCastSpeedSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2169938251", + ["text"] = "Socketed Gems are Supported by Level # Faster Casting", + ["type"] = "explicit", + }, + }, + ["4093_ElusiveOnCriticalStrike"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -45672,7 +46828,7 @@ return { ["type"] = "explicit", }, }, - ["4047_ElusiveOnCriticalStrikeMaven"] = { + ["4093_ElusiveOnCriticalStrikeMaven"] = { ["Boots"] = { ["max"] = 20, ["min"] = 11, @@ -45686,7 +46842,7 @@ return { ["type"] = "explicit", }, }, - ["405_ShockEffectSupported"] = { + ["411_MinionLifeSupported"] = { ["Helmet"] = { ["max"] = 25, ["min"] = 16, @@ -45695,12 +46851,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1106668565", - ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["id"] = "explicit.stat_1337327984", + ["text"] = "Socketed Gems are Supported by Level # Minion Life", ["type"] = "explicit", }, }, - ["4075_IncreaseProjectileAttackDamagePerAccuracy"] = { + ["4121_IncreaseProjectileAttackDamagePerAccuracy"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -45718,7 +46874,7 @@ return { ["type"] = "explicit", }, }, - ["4079_ElementalDamageTakenWhileStationary"] = { + ["4125_ElementalDamageTakenWhileStationary"] = { ["Boots"] = { ["max"] = 5, ["min"] = 5, @@ -45732,127 +46888,77 @@ return { ["type"] = "explicit", }, }, - ["407_ChanceToPoisonSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HAxe"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HSword"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["4126_PhysicalDamageReductionWhileNotMoving"] = { + ["sign"] = "", + ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_2181129193", + ["text"] = "#% additional Physical Damage Reduction while stationary", ["type"] = "explicit", }, }, - ["407_PoisonDamageSupported"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 16, + ["4129_ManaRegenerationMaven"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "explicit", }, }, - ["407_PoisonDamageWeaponSupported"] = { + ["412_SupportedByLesserMultipleProjectilesDamage"] = { ["1HWeapon"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, - ["Dagger"] = { + ["Wand"] = { ["max"] = 20, - ["min"] = 18, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["id"] = "explicit.stat_584144941", + ["text"] = "Socketed Gems are Supported by Level # Lesser Multiple Projectiles", ["type"] = "explicit", }, }, - ["407_PoisonDurationSupported"] = { - ["Gloves"] = { + ["413_MinionDamageSupported"] = { + ["Helmet"] = { ["max"] = 25, - ["min"] = 25, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_228165595", - ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", - ["type"] = "explicit", + ["min"] = 16, }, - }, - ["4080_PhysicalDamageReductionWhileNotMoving"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2181129193", - ["text"] = "#% additional Physical Damage Reduction while stationary", + ["id"] = "explicit.stat_808939569", + ["text"] = "Socketed Gems are Supported by Level # Minion Damage", ["type"] = "explicit", }, }, - ["4083_ManaRegenerationMaven"] = { + ["418_ChillEffectSupported"] = { ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["id"] = "explicit.stat_13669281", + ["text"] = "Socketed Gems are Supported by Level # Hypothermia", ["type"] = "explicit", }, }, - ["409_WeaponSpellDamageControlledDestruction"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 16, - }, + ["420_ColdDamagePrefixColdPenetration"] = { ["1HWeapon"] = { ["max"] = 20, ["min"] = 16, @@ -45869,76 +46975,40 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3718597497", - ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", - ["type"] = "explicit", - }, - }, - ["410_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["id"] = "explicit.stat_1991958615", + ["text"] = "Socketed Gems are Supported by Level # Cold Penetration", ["type"] = "explicit", }, }, - ["410_SupportedByEnduranceChargeOnStunWeapon"] = { - ["2HAxe"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HSword"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 10, + ["421_DisplaySupportedByManaLeech"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3375208082", - ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", ["type"] = "explicit", }, }, - ["412_DisplaySocketedGemsGetReducedReservation"] = { - ["Shield"] = { - ["max"] = 30, + ["421_DisplaySupportedByManaLeechMaven"] = { + ["Gloves"] = { + ["max"] = 20, ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", - ["type"] = "explicit", - }, - }, - ["418_DisplaySupportedSkillsHaveAChanceToIgnite"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984519770", - ["text"] = "Socketed Gems have #% chance to Ignite", + ["id"] = "explicit.stat_2608615082", + ["text"] = "Socketed Gems are Supported by Level # Mana Leech", ["type"] = "explicit", }, }, - ["4201_GainArmourIfBlockedRecently"] = { + ["4253_GainArmourIfBlockedRecently"] = { ["Shield"] = { ["max"] = 800, ["min"] = 500, @@ -45952,7 +47022,7 @@ return { ["type"] = "explicit", }, }, - ["4216_AccuracyIfNoEnemySlainRecently"] = { + ["4269_AccuracyIfNoEnemySlainRecently"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -45962,7 +47032,7 @@ return { ["type"] = "explicit", }, }, - ["4225_FrenzyChargeWhenHit"] = { + ["4277_FrenzyChargeWhenHit"] = { ["Chest"] = { ["max"] = 20, ["min"] = 15, @@ -45976,7 +47046,7 @@ return { ["type"] = "explicit", }, }, - ["4235_AdditionalBlockChancePerEnduranceChargeUber"] = { + ["4287_AdditionalBlockChancePerEnduranceChargeUber"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -46002,7 +47072,21 @@ return { ["type"] = "explicit", }, }, - ["4239_AdditionalBlockWith5NearbyEnemies"] = { + ["428_ShockEffectSupported"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1106668565", + ["text"] = "Socketed Gems are Supported by Level # Innervate", + ["type"] = "explicit", + }, + }, + ["4291_AdditionalBlockWith5NearbyEnemies"] = { ["Shield"] = { ["max"] = 5, ["min"] = 2, @@ -46016,39 +47100,99 @@ return { ["type"] = "explicit", }, }, - ["423_DisplaySocketedSkillsChain"] = { + ["430_ChanceToPoisonSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 18, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 18, }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["Claw"] = { + ["max"] = 20, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2788729902", - ["text"] = "Socketed Gems Chain # additional times", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", ["type"] = "explicit", }, }, - ["424_SocketedSkillsCriticalChance"] = { + ["430_PoisonDamageSupported"] = { ["Gloves"] = { - ["max"] = 3.5, - ["min"] = 3.5, + ["max"] = 25, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1681904129", - ["text"] = "Socketed Gems have +#% Critical Strike Chance", + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["430_PoisonDamageWeaponSupported"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", + ["type"] = "explicit", + }, + }, + ["430_PoisonDurationSupported"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_228165595", + ["text"] = "Socketed Gems are Supported by Level # Chance to Poison", ["type"] = "explicit", }, }, - ["4262_PhysicalDamageReductionDuringFocus"] = { + ["4315_PhysicalDamageReductionDuringFocus"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 8, @@ -46066,7 +47210,7 @@ return { ["type"] = "explicit", }, }, - ["4264_ReducedPhysicalDamageTakenIfNotHitRecently"] = { + ["4317_ReducedPhysicalDamageTakenIfNotHitRecently"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 2, @@ -46084,7 +47228,7 @@ return { ["type"] = "explicit", }, }, - ["4268_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["4321_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["AbyssJewel"] = { ["max"] = 6, ["min"] = 4, @@ -46102,7 +47246,7 @@ return { ["type"] = "explicit", }, }, - ["4274_AdditionalPhysicalDamageReductionWhileMoving"] = { + ["4327_AdditionalPhysicalDamageReductionWhileMoving"] = { ["Boots"] = { ["max"] = 5, ["min"] = 3, @@ -46116,178 +47260,114 @@ return { ["type"] = "explicit", }, }, - ["4283_MaximumManaIncreasePercentMaven"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2571899044", - ["text"] = "Transfiguration of Mind", - ["type"] = "explicit", - }, - }, - ["428_SocketedAttacksDamageFinal"] = { - ["1HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["432_WeaponSpellDamageControlledDestruction"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["1HSword"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 20, + ["min"] = 16, }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HAxe"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["2HSword"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["Bow"] = { ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 40, - ["min"] = 40, + ["min"] = 16, }, ["Dagger"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Staff"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 16, }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 20, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1970781345", - ["text"] = "Socketed Skills deal #% more Attack Damage", + ["id"] = "explicit.stat_3718597497", + ["text"] = "Socketed Gems are Supported by Level # Controlled Destruction", ["type"] = "explicit", }, }, - ["4296_GlobalSkillGemLevel"] = { - ["Amulet"] = { + ["4336_MaximumManaIncreasePercentMaven"] = { + ["Helmet"] = { ["max"] = 1, ["min"] = 1, }, - ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4283407333", - ["text"] = "+# to Level of all Skill Gems", + ["id"] = "explicit.stat_2571899044", + ["text"] = "Transfiguration of Mind", ["type"] = "explicit", }, }, - ["429_SocketedAttackCriticalStrikeChance"] = { - ["Helmet"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["433_LocalPhysicalDamagePercentEnduranceChargeOnStun"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2867348718", - ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", ["type"] = "explicit", }, }, - ["430_SocketedAttackCriticalMultiplier"] = { - ["Gloves"] = { - ["max"] = 90, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_356456977", - ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", - ["type"] = "explicit", + ["433_SupportedByEnduranceChargeOnStunWeapon"] = { + ["2HAxe"] = { + ["max"] = 10, + ["min"] = 10, }, - }, - ["431_SocketedAttacksManaCost"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, + ["2HSword"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, + ["Staff"] = { + ["max"] = 10, + ["min"] = 10, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["id"] = "explicit.stat_3375208082", + ["text"] = "Socketed Gems are Supported by Level # Endurance Charge on Melee Stun", ["type"] = "explicit", }, }, - ["431_SocketedAttacksManaCostMaven"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["4349_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2264586521", - ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["id"] = "explicit.stat_4283407333", + ["text"] = "+# to Level of all Skill Gems", ["type"] = "explicit", }, }, - ["432_SocketedGemsHaveMoreAttackAndCastSpeed"] = { - ["Gloves"] = { - ["max"] = 16, - ["min"] = 16, + ["435_DisplaySocketedGemsGetReducedReservation"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_346351023", - ["text"] = "Socketed Gems have #% more Attack and Cast Speed", + ["id"] = "explicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", ["type"] = "explicit", }, }, - ["4331_AngerReservation"] = { + ["4385_AngerReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -46297,7 +47377,7 @@ return { ["type"] = "explicit", }, }, - ["4332_AngerReservationEfficiency"] = { + ["4386_AngerReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -46311,21 +47391,7 @@ return { ["type"] = "explicit", }, }, - ["434_DisplaySupportedSkillsDealDamageOnLowLife"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1235873320", - ["text"] = "Socketed Gems deal #% more Damage while on Low Life", - ["type"] = "explicit", - }, - }, - ["4353_ArcticArmourReservationCost"] = { + ["4408_ArcticArmourReservationCost"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -46335,7 +47401,7 @@ return { ["type"] = "explicit", }, }, - ["4354_ArcticArmourReservationEfficiency"] = { + ["4409_ArcticArmourReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -46345,21 +47411,7 @@ return { ["type"] = "explicit", }, }, - ["435_SocketedGemsDealMoreElementalDamage"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835899275", - ["text"] = "Socketed Gems deal #% more Elemental Damage", - ["type"] = "explicit", - }, - }, - ["4361_CullingStrikeMaven"] = { + ["4416_CullingStrikeMaven"] = { ["2HAxe"] = { ["max"] = 25, ["min"] = 15, @@ -46397,7 +47449,7 @@ return { ["type"] = "explicit", }, }, - ["4364_AreaOfEffectIfStunnedEnemyRecently"] = { + ["4419_AreaOfEffectIfStunnedEnemyRecently"] = { ["1HMace"] = { ["max"] = 35, ["min"] = 25, @@ -46423,7 +47475,17 @@ return { ["type"] = "explicit", }, }, - ["4367_AreaOfEffectPer50Strength"] = { + ["441_DisplaySupportedSkillsHaveAChanceToIgnite"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984519770", + ["text"] = "Socketed Gems have #% chance to Ignite", + ["type"] = "explicit", + }, + }, + ["4422_AreaOfEffectPer50Strength"] = { ["1HMace"] = { ["max"] = 3, ["min"] = 3, @@ -46449,7 +47511,7 @@ return { ["type"] = "explicit", }, }, - ["4369_AreaOfEffectPerEnduranceCharge"] = { + ["4424_AreaOfEffectPerEnduranceCharge"] = { ["2HMace"] = { ["max"] = 5, ["min"] = 5, @@ -46467,7 +47529,7 @@ return { ["type"] = "explicit", }, }, - ["4369_EnduranceChargeIfHitRecentlyMaven"] = { + ["4424_EnduranceChargeIfHitRecentlyMaven"] = { ["Chest"] = { ["max"] = 3, ["min"] = 3, @@ -46481,21 +47543,7 @@ return { ["type"] = "explicit", }, }, - ["438_SocketedGemsDealAdditionalFireDamage"] = { - ["Gloves"] = { - ["max"] = 200, - ["min"] = 200, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1289910726", - ["text"] = "Socketed Gems deal # to # Added Fire Damage", - ["type"] = "explicit", - }, - }, - ["4395_ArmourIncreasedByUncappedFireResistance"] = { + ["4450_ArmourIncreasedByUncappedFireResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -46504,7 +47552,7 @@ return { ["type"] = "explicit", }, }, - ["4399_FortifyEffectMaven"] = { + ["4454_FortifyEffectMaven"] = { ["Helmet"] = { ["max"] = 500, ["min"] = 500, @@ -46518,21 +47566,7 @@ return { ["type"] = "explicit", }, }, - ["439_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1859937391", - ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["4400_IncreasedArmourIfNoEnemySlainRecently"] = { + ["4455_IncreasedArmourIfNoEnemySlainRecently"] = { ["AbyssJewel"] = { ["max"] = 30, ["min"] = 20, @@ -46550,60 +47584,53 @@ return { ["type"] = "explicit", }, }, - ["4423_AdditionalCriticalStrikeChanceWithAttacks"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 0.5, + ["446_DisplaySocketedSkillsChain"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2572042788", - ["text"] = "Attacks have +#% to Critical Strike Chance", + ["id"] = "explicit.stat_2788729902", + ["text"] = "Socketed Gems Chain # additional times", ["type"] = "explicit", }, }, - ["442_DisplayMovementSkillsCostNoMana"] = { - ["1HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HSword"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["4478_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 0.5, }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3263216405", - ["text"] = "Socketed Movement Skills Cost no Mana", + ["id"] = "explicit.stat_2572042788", + ["text"] = "Attacks have +#% to Critical Strike Chance", ["type"] = "explicit", }, }, - ["443_SocketedSkillsAttackSpeed"] = { + ["447_SocketedSkillsCriticalChance"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 18, + ["max"] = 3.5, + ["min"] = 3.5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2881124988", - ["text"] = "Socketed Skills have #% increased Attack Speed", + ["id"] = "explicit.stat_1681904129", + ["text"] = "Socketed Gems have +#% Critical Strike Chance", ["type"] = "explicit", }, }, - ["4442_AttackAndCastSpeedIfHitRecently"] = { + ["4497_AttackAndCastSpeedIfHitRecently"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 5, @@ -46617,7 +47644,7 @@ return { ["type"] = "explicit", }, }, - ["4443_AdditionalChanceToEvadeMaven"] = { + ["4498_AdditionalChanceToEvadeMaven"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 7, @@ -46631,7 +47658,7 @@ return { ["type"] = "explicit", }, }, - ["4449_AttackAndCastSpeedWhileFocused"] = { + ["4504_AttackAndCastSpeedWhileFocused"] = { ["Gloves"] = { ["max"] = 50, ["min"] = 22, @@ -46645,86 +47672,37 @@ return { ["type"] = "explicit", }, }, - ["444_SocketedSkillsCastSpeed"] = { - ["Gloves"] = { - ["max"] = 18, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { + ["451_SocketedAttacksDamageFinal"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 40, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3425934849", - ["text"] = "Socketed Skills have #% increased Cast Speed", - ["type"] = "explicit", + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, }, - }, - ["4465_ChanceToGainOnslaughtOnKillMaven"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 3, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 40, }, - ["Quiver"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_879520319", - ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", - ["type"] = "explicit", - }, - }, - ["446_DisplaySocketedSkillsFork"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1519665289", - ["text"] = "Projectiles from Socketed Gems Fork", - ["type"] = "explicit", - }, - }, - ["447_SocketedSpellsDamageFinal"] = { - ["1HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["1HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, }, ["2HAxe"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HMace"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HSword"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Bow"] = { @@ -46751,12 +47729,30 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2964800094", - ["text"] = "Socketed Skills deal #% more Spell Damage", + ["id"] = "explicit.stat_1970781345", + ["text"] = "Socketed Skills deal #% more Attack Damage", + ["type"] = "explicit", + }, + }, + ["4520_ChanceToGainOnslaughtOnKillMaven"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["Quiver"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_879520319", + ["text"] = "#% increased Attack, Cast and Movement Speed while you have Onslaught", ["type"] = "explicit", }, }, - ["448_SocketedSpellCriticalStrikeChance"] = { + ["452_SocketedAttackCriticalStrikeChance"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 1, @@ -46765,12 +47761,26 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_135378852", - ["text"] = "Socketed Spells have +#% to Critical Strike Chance", + ["id"] = "explicit.stat_2867348718", + ["text"] = "Socketed Attacks have +#% to Critical Strike Chance", ["type"] = "explicit", }, }, - ["4492_AddedFireDamagePerStrength"] = { + ["453_SocketedAttackCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_356456977", + ["text"] = "Socketed Attacks have +#% to Critical Strike Multiplier", + ["type"] = "explicit", + }, + }, + ["4547_AddedFireDamagePerStrength"] = { ["1HAxe"] = { ["max"] = 3, ["min"] = 2, @@ -46816,7 +47826,47 @@ return { ["type"] = "explicit", }, }, - ["4495_AddedLightningDamagePerIntelligence"] = { + ["454_SocketedAttacksManaCost"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["454_SocketedAttacksManaCostMaven"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2264586521", + ["text"] = "Socketed Attacks have +# to Total Mana Cost", + ["type"] = "explicit", + }, + }, + ["4550_AddedLightningDamagePerIntelligence"] = { ["1HMace"] = { ["max"] = 3.5, ["min"] = 3, @@ -46854,43 +47904,21 @@ return { ["type"] = "explicit", }, }, - ["449_SocketedSpellCriticalMultiplier"] = { + ["455_SocketedGemsHaveMoreAttackAndCastSpeed"] = { ["Gloves"] = { - ["max"] = 90, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2828710986", - ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", - ["type"] = "explicit", - }, - }, - ["450_SocketedSpellsManaCost"] = { - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 16, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1688834903", - ["text"] = "Socketed Spells have #% reduced Mana Cost", + ["id"] = "explicit.stat_346351023", + ["text"] = "Socketed Gems have #% more Attack and Cast Speed", ["type"] = "explicit", }, }, - ["4512_AttackSpeedIfEnemyKilledRecently"] = { + ["4567_AttackSpeedIfEnemyKilledRecently"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 13, @@ -46916,7 +47944,7 @@ return { ["type"] = "explicit", }, }, - ["4512_AttackSpeedKilledRecently"] = { + ["4567_AttackSpeedKilledRecently"] = { ["2HAxe"] = { ["max"] = 20, ["min"] = 20, @@ -46950,7 +47978,7 @@ return { ["type"] = "explicit", }, }, - ["4513_AttackSpeedHitRecently"] = { + ["4568_AttackSpeedHitRecently"] = { ["Ring"] = { ["max"] = 12, ["min"] = 8, @@ -46964,7 +47992,7 @@ return { ["type"] = "explicit", }, }, - ["4515_AttackSpeedIfCriticalStrikeDealtRecently"] = { + ["4570_AttackSpeedIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { ["max"] = 8, ["min"] = 6, @@ -46982,7 +48010,7 @@ return { ["type"] = "explicit", }, }, - ["4518_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { + ["4573_AttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 7, @@ -47044,7 +48072,7 @@ return { ["type"] = "explicit", }, }, - ["4520_IncreasedAttackSpeedPerDexterity"] = { + ["4575_IncreasedAttackSpeedPerDexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -47054,7 +48082,7 @@ return { ["type"] = "explicit", }, }, - ["4523_ManaGainPerTargetMaven"] = { + ["4578_ManaGainPerTargetMaven"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 10, @@ -47072,7 +48100,21 @@ return { ["type"] = "explicit", }, }, - ["4532_AttacksBlindOnHitChance"] = { + ["457_DisplaySupportedSkillsDealDamageOnLowLife"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1235873320", + ["text"] = "Socketed Gems deal #% more Damage while on Low Life", + ["type"] = "explicit", + }, + }, + ["4587_AttacksBlindOnHitChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 5, @@ -47130,7 +48172,7 @@ return { ["type"] = "explicit", }, }, - ["4533_AttacksTauntOnHitChance"] = { + ["4588_AttacksTauntOnHitChance"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -47164,7 +48206,21 @@ return { ["type"] = "explicit", }, }, - ["4535_AttackImpaleChance"] = { + ["458_SocketedGemsDealMoreElementalDamage"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835899275", + ["text"] = "Socketed Gems deal #% more Elemental Damage", + ["type"] = "explicit", + }, + }, + ["4590_AttackImpaleChance"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 13, @@ -47178,7 +48234,7 @@ return { ["type"] = "explicit", }, }, - ["4535_AttackImpaleChanceMaven"] = { + ["4590_AttackImpaleChanceMaven"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 21, @@ -47192,7 +48248,7 @@ return { ["type"] = "explicit", }, }, - ["4535_ImpaleChanceForJewel"] = { + ["4590_ImpaleChanceForJewel"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 5, @@ -47210,7 +48266,7 @@ return { ["type"] = "explicit", }, }, - ["4538_AddedColdDamagePerDexterity"] = { + ["4593_AddedColdDamagePerDexterity"] = { ["1HAxe"] = { ["max"] = 3, ["min"] = 2, @@ -47256,7 +48312,7 @@ return { ["type"] = "explicit", }, }, - ["4550_EnchantmentElusive"] = { + ["4605_EnchantmentElusive"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 8, @@ -47274,7 +48330,7 @@ return { ["type"] = "explicit", }, }, - ["4552_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { + ["4607_AvoidElementalDamageChanceDuringSoulGainPrevention"] = { ["Chest"] = { ["max"] = 12, ["min"] = 6, @@ -47292,7 +48348,7 @@ return { ["type"] = "explicit", }, }, - ["4558_ChanceToAvoidProjectilesMaven"] = { + ["4614_ChanceToAvoidProjectilesMaven"] = { ["Boots"] = { ["max"] = 15, ["min"] = 11, @@ -47306,7 +48362,35 @@ return { ["type"] = "explicit", }, }, - ["4577_AilmentDamage"] = { + ["461_SocketedGemsDealAdditionalFireDamage"] = { + ["Gloves"] = { + ["max"] = 200, + ["min"] = 200, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1289910726", + ["text"] = "Socketed Gems deal # to # Added Fire Damage", + ["type"] = "explicit", + }, + }, + ["462_SocketedGemsAddPercentageOfPhysicalAsLightning"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1859937391", + ["text"] = "Socketed Gems gain #% of Physical Damage as extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["4636_AilmentDamage"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 15, @@ -47344,7 +48428,7 @@ return { ["type"] = "explicit", }, }, - ["4585_ChanceToAvoidProjectiles"] = { + ["4644_ChanceToAvoidProjectiles"] = { ["Boots"] = { ["max"] = 12, ["min"] = 6, @@ -47358,7 +48442,7 @@ return { ["type"] = "explicit", }, }, - ["4585_ChanceToAvoidProjectilesMaven"] = { + ["4644_ChanceToAvoidProjectilesMaven"] = { ["Boots"] = { ["max"] = 12, ["min"] = 10, @@ -47372,7 +48456,7 @@ return { ["type"] = "explicit", }, }, - ["4586_BleedChanceAndDurationForJewel"] = { + ["4645_BleedChanceAndDurationForJewel"] = { ["AnyJewel"] = { ["max"] = 16, ["min"] = 12, @@ -47390,7 +48474,7 @@ return { ["type"] = "explicit", }, }, - ["4586_BleedDamageAndDuration"] = { + ["4645_BleedDamageAndDuration"] = { ["Ring"] = { ["max"] = 10, ["min"] = 5, @@ -47404,7 +48488,7 @@ return { ["type"] = "explicit", }, }, - ["4586_BleedDuration"] = { + ["4645_BleedDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -47414,7 +48498,7 @@ return { ["type"] = "explicit", }, }, - ["4586_FasterBleedDamageMaven"] = { + ["4645_FasterBleedDamageMaven"] = { ["Boots"] = { ["max"] = 20, ["min"] = 10, @@ -47428,7 +48512,7 @@ return { ["type"] = "explicit", }, }, - ["4595_GlobalCooldownRecovery"] = { + ["4654_GlobalCooldownRecovery"] = { ["AbyssJewel"] = { ["max"] = 3, ["min"] = 2, @@ -47454,7 +48538,32 @@ return { ["type"] = "explicit", }, }, - ["4601_ColdDamageESLeech"] = { + ["465_DisplayMovementSkillsCostNoMana"] = { + ["1HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HSword"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3263216405", + ["text"] = "Socketed Movement Skills Cost no Mana", + ["type"] = "explicit", + }, + }, + ["4660_ColdDamageESLeech"] = { ["Amulet"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -47468,7 +48577,7 @@ return { ["type"] = "explicit", }, }, - ["4603_FireDamageESLeech"] = { + ["4662_FireDamageESLeech"] = { ["Amulet"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -47482,7 +48591,7 @@ return { ["type"] = "explicit", }, }, - ["4604_LightningDamageESLeech"] = { + ["4663_LightningDamageESLeech"] = { ["Amulet"] = { ["max"] = 0.4, ["min"] = 0.2, @@ -47496,7 +48605,7 @@ return { ["type"] = "explicit", }, }, - ["4607_BaseFrozenEffectOnSelf"] = { + ["4666_BaseFrozenEffectOnSelf"] = { ["Helmet"] = { ["max"] = -11, ["min"] = -20, @@ -47510,41 +48619,55 @@ return { ["type"] = "explicit", }, }, - ["4612_ColdExposureOnHit"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["Staff"] = { - ["max"] = 20, - ["min"] = 11, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 11, + ["466_SocketedSkillsAttackSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2630708439", - ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["id"] = "explicit.stat_2881124988", + ["text"] = "Socketed Skills have #% increased Attack Speed", ["type"] = "explicit", }, }, - ["4613_FireExposureOnHit"] = { + ["4671_ColdExposureOnHit"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2630708439", + ["text"] = "#% chance to inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["4672_FireExposureOnHit"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 11, @@ -47578,7 +48701,7 @@ return { ["type"] = "explicit", }, }, - ["4614_LightningExposureOnHit"] = { + ["4673_LightningExposureOnHit"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 11, @@ -47612,7 +48735,7 @@ return { ["type"] = "explicit", }, }, - ["4618_MinionDuration"] = { + ["4677_MinionDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -47622,7 +48745,21 @@ return { ["type"] = "explicit", }, }, - ["4627_PhysicalDamageOverTimeTaken"] = { + ["467_SocketedSkillsCastSpeed"] = { + ["Gloves"] = { + ["max"] = 18, + ["min"] = 18, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3425934849", + ["text"] = "Socketed Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["4686_PhysicalDamageOverTimeTaken"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 1, @@ -47644,7 +48781,7 @@ return { ["type"] = "explicit", }, }, - ["4637_DesecratedGroundEffectEffectivenessMaven"] = { + ["4697_DesecratedGroundEffectEffectivenessMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -47657,75 +48794,155 @@ return { ["type"] = "explicit", }, }, - ["467_SupportDamageOverTime"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 30, + ["469_DisplaySocketedSkillsFork"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1519665289", + ["text"] = "Projectiles from Socketed Gems Fork", + ["type"] = "explicit", + }, + }, + ["470_SocketedSpellsDamageFinal"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3846088475", - ["text"] = "Socketed Gems deal #% more Damage over Time", + ["id"] = "explicit.stat_2964800094", + ["text"] = "Socketed Skills deal #% more Spell Damage", ["type"] = "explicit", }, }, - ["4793_OnHitBlindChilledEnemies"] = { + ["471_SocketedSpellCriticalStrikeChance"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3450276548", - ["text"] = "Blind Chilled Enemies on Hit", + ["id"] = "explicit.stat_135378852", + ["text"] = "Socketed Spells have +#% to Critical Strike Chance", ["type"] = "explicit", }, }, - ["4804_AttackBlockIfBlockedAttackRecently"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 5, + ["472_SocketedSpellCriticalMultiplier"] = { + ["Gloves"] = { + ["max"] = 90, + ["min"] = 30, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3789765926", - ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", + ["id"] = "explicit.stat_2828710986", + ["text"] = "Socketed Spells have +#% to Critical Strike Multiplier", ["type"] = "explicit", }, }, - ["4871_CannotBeChilledOrFrozenWhileMoving"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["473_SocketedSpellsManaCost"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_628032624", - ["text"] = "Cannot be Chilled or Frozen while moving", + ["id"] = "explicit.stat_1688834903", + ["text"] = "Socketed Spells have #% reduced Mana Cost", ["type"] = "explicit", }, }, - ["4883_CorruptedBloodImmunity"] = { + ["4853_OnHitBlindChilledEnemies"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled Enemies on Hit", ["type"] = "explicit", }, }, - ["4887_CannotBeShockedOrIgnitedWhileMoving"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["4865_AttackBlockIfBlockedAttackRecently"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 5, }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3592330380", - ["text"] = "Cannot be Shocked or Ignited while moving", + ["id"] = "explicit.stat_3789765926", + ["text"] = "+#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", ["type"] = "explicit", }, }, @@ -47808,7 +49025,56 @@ return { ["type"] = "explicit", }, }, - ["4934_CastSpeedDuringFlaskEffect"] = { + ["4925_CannotBeChilledOrFrozenWhileMoving"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_628032624", + ["text"] = "Cannot be Chilled or Frozen while moving", + ["type"] = "explicit", + }, + }, + ["4937_CorruptedBloodImmunity"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + }, + ["493_SupportDamageOverTime"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3846088475", + ["text"] = "Socketed Gems deal #% more Damage over Time", + ["type"] = "explicit", + }, + }, + ["4941_CannotBeShockedOrIgnitedWhileMoving"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3592330380", + ["text"] = "Cannot be Shocked or Ignited while moving", + ["type"] = "explicit", + }, + }, + ["4987_CastSpeedDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 14, ["min"] = 8, @@ -47822,7 +49088,7 @@ return { ["type"] = "explicit", }, }, - ["4935_CastSpeedIfEnemyKilledRecently"] = { + ["4988_CastSpeedIfEnemyKilledRecently"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 13, @@ -47856,7 +49122,7 @@ return { ["type"] = "explicit", }, }, - ["4935_IncreasedCastSpeedTwoHandedKilledRecently"] = { + ["4988_IncreasedCastSpeedTwoHandedKilledRecently"] = { ["2HWeapon"] = { ["max"] = 20, ["min"] = 20, @@ -47874,7 +49140,7 @@ return { ["type"] = "explicit", }, }, - ["4936_CastSpeedIfCriticalStrikeDealtRecently"] = { + ["4989_CastSpeedIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { ["max"] = 7, ["min"] = 5, @@ -47892,7 +49158,7 @@ return { ["type"] = "explicit", }, }, - ["4937_CastSpeedIfMinionKilledRecently"] = { + ["4990_CastSpeedIfMinionKilledRecently"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 7, @@ -47910,7 +49176,7 @@ return { ["type"] = "explicit", }, }, - ["5074_SpellBlockChanceIfHitRecently"] = { + ["5127_SpellBlockChanceIfHitRecently"] = { ["2HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -47936,7 +49202,7 @@ return { ["type"] = "explicit", }, }, - ["5078_CrushOnHitChance"] = { + ["5131_CrushOnHitChance"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 15, @@ -47950,7 +49216,7 @@ return { ["type"] = "explicit", }, }, - ["5082_AttackSpeedDoubleDamage"] = { + ["5135_AttackSpeedDoubleDamage"] = { ["2HAxe"] = { ["max"] = 6, ["min"] = 4, @@ -47984,7 +49250,7 @@ return { ["type"] = "explicit", }, }, - ["5082_DoubleDamageChance"] = { + ["5135_DoubleDamageChance"] = { ["1HAxe"] = { ["max"] = 7, ["min"] = 3, @@ -48050,7 +49316,7 @@ return { ["type"] = "explicit", }, }, - ["5084_DoubleDamageStunnedRecently"] = { + ["5137_DoubleDamageStunnedRecently"] = { ["Amulet"] = { ["max"] = 10, ["min"] = 5, @@ -48064,7 +49330,7 @@ return { ["type"] = "explicit", }, }, - ["5088_ChanceToDealDoubleDamageWhileFocused"] = { + ["5141_ChanceToDealDoubleDamageWhileFocused"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 7, @@ -48130,7 +49396,7 @@ return { ["type"] = "explicit", }, }, - ["5093_ChanceWhenHitForArmourToBeDoubled"] = { + ["5146_ChanceWhenHitForArmourToBeDoubled"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 20, @@ -48168,7 +49434,7 @@ return { ["type"] = "explicit", }, }, - ["5094_AdditionalChanceToEvade"] = { + ["5147_AdditionalChanceToEvade"] = { ["Amulet"] = { ["max"] = 2, ["min"] = 1, @@ -48194,7 +49460,7 @@ return { ["type"] = "explicit", }, }, - ["5094_AdditionalChanceToEvadeMaven"] = { + ["5147_AdditionalChanceToEvadeMaven"] = { ["Gloves"] = { ["max"] = 4, ["min"] = 2, @@ -48208,7 +49474,7 @@ return { ["type"] = "explicit", }, }, - ["5099_FortifyOnMeleeStun"] = { + ["5152_FortifyOnMeleeStun"] = { ["Belt"] = { ["max"] = 12, ["min"] = 8, @@ -48222,7 +49488,7 @@ return { ["type"] = "explicit", }, }, - ["5099_GainFortifyOnStunChance"] = { + ["5152_GainFortifyOnStunChance"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 10, @@ -48248,7 +49514,7 @@ return { ["type"] = "explicit", }, }, - ["5106_GainEnduranceChargeOnHittingBleedingEnemy"] = { + ["5159_GainEnduranceChargeOnHittingBleedingEnemy"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -48274,7 +49540,7 @@ return { ["type"] = "explicit", }, }, - ["5108_GainEnduranceChargeOnTauntingEnemies"] = { + ["5161_GainEnduranceChargeOnTauntingEnemies"] = { ["2HAxe"] = { ["max"] = 30, ["min"] = 15, @@ -48292,7 +49558,7 @@ return { ["type"] = "explicit", }, }, - ["5110_AccuracyRatingPerFrenzyChargeUber"] = { + ["5163_AccuracyRatingPerFrenzyChargeUber"] = { ["1HSword"] = { ["max"] = 25, ["min"] = 20, @@ -48318,7 +49584,7 @@ return { ["type"] = "explicit", }, }, - ["5113_ChanceToGainOnslaughtOnFlaskUse"] = { + ["5166_ChanceToGainOnslaughtOnFlaskUse"] = { ["AbyssJewel"] = { ["max"] = 10, ["min"] = 5, @@ -48344,7 +49610,7 @@ return { ["type"] = "explicit", }, }, - ["5135_ChanceToIntimidateOnHit"] = { + ["5188_ChanceToIntimidateOnHit"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 7, @@ -48358,7 +49624,7 @@ return { ["type"] = "explicit", }, }, - ["5143_ChanceToUnnerveOnHit"] = { + ["5196_ChanceToUnnerveOnHit"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 7, @@ -48396,7 +49662,7 @@ return { ["type"] = "explicit", }, }, - ["5146_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { + ["5199_ChaosDamageDoesNotBypassESNotLowLifeOrMana"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -48405,7 +49671,7 @@ return { ["type"] = "explicit", }, }, - ["5149_ChaosResistanceAgainstDamageOverTime"] = { + ["5202_ChaosResistanceAgainstDamageOverTime"] = { ["Belt"] = { ["max"] = 43, ["min"] = 31, @@ -48431,7 +49697,7 @@ return { ["type"] = "explicit", }, }, - ["5169_GlobalChaosGemLevel"] = { + ["5223_GlobalChaosGemLevel"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -48445,7 +49711,7 @@ return { ["type"] = "explicit", }, }, - ["5179_ChanceToChillAttackersOnBlock"] = { + ["5233_ChanceToChillAttackersOnBlock"] = { ["2HWeapon"] = { ["max"] = 50, ["min"] = 25, @@ -48467,7 +49733,7 @@ return { ["type"] = "explicit", }, }, - ["5209_ColdAilmentDuration"] = { + ["5263_ColdAilmentDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -48477,7 +49743,7 @@ return { ["type"] = "explicit", }, }, - ["5211_AbyssJewelChillEffect"] = { + ["5265_AbyssJewelChillEffect"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -48495,7 +49761,7 @@ return { ["type"] = "explicit", }, }, - ["5211_ChillEffectSupported"] = { + ["5265_ChillEffectSupported"] = { ["Helmet"] = { ["max"] = 20, ["min"] = 8, @@ -48509,7 +49775,7 @@ return { ["type"] = "explicit", }, }, - ["5213_ColdAndChaosDamageResistance"] = { + ["5267_ColdAndChaosDamageResistance"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -48607,7 +49873,7 @@ return { ["type"] = "explicit", }, }, - ["5229_PhysicalDamageTakenAsColdUberMaven"] = { + ["5283_PhysicalDamageTakenAsColdUberMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 7, @@ -48621,7 +49887,7 @@ return { ["type"] = "explicit", }, }, - ["5246_GlobalColdGemLevel"] = { + ["5300_GlobalColdGemLevel"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -48635,7 +49901,7 @@ return { ["type"] = "explicit", }, }, - ["5265_ConsecratedGroundStationary"] = { + ["5319_ConsecratedGroundStationary"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -48648,7 +49914,7 @@ return { ["type"] = "explicit", }, }, - ["5265_ConsecratedGroundStationaryMaven"] = { + ["5319_ConsecratedGroundStationaryMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -48661,7 +49927,7 @@ return { ["type"] = "explicit", }, }, - ["5312_CritChanceShockedEnemies"] = { + ["5368_CritChanceShockedEnemies"] = { ["Belt"] = { ["max"] = 45, ["min"] = 30, @@ -48675,7 +49941,7 @@ return { ["type"] = "explicit", }, }, - ["5312_LightningResistanceAilments"] = { + ["5368_LightningResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -48685,7 +49951,7 @@ return { ["type"] = "explicit", }, }, - ["5318_CriticalChanceIncreasedByUncappedLightningResistance"] = { + ["5374_CriticalChanceIncreasedByUncappedLightningResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -48694,7 +49960,7 @@ return { ["type"] = "explicit", }, }, - ["5324_CriticalStrikeChanceIfKilledRecently"] = { + ["5380_CriticalStrikeChanceIfKilledRecently"] = { ["1HAxe"] = { ["max"] = 100, ["min"] = 80, @@ -48728,7 +49994,7 @@ return { ["type"] = "explicit", }, }, - ["5324_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { + ["5380_CriticalStrikeChanceTwoHandedCritChanceRecently"] = { ["2HAxe"] = { ["max"] = 50, ["min"] = 50, @@ -48762,7 +50028,7 @@ return { ["type"] = "explicit", }, }, - ["5325_ReducedShockEffectOnSelfMaven"] = { + ["5381_ReducedShockEffectOnSelfMaven"] = { ["Helmet"] = { ["max"] = 75, ["min"] = 45, @@ -48776,7 +50042,7 @@ return { ["type"] = "explicit", }, }, - ["5326_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { + ["5382_CriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { ["max"] = 30, ["min"] = 20, @@ -48794,7 +50060,7 @@ return { ["type"] = "explicit", }, }, - ["5326_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { + ["5382_CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber"] = { ["2HWeapon"] = { ["max"] = 100, ["min"] = 80, @@ -48812,7 +50078,7 @@ return { ["type"] = "explicit", }, }, - ["5329_GainAccuracyEqualToStrengthMaven"] = { + ["5385_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -48826,7 +50092,7 @@ return { ["type"] = "explicit", }, }, - ["5355_CriticalStrikeMultiplierIfEnemySlainRecently"] = { + ["5411_CriticalStrikeMultiplierIfEnemySlainRecently"] = { ["1HWeapon"] = { ["max"] = 35, ["min"] = 26, @@ -48856,7 +50122,7 @@ return { ["type"] = "explicit", }, }, - ["5356_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { + ["5412_CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently"] = { ["Ring"] = { ["max"] = 30, ["min"] = 18, @@ -48870,7 +50136,7 @@ return { ["type"] = "explicit", }, }, - ["5358_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { + ["5414_CriticalStrikeChanceTwoHandedCritMultiRecently"] = { ["2HAxe"] = { ["max"] = 50, ["min"] = 50, @@ -48904,7 +50170,7 @@ return { ["type"] = "explicit", }, }, - ["5359_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { + ["5415_CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby"] = { ["1HAxe"] = { ["max"] = 40, ["min"] = 17, @@ -48966,7 +50232,7 @@ return { ["type"] = "explicit", }, }, - ["5361_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { + ["5417_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { ["2HWeapon"] = { ["max"] = 45, ["min"] = 35, @@ -48984,7 +50250,7 @@ return { ["type"] = "explicit", }, }, - ["5391_OLDAdditionalCurseOnEnemiesMaven"] = { + ["5448_OLDAdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { ["max"] = 20, ["min"] = 20, @@ -48998,7 +50264,7 @@ return { ["type"] = "explicit", }, }, - ["5392_AdditionalCurseOnEnemiesMaven"] = { + ["5449_AdditionalCurseOnEnemiesMaven"] = { ["Chest"] = { ["max"] = 20, ["min"] = 20, @@ -49012,7 +50278,7 @@ return { ["type"] = "explicit", }, }, - ["5393_EnchantmentConsecratedGround"] = { + ["5450_EnchantmentConsecratedGround"] = { ["AbyssJewel"] = { ["max"] = -10, ["min"] = -15, @@ -49030,7 +50296,7 @@ return { ["type"] = "explicit", }, }, - ["5397_CurseDuration"] = { + ["5454_CurseDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49040,7 +50306,7 @@ return { ["type"] = "explicit", }, }, - ["5415_DamageWithBowSkills"] = { + ["5472_DamageWithBowSkills"] = { ["Quiver"] = { ["max"] = 50, ["min"] = 5, @@ -49054,7 +50320,7 @@ return { ["type"] = "explicit", }, }, - ["5425_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { + ["5482_DamagePenetratesElementalResistancesIfNoEnemySlainRecently"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 2, @@ -49072,7 +50338,7 @@ return { ["type"] = "explicit", }, }, - ["5435_DamageIfEnemySlainRecently"] = { + ["5492_DamageIfEnemySlainRecently"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 15, @@ -49090,7 +50356,7 @@ return { ["type"] = "explicit", }, }, - ["5438_ReducedBurnDurationMaven"] = { + ["5495_ReducedBurnDurationMaven"] = { ["Helmet"] = { ["max"] = 50, ["min"] = 36, @@ -49104,7 +50370,7 @@ return { ["type"] = "explicit", }, }, - ["5449_DamagePer15Dexterity"] = { + ["5506_DamagePer15Dexterity"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -49118,7 +50384,7 @@ return { ["type"] = "explicit", }, }, - ["5450_DamagePer15Intelligence"] = { + ["5507_DamagePer15Intelligence"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -49132,7 +50398,7 @@ return { ["type"] = "explicit", }, }, - ["5451_DamagePer15Strength"] = { + ["5508_DamagePer15Strength"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -49146,7 +50412,7 @@ return { ["type"] = "explicit", }, }, - ["5452_DamagePerBlockChance"] = { + ["5509_DamagePerBlockChance"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -49160,7 +50426,7 @@ return { ["type"] = "explicit", }, }, - ["5459_IncreasedDamagePerPowerCharge"] = { + ["5516_IncreasedDamagePerPowerCharge"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 3, @@ -49226,7 +50492,7 @@ return { ["type"] = "explicit", }, }, - ["5459_PowerChargeOnCriticalStrikeChanceMaven"] = { + ["5516_PowerChargeOnCriticalStrikeChanceMaven"] = { ["Chest"] = { ["max"] = 3, ["min"] = 3, @@ -49240,7 +50506,7 @@ return { ["type"] = "explicit", }, }, - ["5462_DamageVSAbyssMonsters"] = { + ["5519_DamageVSAbyssMonsters"] = { ["AbyssJewel"] = { ["max"] = 40, ["min"] = 30, @@ -49258,7 +50524,7 @@ return { ["type"] = "explicit", }, }, - ["5463_ColdResistanceAilments"] = { + ["5520_ColdResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49268,7 +50534,7 @@ return { ["type"] = "explicit", }, }, - ["5463_DamageChilledEnemies"] = { + ["5520_DamageChilledEnemies"] = { ["Belt"] = { ["max"] = 40, ["min"] = 26, @@ -49282,7 +50548,7 @@ return { ["type"] = "explicit", }, }, - ["5467_DamageOnFullLife"] = { + ["5524_DamageOnFullLife"] = { ["1HAxe"] = { ["max"] = 120, ["min"] = 50, @@ -49344,7 +50610,7 @@ return { ["type"] = "explicit", }, }, - ["5477_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { + ["5534_DamageWithNonVaalSkillsDuringSoulGainPrevention"] = { ["Boots"] = { ["max"] = 80, ["min"] = 30, @@ -49362,7 +50628,7 @@ return { ["type"] = "explicit", }, }, - ["5482_DamageRemovedFromManaBeforeLifeWhileFocused"] = { + ["5539_DamageRemovedFromManaBeforeLifeWhileFocused"] = { ["Chest"] = { ["max"] = 22, ["min"] = 11, @@ -49376,7 +50642,7 @@ return { ["type"] = "explicit", }, }, - ["5491_DamageTakenGainedAsLife"] = { + ["5548_DamageTakenGainedAsLife"] = { ["Ring"] = { ["max"] = 15, ["min"] = 4, @@ -49390,7 +50656,7 @@ return { ["type"] = "explicit", }, }, - ["5491_LifeRecoupForJewel"] = { + ["5548_LifeRecoupForJewel"] = { ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -49408,7 +50674,7 @@ return { ["type"] = "explicit", }, }, - ["5503_ReducedFreezeDurationMaven"] = { + ["5560_ReducedFreezeDurationMaven"] = { ["Helmet"] = { ["max"] = -4, ["min"] = -7, @@ -49422,7 +50688,7 @@ return { ["type"] = "explicit", }, }, - ["5510_FasterAilmentDamageForJewel"] = { + ["5567_FasterAilmentDamageForJewel"] = { ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, @@ -49440,7 +50706,7 @@ return { ["type"] = "explicit", }, }, - ["5542_MalevolenceAuraEffect"] = { + ["5599_MalevolenceAuraEffect"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 28, @@ -49474,7 +50740,7 @@ return { ["type"] = "explicit", }, }, - ["5553_DeterminationReservation"] = { + ["5610_DeterminationReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49484,7 +50750,7 @@ return { ["type"] = "explicit", }, }, - ["5554_DeterminationReservationEfficiency"] = { + ["5611_DeterminationReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -49498,7 +50764,7 @@ return { ["type"] = "explicit", }, }, - ["5558_GlobalDexterityGemLevel"] = { + ["5615_GlobalDexterityGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49508,7 +50774,7 @@ return { ["type"] = "explicit", }, }, - ["5565_DisciplineReservation"] = { + ["5622_DisciplineReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49518,7 +50784,7 @@ return { ["type"] = "explicit", }, }, - ["5566_DisciplineReservationEfficiency"] = { + ["5623_DisciplineReservationEfficiency"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 50, @@ -49532,7 +50798,7 @@ return { ["type"] = "explicit", }, }, - ["5666_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { + ["5726_CriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 14, @@ -49550,7 +50816,7 @@ return { ["type"] = "explicit", }, }, - ["5685_IncreasedWeaponElementalDamagePercent"] = { + ["5745_IncreasedWeaponElementalDamagePercent"] = { ["1HAxe"] = { ["max"] = 59, ["min"] = 11, @@ -49632,7 +50898,7 @@ return { ["type"] = "explicit", }, }, - ["5685_IncreasedWeaponElementalDamagePercentSupported"] = { + ["5745_IncreasedWeaponElementalDamagePercentSupported"] = { ["1HAxe"] = { ["max"] = 37, ["min"] = 28, @@ -49686,7 +50952,7 @@ return { ["type"] = "explicit", }, }, - ["5697_ReducedElementalReflectTaken"] = { + ["5758_ReducedElementalReflectTaken"] = { ["Chest"] = { ["max"] = 100, ["min"] = 100, @@ -49704,7 +50970,7 @@ return { ["type"] = "explicit", }, }, - ["5697_ReducedElementalReflectTakenMaven"] = { + ["5758_ReducedElementalReflectTakenMaven"] = { ["Chest"] = { ["max"] = 100, ["min"] = 100, @@ -49718,7 +50984,7 @@ return { ["type"] = "explicit", }, }, - ["5711_ElusiveOnCriticalStrikeMaven"] = { + ["5773_ElusiveOnCriticalStrikeMaven"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -49732,7 +50998,7 @@ return { ["type"] = "explicit", }, }, - ["5713_ExertedAttackDamage"] = { + ["5775_ExertedAttackDamage"] = { ["Ring"] = { ["max"] = 35, ["min"] = 25, @@ -49746,7 +51012,7 @@ return { ["type"] = "explicit", }, }, - ["5726_EnemiesExplodeOnDeathPhysical"] = { + ["5788_EnemiesExplodeOnDeathPhysical"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -49756,7 +51022,7 @@ return { ["type"] = "explicit", }, }, - ["5726_EnemiesExplodeOnDeathPhysicalMaven"] = { + ["5788_EnemiesExplodeOnDeathPhysicalMaven"] = { ["Chest"] = { ["max"] = 5, ["min"] = 5, @@ -49770,7 +51036,7 @@ return { ["type"] = "explicit", }, }, - ["5753_EnchantmentBlind"] = { + ["5816_EnchantmentBlind"] = { ["AbyssJewel"] = { ["max"] = -15, ["min"] = -20, @@ -49788,7 +51054,7 @@ return { ["type"] = "explicit", }, }, - ["5759_EnchantmentHinder"] = { + ["5822_EnchantmentHinder"] = { ["AbyssJewel"] = { ["max"] = -15, ["min"] = -20, @@ -49806,7 +51072,7 @@ return { ["type"] = "explicit", }, }, - ["5762_EnchantmentIntimidate"] = { + ["5825_EnchantmentIntimidate"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -49824,7 +51090,7 @@ return { ["type"] = "explicit", }, }, - ["5763_EnchantmentMaim"] = { + ["5826_EnchantmentMaim"] = { ["AbyssJewel"] = { ["max"] = 5, ["min"] = 4, @@ -49842,7 +51108,7 @@ return { ["type"] = "explicit", }, }, - ["5765_EnchantmentWither"] = { + ["5828_EnchantmentWither"] = { ["AbyssJewel"] = { ["max"] = 2, ["min"] = 2, @@ -49860,7 +51126,7 @@ return { ["type"] = "explicit", }, }, - ["5766_EnemiesHaveReducedEvasionIfHitRecently"] = { + ["5829_EnemiesHaveReducedEvasionIfHitRecently"] = { ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, @@ -49878,7 +51144,7 @@ return { ["type"] = "explicit", }, }, - ["5792_MaximumEnergyShieldOnKillPercentMaven"] = { + ["5856_MaximumEnergyShieldOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -49892,7 +51158,7 @@ return { ["type"] = "explicit", }, }, - ["5797_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { + ["5861_EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { ["Belt"] = { ["max"] = 200, ["min"] = 90, @@ -49910,7 +51176,7 @@ return { ["type"] = "explicit", }, }, - ["5799_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { + ["5863_EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently"] = { ["1HMace"] = { ["max"] = 0.5, ["min"] = 0.5, @@ -49960,7 +51226,7 @@ return { ["type"] = "explicit", }, }, - ["5802_FlatEnergyShieldRegeneration"] = { + ["5866_FlatEnergyShieldRegeneration"] = { ["AbyssJewel"] = { ["max"] = 20, ["min"] = 9, @@ -49978,7 +51244,7 @@ return { ["type"] = "explicit", }, }, - ["5819_DodgeChanceDuringFocus"] = { + ["5883_DodgeChanceDuringFocus"] = { ["Boots"] = { ["max"] = 32, ["min"] = 16, @@ -49996,7 +51262,7 @@ return { ["type"] = "explicit", }, }, - ["5823_EvasionIncreasedByUncappedColdResistance"] = { + ["5887_EvasionIncreasedByUncappedColdResistance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -50005,7 +51271,7 @@ return { ["type"] = "explicit", }, }, - ["5824_LifeRegenerationPerEvasionDuringFocus"] = { + ["5888_LifeRegenerationPerEvasionDuringFocus"] = { ["Chest"] = { ["max"] = 1.5, ["min"] = 1, @@ -50019,7 +51285,7 @@ return { ["type"] = "explicit", }, }, - ["5826_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { + ["5890_EvasionRatingIfYouHaveHitAnEnemyRecently"] = { ["1HAxe"] = { ["max"] = 1000, ["min"] = 500, @@ -50077,7 +51343,7 @@ return { ["type"] = "explicit", }, }, - ["5833_GlobalEvasionRatingPercentOnFullLife"] = { + ["5897_GlobalEvasionRatingPercentOnFullLife"] = { ["Boots"] = { ["max"] = 50, ["min"] = 25, @@ -50103,7 +51369,7 @@ return { ["type"] = "explicit", }, }, - ["5835_EvasionRatingWhileMoving"] = { + ["5899_EvasionRatingWhileMoving"] = { ["AbyssJewel"] = { ["max"] = 35, ["min"] = 25, @@ -50121,7 +51387,7 @@ return { ["type"] = "explicit", }, }, - ["5863_LuckyCriticalsDuringFocus"] = { + ["5927_LuckyCriticalsDuringFocus"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -50134,7 +51400,7 @@ return { ["type"] = "explicit", }, }, - ["5863_LuckyCriticalsDuringFocusCDR"] = { + ["5927_LuckyCriticalsDuringFocusCDR"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -50147,7 +51413,7 @@ return { ["type"] = "explicit", }, }, - ["5873_FasterBleedDamage"] = { + ["5937_FasterBleedDamage"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 8, @@ -50197,7 +51463,7 @@ return { ["type"] = "explicit", }, }, - ["5873_FasterBleedDamageMaven"] = { + ["5937_FasterBleedDamageMaven"] = { ["Boots"] = { ["max"] = 15, ["min"] = 11, @@ -50211,7 +51477,7 @@ return { ["type"] = "explicit", }, }, - ["5874_FasterPoisonDamage"] = { + ["5938_FasterPoisonDamage"] = { ["1HSword"] = { ["max"] = 15, ["min"] = 8, @@ -50253,7 +51519,7 @@ return { ["type"] = "explicit", }, }, - ["5874_FasterPoisonDamageMaven"] = { + ["5938_FasterPoisonDamageMaven"] = { ["Boots"] = { ["max"] = 15, ["min"] = 11, @@ -50267,7 +51533,7 @@ return { ["type"] = "explicit", }, }, - ["5877_FireAndChaosDamageResistance"] = { + ["5941_FireAndChaosDamageResistance"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -50365,7 +51631,7 @@ return { ["type"] = "explicit", }, }, - ["5898_PhysicalDamageTakenAsFireUberMaven"] = { + ["5962_PhysicalDamageTakenAsFireUberMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 7, @@ -50379,7 +51645,7 @@ return { ["type"] = "explicit", }, }, - ["5911_GlobalFireGemLevel"] = { + ["5975_GlobalFireGemLevel"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -50393,7 +51659,7 @@ return { ["type"] = "explicit", }, }, - ["5971_FocusCooldownRecovery"] = { + ["6037_FocusCooldownRecovery"] = { ["Boots"] = { ["max"] = 35, ["min"] = 21, @@ -50407,7 +51673,7 @@ return { ["type"] = "explicit", }, }, - ["5971_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["6037_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["Boots"] = { ["max"] = 8, ["min"] = 5, @@ -50421,7 +51687,7 @@ return { ["type"] = "explicit", }, }, - ["5971_LuckyCriticalsDuringFocusCDR"] = { + ["6037_LuckyCriticalsDuringFocusCDR"] = { ["Belt"] = { ["max"] = 8, ["min"] = 5, @@ -50435,7 +51701,7 @@ return { ["type"] = "explicit", }, }, - ["5971_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["6037_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["Gloves"] = { ["max"] = 8, ["min"] = 5, @@ -50449,7 +51715,7 @@ return { ["type"] = "explicit", }, }, - ["5971_ShockNearbyEnemiesOnFocusCDR"] = { + ["6037_ShockNearbyEnemiesOnFocusCDR"] = { ["Ring"] = { ["max"] = 8, ["min"] = 5, @@ -50463,7 +51729,7 @@ return { ["type"] = "explicit", }, }, - ["5971_ShockYourselfOnFocusCDR"] = { + ["6037_ShockYourselfOnFocusCDR"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -50473,7 +51739,7 @@ return { ["type"] = "explicit", }, }, - ["5971_SkillsCostNoManaWhileFocusedCDR"] = { + ["6037_SkillsCostNoManaWhileFocusedCDR"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -50483,7 +51749,7 @@ return { ["type"] = "explicit", }, }, - ["5971_TriggerSocketedSpellWhenYouFocusCDR"] = { + ["6037_TriggerSocketedSpellWhenYouFocusCDR"] = { ["Helmet"] = { ["max"] = 8, ["min"] = 5, @@ -50497,7 +51763,7 @@ return { ["type"] = "explicit", }, }, - ["6010_GainRareMonsterModsOnKillChance"] = { + ["6076_GainRareMonsterModsOnKillChance"] = { ["1HWeapon"] = { ["max"] = 40, ["min"] = 15, @@ -50515,17 +51781,7 @@ return { ["type"] = "explicit", }, }, - ["601_CurseOnHitCriticalWeakness"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["6020_GainAccuracyEqualToStrength"] = { + ["6089_GainAccuracyEqualToStrength"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -50538,7 +51794,7 @@ return { ["type"] = "explicit", }, }, - ["6020_GainAccuracyEqualToStrengthMaven"] = { + ["6089_GainAccuracyEqualToStrengthMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -50551,17 +51807,7 @@ return { ["type"] = "explicit", }, }, - ["602_CurseOnHitPoachersMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["6032_GainArcaneSurgeOnCrit"] = { + ["6101_GainArcaneSurgeOnCrit"] = { ["1HWeapon"] = { ["max"] = 30, ["min"] = 11, @@ -50579,7 +51825,7 @@ return { ["type"] = "explicit", }, }, - ["6037_CastSpeedAndGainArcaneSurgeOnKillChance"] = { + ["6106_CastSpeedAndGainArcaneSurgeOnKillChance"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 10, @@ -50641,17 +51887,7 @@ return { ["type"] = "explicit", }, }, - ["604_CurseOnHitWarlordsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2021420128", - ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["6051_EnduranceChargeIfHitRecently"] = { + ["6120_EnduranceChargeIfHitRecently"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -50665,7 +51901,7 @@ return { ["type"] = "explicit", }, }, - ["6051_EnduranceChargeIfHitRecentlyMaven"] = { + ["6120_EnduranceChargeIfHitRecentlyMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -50679,7 +51915,7 @@ return { ["type"] = "explicit", }, }, - ["6060_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { + ["6129_CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { ["Quiver"] = { ["max"] = 7, ["min"] = 3, @@ -50693,7 +51929,7 @@ return { ["type"] = "explicit", }, }, - ["6065_FrenzyChargeOnHittingRareOrUnique"] = { + ["6134_FrenzyChargeOnHittingRareOrUnique"] = { ["Quiver"] = { ["max"] = 5, ["min"] = 3, @@ -50707,7 +51943,7 @@ return { ["type"] = "explicit", }, }, - ["6077_MaximumFrenzyChargesMaven"] = { + ["6146_MaximumFrenzyChargesMaven"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 10, @@ -50721,7 +51957,7 @@ return { ["type"] = "explicit", }, }, - ["6082_GainOnslaughtDuringSoulGainPrevention"] = { + ["6152_GainOnslaughtDuringSoulGainPrevention"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -50738,7 +51974,7 @@ return { ["type"] = "explicit", }, }, - ["6111_GainRandomChargeOnBlock"] = { + ["6181_GainRandomChargeOnBlock"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -50751,7 +51987,7 @@ return { ["type"] = "explicit", }, }, - ["6123_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["6193_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -50760,7 +51996,7 @@ return { ["type"] = "explicit", }, }, - ["6123_GainVaalPactWhileFocused"] = { + ["6193_GainVaalPactWhileFocused"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -50769,7 +52005,7 @@ return { ["type"] = "explicit", }, }, - ["6123_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["6193_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -50782,7 +52018,7 @@ return { ["type"] = "explicit", }, }, - ["6148_ChanceToFreezeAddedDamage"] = { + ["6218_ChanceToFreezeAddedDamage"] = { ["Ring"] = { ["max"] = 37, ["min"] = 26, @@ -50796,7 +52032,7 @@ return { ["type"] = "explicit", }, }, - ["6149_ChanceToIgniteAddedDamage"] = { + ["6219_ChanceToIgniteAddedDamage"] = { ["Ring"] = { ["max"] = 42, ["min"] = 28.5, @@ -50810,7 +52046,7 @@ return { ["type"] = "explicit", }, }, - ["6151_ChanceToShockAddedDamage"] = { + ["6221_ChanceToShockAddedDamage"] = { ["Ring"] = { ["max"] = 47, ["min"] = 35.5, @@ -50824,7 +52060,7 @@ return { ["type"] = "explicit", }, }, - ["6164_GraceReservation"] = { + ["6234_GraceReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -50834,7 +52070,7 @@ return { ["type"] = "explicit", }, }, - ["6165_GraceReservationEfficiency"] = { + ["6235_GraceReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -50848,7 +52084,7 @@ return { ["type"] = "explicit", }, }, - ["6194_HatredReservation"] = { + ["6264_HatredReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -50858,7 +52094,7 @@ return { ["type"] = "explicit", }, }, - ["6195_HatredReservationEfficiency"] = { + ["6265_HatredReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -50872,7 +52108,75 @@ return { ["type"] = "explicit", }, }, - ["619_FireBurstOnHit"] = { + ["632_CurseOnHitCriticalWeakness"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["633_CurseOnHitPoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["635_CurseOnHitWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2021420128", + ["text"] = "Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6417_FreezeChanceAndDurationMaven"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1302208736", + ["text"] = "Freeze Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["6418_ShockChanceAndEffectMaven"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2206792089", + ["text"] = "Shock Enemies as though dealing #% more Damage", + ["type"] = "explicit", + }, + }, + ["6465_HitAndAilmentDamageCursedEnemies"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_539970476", + ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", + ["type"] = "explicit", + }, + }, + ["650_FireBurstOnHit"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -50933,150 +52237,7 @@ return { ["type"] = "explicit", }, }, - ["629_SummonWolfOnKillOld"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1468606528", - ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", - ["type"] = "explicit", - }, - }, - ["630_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { - ["1HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["1HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HAxe"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HSword"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Dagger"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_205619502", - ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", - ["type"] = "explicit", - }, - }, - ["6347_FreezeChanceAndDurationMaven"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1302208736", - ["text"] = "Freeze Enemies as though dealing #% more Damage", - ["type"] = "explicit", - }, - }, - ["6348_ShockChanceAndEffectMaven"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2206792089", - ["text"] = "Shock Enemies as though dealing #% more Damage", - ["type"] = "explicit", - }, - }, - ["636_TriggerOnRareAssassinsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3924520095", - ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["6395_HitAndAilmentDamageCursedEnemies"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_539970476", - ["text"] = "#% increased Damage with Hits and Ailments against Cursed Enemies", - ["type"] = "explicit", - }, - }, - ["641_TriggerOnRarePoachersMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3904501306", - ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["643_TriggerOnRareWarlordsMark"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2049471530", - ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", - ["type"] = "explicit", - }, - }, - ["6469_ImmuneToStatusAilmentsWhileFocused"] = { + ["6542_ImmuneToStatusAilmentsWhileFocused"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -51089,7 +52250,7 @@ return { ["type"] = "explicit", }, }, - ["6469_ImmuneToStatusAilmentsWhileFocusedCDR"] = { + ["6542_ImmuneToStatusAilmentsWhileFocusedCDR"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -51102,7 +52263,7 @@ return { ["type"] = "explicit", }, }, - ["6472_ImpaleEffect"] = { + ["6545_ImpaleEffect"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 12, @@ -51168,7 +52329,7 @@ return { ["type"] = "explicit", }, }, - ["6511_GlobalIntelligenceGemLevel"] = { + ["6584_GlobalIntelligenceGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -51178,7 +52339,82 @@ return { ["type"] = "explicit", }, }, - ["6557_LifeRecoveryRateMaven"] = { + ["660_SummonWolfOnKillOld"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1468606528", + ["text"] = "Trigger Level 10 Summon Spectral Wolf on Kill", + ["type"] = "explicit", + }, + }, + ["661_LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance"] = { + ["1HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HAxe"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HSword"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Dagger"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_205619502", + ["text"] = "#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", + ["type"] = "explicit", + }, + }, + ["6630_LifeRecoveryRateMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -51192,7 +52428,7 @@ return { ["type"] = "explicit", }, }, - ["6571_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { + ["6644_LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 10, @@ -51206,7 +52442,7 @@ return { ["type"] = "explicit", }, }, - ["6572_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { + ["6645_EnemyLifeLeechPermyriadWhileFocusedAndVaalPact"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -51216,7 +52452,7 @@ return { ["type"] = "explicit", }, }, - ["6599_MaximumLifeOnKillPercentMaven"] = { + ["6672_MaximumLifeOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -51230,7 +52466,17 @@ return { ["type"] = "explicit", }, }, - ["6630_LifeRegenerationRateWhileMoving"] = { + ["667_TriggerOnRareAssassinsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3924520095", + ["text"] = "Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6703_LifeRegenerationRateWhileMoving"] = { ["AbyssJewel"] = { ["max"] = 1, ["min"] = 0.5, @@ -51248,7 +52494,7 @@ return { ["type"] = "explicit", }, }, - ["6632_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { + ["6705_LifeRegenerationRatePerMinuteWhileUsingFlask"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -51258,7 +52504,7 @@ return { ["type"] = "explicit", }, }, - ["6639_AbyssJewelShockEffect"] = { + ["6712_AbyssJewelShockEffect"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -51276,7 +52522,7 @@ return { ["type"] = "explicit", }, }, - ["6639_LightningAilmentEffect"] = { + ["6712_LightningAilmentEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -51286,7 +52532,7 @@ return { ["type"] = "explicit", }, }, - ["6639_ShockChanceAndEffect"] = { + ["6712_ShockChanceAndEffect"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 8, @@ -51300,7 +52546,7 @@ return { ["type"] = "explicit", }, }, - ["6639_ShockEffectSupported"] = { + ["6712_ShockEffectSupported"] = { ["Helmet"] = { ["max"] = 20, ["min"] = 8, @@ -51314,7 +52560,7 @@ return { ["type"] = "explicit", }, }, - ["6641_LightningAndChaosDamageResistance"] = { + ["6714_LightningAndChaosDamageResistance"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 9, @@ -51412,7 +52658,17 @@ return { ["type"] = "explicit", }, }, - ["6656_PhysicalDamageTakenAsLightningUberMaven"] = { + ["672_TriggerOnRarePoachersMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3904501306", + ["text"] = "Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["6730_PhysicalDamageTakenAsLightningUberMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 7, @@ -51426,7 +52682,7 @@ return { ["type"] = "explicit", }, }, - ["6669_GlobalLightningGemLevel"] = { + ["6743_GlobalLightningGemLevel"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -51440,7 +52696,17 @@ return { ["type"] = "explicit", }, }, - ["672_FlaskExtraMaxCharges"] = { + ["674_TriggerOnRareWarlordsMark"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2049471530", + ["text"] = "Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", + ["type"] = "explicit", + }, + }, + ["703_FlaskExtraMaxCharges"] = { ["Flask"] = { ["max"] = 35, ["min"] = 16, @@ -51454,7 +52720,7 @@ return { ["type"] = "explicit", }, }, - ["675_FlaskFullRechargeOnHit"] = { + ["706_FlaskFullRechargeOnHit"] = { ["Flask"] = { ["max"] = 3, ["min"] = 1, @@ -51468,7 +52734,7 @@ return { ["type"] = "explicit", }, }, - ["676_FlaskFullRechargeOnCrit"] = { + ["707_FlaskFullRechargeOnCrit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -51478,7 +52744,7 @@ return { ["type"] = "explicit", }, }, - ["677_FlaskChanceRechargeOnCrit"] = { + ["708_FlaskChanceRechargeOnCrit"] = { ["Flask"] = { ["max"] = 35, ["min"] = 11, @@ -51492,7 +52758,7 @@ return { ["type"] = "explicit", }, }, - ["680_FlaskIncreasedChargesAdded"] = { + ["711_FlaskIncreasedChargesAdded"] = { ["Flask"] = { ["max"] = 50, ["min"] = 16, @@ -51506,7 +52772,7 @@ return { ["type"] = "explicit", }, }, - ["680_FlaskIncreasedRecoveryReducedEffect"] = { + ["711_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { ["max"] = 66, ["min"] = 37, @@ -51520,7 +52786,7 @@ return { ["type"] = "explicit", }, }, - ["681_FlaskChargesUsed"] = { + ["712_FlaskChargesUsed"] = { ["Flask"] = { ["max"] = -14, ["min"] = -28, @@ -51534,7 +52800,7 @@ return { ["type"] = "explicit", }, }, - ["681_FlaskIncreasedHealingCharges"] = { + ["712_FlaskIncreasedHealingCharges"] = { ["Flask"] = { ["max"] = 25, ["min"] = 20, @@ -51548,561 +52814,200 @@ return { ["type"] = "explicit", }, }, - ["684_FlaskExtraLifeCostsMana"] = { - ["Flask"] = { - ["max"] = 60, - ["min"] = 35, + ["7131_LocalIncreasedPhysicalDamageAndImpaleChance"] = { + ["1HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", + ["1HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["685_FlaskHealsMinions"] = { - ["Flask"] = { - ["max"] = 200, - ["min"] = 100, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["688_FlaskExtraManaCostsLife"] = { - ["Flask"] = { - ["max"] = 70, - ["min"] = 41, + ["2HSword"] = { + ["max"] = 25, + ["min"] = 13, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["689_FlaskEffectNotRemovedOnFullManaReducedRecovery"] = { - ["Flask"] = { - ["max"] = -66, - ["min"] = -66, + ["Claw"] = { + ["max"] = 25, + ["min"] = 13, }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 25, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 25, + ["min"] = 13, }, - }, - ["689_FlaskFullInstantRecovery"] = { - ["Flask"] = { - ["max"] = -66, - ["min"] = -66, + ["Wand"] = { + ["max"] = 25, + ["min"] = 13, }, - ["inverseKey"] = "reduced", + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", + ["id"] = "explicit.stat_3739863694", + ["text"] = "#% chance to Impale Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["689_FlaskIncreasedHealingCharges"] = { - ["Flask"] = { - ["max"] = 50, - ["min"] = 21, + ["7135_LocalBleedDamageOverTimeMultiplier"] = { + ["1HAxe"] = { + ["max"] = 59, + ["min"] = 37, }, - ["sign"] = "", - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", + ["1HSword"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["689_FlaskIncreasedRecoveryAmount"] = { - ["Flask"] = { - ["max"] = 70, - ["min"] = 41, + ["1HWeapon"] = { + ["max"] = 59, + ["min"] = 37, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["689_FlaskInstantRecoveryOnLowLife"] = { - ["Flask"] = { - ["max"] = -11, - ["min"] = -30, + ["2HSword"] = { + ["max"] = 59, + ["min"] = 37, }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["689_FlaskManaRecoveryAtEnd"] = { - ["Flask"] = { - ["max"] = 66, - ["min"] = 66, + ["Claw"] = { + ["max"] = 59, + ["min"] = 37, }, - ["sign"] = "", - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 59, + ["min"] = 37, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 59, + ["min"] = 37, }, - }, - ["689_FlaskPartialInstantRecovery"] = { - ["Flask"] = { - ["max"] = -36, - ["min"] = -55, + ["Wand"] = { + ["max"] = 59, + ["min"] = 37, }, - ["inverseKey"] = "reduced", + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", + ["id"] = "explicit.stat_951608773", + ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", ["type"] = "explicit", }, }, - ["690_FlaskIncreasedRecoveryAmount"] = { - ["Flask"] = { - ["max"] = -33, - ["min"] = -33, + ["7138_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 60, }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 60, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", + ["1HSword"] = { + ["max"] = 60, + ["min"] = 60, }, - }, - ["690_FlaskIncreasedRecoverySpeed"] = { - ["Flask"] = { - ["max"] = 70, - ["min"] = 41, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 60, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HAxe"] = { + ["max"] = 60, + ["min"] = 60, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 60, + ["min"] = 60, }, - }, - ["690_FlaskPartialInstantRecovery"] = { - ["Flask"] = { - ["max"] = 135, - ["min"] = 135, + ["2HSword"] = { + ["max"] = 60, + ["min"] = 60, }, - ["sign"] = "", - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 60, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 60, + ["min"] = 60, }, - }, - ["692_FlaskEffectReducedDuration"] = { - ["Flask"] = { - ["max"] = -23, - ["min"] = -38, + ["Claw"] = { + ["max"] = 60, + ["min"] = 60, }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 60, + ["min"] = 60, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 60, + ["min"] = 60, }, - }, - ["692_FlaskUtilityIncreasedDuration"] = { - ["Flask"] = { - ["max"] = 40, - ["min"] = 16, + ["Wand"] = { + ["max"] = 60, + ["min"] = 60, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration", + ["id"] = "explicit.stat_1560880986", + ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", ["type"] = "explicit", }, }, - ["693_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = -35, - ["min"] = -49, + ["7139_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { + ["1HAxe"] = { + ["max"] = 60, + ["min"] = 60, }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["693_FlaskFreezeAndChillImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["693_FlaskIgniteImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["693_FlaskPoisonImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["693_FlaskShockImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = -35, - ["min"] = -49, - }, - ["inverseKey"] = "less", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1506355899", - ["text"] = "#% more Duration", - ["type"] = "explicit", - }, - }, - ["694_FlaskIncreasedRecoveryOnLowLife"] = { - ["Flask"] = { - ["max"] = 130, - ["min"] = 101, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["695_FlaskInstantRecoveryOnLowLife"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3812107348", - ["text"] = "Instant Recovery when on Low Life", - ["type"] = "explicit", - }, - }, - ["696_FlaskPartialInstantRecovery"] = { - ["Flask"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, - ["700_FlaskManaRecoveryAtEnd"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4204954479", - ["text"] = "Mana Recovery occurs instantly at the end of Effect", - ["type"] = "explicit", - }, - }, - ["701_FlaskFullInstantRecovery"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, - ["704_FlaskExtraManaCostsLife"] = { - ["Flask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, - ["7057_LocalIncreasedPhysicalDamageAndImpaleChance"] = { - ["1HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["1HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["1HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["2HAxe"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["2HSword"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["Claw"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["Dagger"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 13, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3739863694", - ["text"] = "#% chance to Impale Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["7061_LocalBleedDamageOverTimeMultiplier"] = { - ["1HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["1HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["1HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["1HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["2HAxe"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["2HMace"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["2HSword"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Bow"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Claw"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Dagger"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["Wand"] = { - ["max"] = 59, - ["min"] = 37, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_951608773", - ["text"] = "+#% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", - ["type"] = "explicit", - }, - }, - ["7064_LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon"] = { - ["1HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["1HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["1HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["2HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["2HMace"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["2HSword"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["Bow"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["Claw"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["Dagger"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["Wand"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1560880986", - ["text"] = "#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", - ["type"] = "explicit", - }, - }, - ["7065_LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon"] = { - ["1HAxe"] = { - ["max"] = 60, - ["min"] = 60, - }, - ["1HMace"] = { - ["max"] = 60, - ["min"] = 60, + ["1HMace"] = { + ["max"] = 60, + ["min"] = 60, }, ["1HSword"] = { ["max"] = 60, @@ -52157,7 +53062,7 @@ return { ["type"] = "explicit", }, }, - ["7068_LocalChanceToIntimidateOnHit"] = { + ["7142_LocalChanceToIntimidateOnHit"] = { ["1HAxe"] = { ["max"] = 15, ["min"] = 7, @@ -52219,7 +53124,7 @@ return { ["type"] = "explicit", }, }, - ["7069_LocalChaosDamagePenetrationHybrid"] = { + ["7143_LocalChaosDamagePenetrationHybrid"] = { ["1HAxe"] = { ["max"] = 6, ["min"] = 4, @@ -52281,7 +53186,7 @@ return { ["type"] = "explicit", }, }, - ["7069_LocalChaosPenetration"] = { + ["7143_LocalChaosPenetration"] = { ["1HAxe"] = { ["max"] = 16, ["min"] = 6, @@ -52343,21 +53248,7 @@ return { ["type"] = "explicit", }, }, - ["706_FlaskExtraLifeCostsMana"] = { - ["Flask"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["7077_CullingStrikeOnBleedingEnemiesUber"] = { + ["7151_CullingStrikeOnBleedingEnemiesUber"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -52382,7 +53273,7 @@ return { ["type"] = "explicit", }, }, - ["7085_PowerChargeOnManaSpent"] = { + ["7159_PowerChargeOnManaSpent"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -52399,7 +53290,35 @@ return { ["type"] = "explicit", }, }, - ["7098_NearbyEnemyChaosDamageResistance"] = { + ["715_FlaskExtraLifeCostsMana"] = { + ["Flask"] = { + ["max"] = 60, + ["min"] = 35, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, + ["716_FlaskHealsMinions"] = { + ["Flask"] = { + ["max"] = 200, + ["min"] = 100, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["7173_NearbyEnemyChaosDamageResistance"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 9, @@ -52413,7 +53332,7 @@ return { ["type"] = "explicit", }, }, - ["7099_NearbyEnemyColdDamageResistance"] = { + ["7174_NearbyEnemyColdDamageResistance"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 9, @@ -52427,7 +53346,7 @@ return { ["type"] = "explicit", }, }, - ["7100_NearbyEnemyElementalDamageTaken"] = { + ["7175_NearbyEnemyElementalDamageTaken"] = { ["Helmet"] = { ["max"] = 9, ["min"] = 6, @@ -52441,7 +53360,7 @@ return { ["type"] = "explicit", }, }, - ["7101_NearbyEnemyFireDamageResistance"] = { + ["7176_NearbyEnemyFireDamageResistance"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 9, @@ -52455,7 +53374,7 @@ return { ["type"] = "explicit", }, }, - ["7103_NearbyEnemyLightningDamageResistance"] = { + ["7178_NearbyEnemyLightningDamageResistance"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 9, @@ -52469,7 +53388,7 @@ return { ["type"] = "explicit", }, }, - ["7105_NearbyEnemyPhysicalDamageTaken"] = { + ["7180_NearbyEnemyPhysicalDamageTaken"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 9, @@ -52483,7 +53402,21 @@ return { ["type"] = "explicit", }, }, - ["7125_DexterityAndLocalItemQuality"] = { + ["719_FlaskExtraManaCostsLife"] = { + ["Flask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, + ["7200_DexterityAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52493,7 +53426,7 @@ return { ["type"] = "explicit", }, }, - ["7125_IntelligenceAndLocalItemQuality"] = { + ["7200_IntelligenceAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52503,7 +53436,7 @@ return { ["type"] = "explicit", }, }, - ["7125_LocalAccuracyRatingAndLocalItemQuality"] = { + ["7200_LocalAccuracyRatingAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52513,7 +53446,7 @@ return { ["type"] = "explicit", }, }, - ["7125_LocalAttackSpeedAndLocalItemQuality"] = { + ["7200_LocalAttackSpeedAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52523,7 +53456,7 @@ return { ["type"] = "explicit", }, }, - ["7125_LocalCriticalStrikeChanceAndLocalItemQuality"] = { + ["7200_LocalCriticalStrikeChanceAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52533,7 +53466,7 @@ return { ["type"] = "explicit", }, }, - ["7125_LocalItemQuality"] = { + ["7200_LocalItemQuality"] = { ["Chest"] = { ["max"] = 20, ["min"] = 10, @@ -52551,7 +53484,7 @@ return { ["type"] = "explicit", }, }, - ["7125_StrengthAndLocalItemQuality"] = { + ["7200_StrengthAndLocalItemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52561,7 +53494,147 @@ return { ["type"] = "explicit", }, }, - ["7155_LifeGainPerBlindedEnemyHit"] = { + ["720_FlaskEffectNotRemovedOnFullManaReducedRecovery"] = { + ["Flask"] = { + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskFullInstantRecovery"] = { + ["Flask"] = { + ["max"] = -66, + ["min"] = -66, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskIncreasedHealingCharges"] = { + ["Flask"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskIncreasedRecoveryAmount"] = { + ["Flask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskInstantRecoveryOnLowLife"] = { + ["Flask"] = { + ["max"] = -11, + ["min"] = -30, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskManaRecoveryAtEnd"] = { + ["Flask"] = { + ["max"] = 66, + ["min"] = 66, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["720_FlaskPartialInstantRecovery"] = { + ["Flask"] = { + ["max"] = -36, + ["min"] = -55, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["721_FlaskIncreasedRecoveryAmount"] = { + ["Flask"] = { + ["max"] = -33, + ["min"] = -33, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["721_FlaskIncreasedRecoverySpeed"] = { + ["Flask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["721_FlaskPartialInstantRecovery"] = { + ["Flask"] = { + ["max"] = 135, + ["min"] = 135, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["7230_LifeGainPerBlindedEnemyHit"] = { ["1HWeapon"] = { ["max"] = 50, ["min"] = 35, @@ -52579,7 +53652,7 @@ return { ["type"] = "explicit", }, }, - ["7159_ChanceToMaimSupported"] = { + ["7234_ChanceToMaimSupported"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 15, @@ -52629,7 +53702,7 @@ return { ["type"] = "explicit", }, }, - ["7159_LocalChanceToMaimPhysicalDamage"] = { + ["7234_LocalChanceToMaimPhysicalDamage"] = { ["1HAxe"] = { ["max"] = 20, ["min"] = 10, @@ -52675,14 +53748,42 @@ return { ["type"] = "explicit", }, }, - ["7169_ChanceToPoisonSupported"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 15, + ["723_FlaskEffectReducedDuration"] = { + ["Flask"] = { + ["max"] = -23, + ["min"] = -38, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, + ["723_FlaskUtilityIncreasedDuration"] = { + ["Flask"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration", + ["type"] = "explicit", + }, + }, + ["7245_ChanceToPoisonSupported"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 15, }, ["1HSword"] = { ["max"] = 20, @@ -52721,7 +53822,7 @@ return { ["type"] = "explicit", }, }, - ["7169_LocalChanceToPoisonOnHit"] = { + ["7245_LocalChanceToPoisonOnHit"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% chance to Poison on Hit", @@ -52732,7 +53833,7 @@ return { ["type"] = "explicit", }, }, - ["7169_LocalChanceToPoisonOnHitChaosDamage"] = { + ["7245_LocalChanceToPoisonOnHitChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% chance to Poison on Hit", @@ -52743,7 +53844,7 @@ return { ["type"] = "explicit", }, }, - ["7169_LocalIncreasedPhysicalDamageAndPoisonChance"] = { + ["7245_LocalIncreasedPhysicalDamageAndPoisonChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 13, @@ -52806,7 +53907,7 @@ return { ["type"] = "explicit", }, }, - ["7169_PoisonDamageAndLocalChanceOnHit"] = { + ["7245_PoisonDamageAndLocalChanceOnHit"] = { ["1HSword"] = { ["max"] = 30, ["min"] = 20, @@ -52845,7 +53946,158 @@ return { ["type"] = "explicit", }, }, - ["7282_GlobalMaimOnHit"] = { + ["724_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["724_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["724_FlaskIgniteImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["724_FlaskPoisonImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["724_FlaskShockImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = -35, + ["min"] = -49, + }, + ["inverseKey"] = "less", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1506355899", + ["text"] = "#% more Duration", + ["type"] = "explicit", + }, + }, + ["725_FlaskIncreasedRecoveryOnLowLife"] = { + ["Flask"] = { + ["max"] = 130, + ["min"] = 101, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["726_FlaskInstantRecoveryOnLowLife"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3812107348", + ["text"] = "Instant Recovery when on Low Life", + ["type"] = "explicit", + }, + }, + ["727_FlaskPartialInstantRecovery"] = { + ["Flask"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["731_FlaskManaRecoveryAtEnd"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4204954479", + ["text"] = "Mana Recovery occurs instantly at the end of Effect", + ["type"] = "explicit", + }, + }, + ["732_FlaskFullInstantRecovery"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, + ["735_FlaskExtraManaCostsLife"] = { + ["Flask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, + ["7362_GlobalMaimOnHit"] = { ["Quiver"] = { ["max"] = 20, ["min"] = 15, @@ -52859,7 +54111,7 @@ return { ["type"] = "explicit", }, }, - ["7289_MalevolenceReservation"] = { + ["7369_MalevolenceReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52869,7 +54121,7 @@ return { ["type"] = "explicit", }, }, - ["7290_MalevolenceReservationEfficiency"] = { + ["7370_MalevolenceReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -52883,7 +54135,21 @@ return { ["type"] = "explicit", }, }, - ["7301_AddedManaRegenerationMaven"] = { + ["737_FlaskExtraLifeCostsMana"] = { + ["Flask"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["7381_AddedManaRegenerationMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -52897,7 +54163,7 @@ return { ["type"] = "explicit", }, }, - ["7305_ManaGainedOnSpellHit"] = { + ["7385_ManaGainedOnSpellHit"] = { ["Ring"] = { ["max"] = 3, ["min"] = 2, @@ -52911,20 +54177,7 @@ return { ["type"] = "explicit", }, }, - ["730_FlaskCurseImmunity"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3895393544", - ["text"] = "Removes Curses on use", - ["type"] = "explicit", - }, - }, - ["7311_ManaGainedOnBlock"] = { + ["7391_ManaGainedOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -52934,7 +54187,7 @@ return { ["type"] = "explicit", }, }, - ["7311_RecoverManaPercentOnBlock"] = { + ["7391_RecoverManaPercentOnBlock"] = { ["Shield"] = { ["max"] = 5, ["min"] = 3, @@ -52948,7 +54201,7 @@ return { ["type"] = "explicit", }, }, - ["7316_MaximumManaOnKillPercentMaven"] = { + ["7396_MaximumManaOnKillPercentMaven"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -52962,21 +54215,7 @@ return { ["type"] = "explicit", }, }, - ["731_LocalLifeFlaskAdditionalLifeRecovery"] = { - ["Flask"] = { - ["max"] = 40, - ["min"] = 11, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_307410279", - ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", - ["type"] = "explicit", - }, - }, - ["7323_ManaRegeneratedIfYouveHitRecently"] = { + ["7403_ManaRegeneratedIfYouveHitRecently"] = { ["1HAxe"] = { ["max"] = 0.4, ["min"] = 0.4, @@ -53042,7 +54281,7 @@ return { ["type"] = "explicit", }, }, - ["7335_ManaRegenerationRateWhileMoving"] = { + ["7415_ManaRegenerationRateWhileMoving"] = { ["AbyssJewel"] = { ["max"] = 25, ["min"] = 20, @@ -53064,7 +54303,34 @@ return { ["type"] = "explicit", }, }, - ["738_LocalFlaskImmuneToMaimAndHinder"] = { + ["761_FlaskCurseImmunity"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3895393544", + ["text"] = "Removes Curses on use", + ["type"] = "explicit", + }, + }, + ["762_LocalLifeFlaskAdditionalLifeRecovery"] = { + ["Flask"] = { + ["max"] = 40, + ["min"] = 11, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_307410279", + ["text"] = "Recover an additional #% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", + ["type"] = "explicit", + }, + }, + ["769_LocalFlaskImmuneToMaimAndHinder"] = { ["Flask"] = { ["max"] = 17, ["min"] = 6, @@ -53078,7 +54344,7 @@ return { ["type"] = "explicit", }, }, - ["739_LocalFlaskImmuneToMaimAndHinder"] = { + ["770_LocalFlaskImmuneToMaimAndHinder"] = { ["Flask"] = { ["max"] = 17, ["min"] = 6, @@ -53092,7 +54358,7 @@ return { ["type"] = "explicit", }, }, - ["740_FlaskDispellsPoison"] = { + ["771_FlaskDispellsPoison"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -53101,7 +54367,7 @@ return { ["type"] = "explicit", }, }, - ["741_FlaskPoisonImmunity"] = { + ["772_FlaskPoisonImmunity"] = { ["Flask"] = { ["max"] = 1, ["min"] = 1, @@ -53114,7 +54380,7 @@ return { ["type"] = "explicit", }, }, - ["742_FlaskRemovesShock"] = { + ["773_FlaskRemovesShock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -53123,7 +54389,7 @@ return { ["type"] = "explicit", }, }, - ["743_FlaskShockImmunity"] = { + ["774_FlaskShockImmunity"] = { ["Flask"] = { ["max"] = 1, ["min"] = 1, @@ -53136,7 +54402,7 @@ return { ["type"] = "explicit", }, }, - ["744_LocalLifeFlaskHinderNearbyEnemies"] = { + ["775_LocalLifeFlaskHinderNearbyEnemies"] = { ["Flask"] = { ["max"] = 40, ["min"] = 17, @@ -53150,7 +54416,7 @@ return { ["type"] = "explicit", }, }, - ["745_LocalManaFlaskHinderNearbyEnemies"] = { + ["776_LocalManaFlaskHinderNearbyEnemies"] = { ["Flask"] = { ["max"] = 40, ["min"] = 17, @@ -53164,7 +54430,16 @@ return { ["type"] = "explicit", }, }, - ["767_FlaskEffectReducedDuration"] = { + ["7897_MapMonsterPacksVaalMapWorlds"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2609768284", + ["text"] = "Area is inhabited by the Vaal", + ["type"] = "explicit", + }, + }, + ["798_FlaskEffectReducedDuration"] = { ["Flask"] = { ["max"] = 25, ["min"] = 25, @@ -53178,7 +54453,7 @@ return { ["type"] = "explicit", }, }, - ["767_FlaskIncreasedRecoveryReducedEffect"] = { + ["798_FlaskIncreasedRecoveryReducedEffect"] = { ["Flask"] = { ["max"] = -25, ["min"] = -25, @@ -53192,7 +54467,7 @@ return { ["type"] = "explicit", }, }, - ["768_FlaskBuffArmourWhileHealing"] = { + ["799_FlaskBuffArmourWhileHealing"] = { ["Flask"] = { ["max"] = 60, ["min"] = 41, @@ -53206,7 +54481,7 @@ return { ["type"] = "explicit", }, }, - ["769_FlaskBuffEvasionWhileHealing"] = { + ["800_FlaskBuffEvasionWhileHealing"] = { ["Flask"] = { ["max"] = 60, ["min"] = 41, @@ -53220,7 +54495,7 @@ return { ["type"] = "explicit", }, }, - ["771_FlaskBuffWardWhileHealing"] = { + ["802_FlaskBuffWardWhileHealing"] = { ["Flask"] = { ["max"] = 30, ["min"] = 19, @@ -53234,7 +54509,7 @@ return { ["type"] = "explicit", }, }, - ["775_FlaskBuffAccuracyWhileHealing"] = { + ["806_FlaskBuffAccuracyWhileHealing"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53244,7 +54519,7 @@ return { ["type"] = "explicit", }, }, - ["776_FlaskBuffAttackSpeedWhileHealing"] = { + ["807_FlaskBuffAttackSpeedWhileHealing"] = { ["Flask"] = { ["max"] = 17, ["min"] = 9, @@ -53258,16 +54533,7 @@ return { ["type"] = "explicit", }, }, - ["7776_MapMonsterPacksVaalMapWorlds"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2609768284", - ["text"] = "Area is inhabited by the Vaal", - ["type"] = "explicit", - }, - }, - ["777_FlaskBuffCastSpeedWhileHealing"] = { + ["808_FlaskBuffCastSpeedWhileHealing"] = { ["Flask"] = { ["max"] = 17, ["min"] = 9, @@ -53281,7 +54547,7 @@ return { ["type"] = "explicit", }, }, - ["778_FlaskBuffMovementSpeedWhileHealing"] = { + ["809_FlaskBuffMovementSpeedWhileHealing"] = { ["Flask"] = { ["max"] = 14, ["min"] = 6, @@ -53295,7 +54561,7 @@ return { ["type"] = "explicit", }, }, - ["779_FlaskBuffStunRecoveryWhileHealing"] = { + ["810_FlaskBuffStunRecoveryWhileHealing"] = { ["Flask"] = { ["max"] = 80, ["min"] = 51, @@ -53309,7 +54575,7 @@ return { ["type"] = "explicit", }, }, - ["780_FlaskBuffResistancesWhileHealing"] = { + ["811_FlaskBuffResistancesWhileHealing"] = { ["Flask"] = { ["max"] = 40, ["min"] = 21, @@ -53323,7 +54589,7 @@ return { ["type"] = "explicit", }, }, - ["781_FlaskBuffLifeLeechWhileHealing"] = { + ["812_FlaskBuffLifeLeechWhileHealing"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53333,7 +54599,7 @@ return { ["type"] = "explicit", }, }, - ["782_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { + ["813_FlaskBuffSpellEnergyShieldLeechWhileHealing"] = { ["Flask"] = { ["max"] = 0.8, ["min"] = 0.4, @@ -53347,7 +54613,7 @@ return { ["type"] = "explicit", }, }, - ["783_FlaskBuffAttackLifeLeechWhileHealing"] = { + ["814_FlaskBuffAttackLifeLeechWhileHealing"] = { ["Flask"] = { ["max"] = 0.8, ["min"] = 0.4, @@ -53361,7 +54627,7 @@ return { ["type"] = "explicit", }, }, - ["784_FlaskBuffLifeLeechPermyriadWhileHealing"] = { + ["815_FlaskBuffLifeLeechPermyriadWhileHealing"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53371,7 +54637,7 @@ return { ["type"] = "explicit", }, }, - ["786_FlaskBuffManaLeechPermyriadWhileHealing"] = { + ["817_FlaskBuffManaLeechPermyriadWhileHealing"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53381,7 +54647,7 @@ return { ["type"] = "explicit", }, }, - ["787_FlaskBuffKnockbackWhileHealing"] = { + ["818_FlaskBuffKnockbackWhileHealing"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -53390,63 +54656,7 @@ return { ["type"] = "explicit", }, }, - ["794_FlaskBuffAvoidChillFreeze"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1053326368", - ["text"] = "#% chance to Avoid being Chilled during Effect", - ["type"] = "explicit", - }, - }, - ["795_FlaskBuffAvoidChillFreeze"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_475518267", - ["text"] = "#% chance to Avoid being Frozen during Effect", - ["type"] = "explicit", - }, - }, - ["796_FlaskBuffAvoidIgnite"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_20251177", - ["text"] = "#% chance to Avoid being Ignited during Effect", - ["type"] = "explicit", - }, - }, - ["797_FlaskBuffAvoidShock"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3642618258", - ["text"] = "#% chance to Avoid being Shocked during Effect", - ["type"] = "explicit", - }, - }, - ["8024_FortifyEffect"] = { + ["8196_FortifyEffect"] = { ["Boots"] = { ["max"] = 5, ["min"] = 3, @@ -53472,7 +54682,7 @@ return { ["type"] = "explicit", }, }, - ["8024_FortifyEffectMaven"] = { + ["8196_FortifyEffectMaven"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 4.2, @@ -53486,7 +54696,7 @@ return { ["type"] = "explicit", }, }, - ["8025_FortifyEffectWhileFocused"] = { + ["8197_FortifyEffectWhileFocused"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -53500,45 +54710,7 @@ return { ["type"] = "explicit", }, }, - ["802_FlaskBuffAvoidStunWhileHealing"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 31, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, - ["802_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, - ["802_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { - ["Flask"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2312652600", - ["text"] = "#% Chance to Avoid being Stunned during Effect", - ["type"] = "explicit", - }, - }, - ["8034_MaximumEnergyShieldFromBodyArmour"] = { + ["8206_MaximumEnergyShieldFromBodyArmour"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 20, @@ -53560,21 +54732,7 @@ return { ["type"] = "explicit", }, }, - ["804_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { - ["Flask"] = { - ["max"] = 34, - ["min"] = 19, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_97064873", - ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", - ["type"] = "explicit", - }, - }, - ["8051_LifeAddedAsEnergyShield"] = { + ["8224_LifeAddedAsEnergyShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53584,7 +54742,7 @@ return { ["type"] = "explicit", }, }, - ["8052_MaximumLifeConvertedToEnergyShield"] = { + ["8225_MaximumLifeConvertedToEnergyShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53594,7 +54752,7 @@ return { ["type"] = "explicit", }, }, - ["8067_StrikeSkillsAdditionalTarget"] = { + ["8240_StrikeSkillsAdditionalTarget"] = { ["Gloves"] = { ["max"] = 2, ["min"] = 1, @@ -53608,35 +54766,7 @@ return { ["type"] = "explicit", }, }, - ["806_FlaskBuffCriticalWhileHealing"] = { - ["Flask"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2008255263", - ["text"] = "#% increased Critical Strike Chance during Effect", - ["type"] = "explicit", - }, - }, - ["806_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { - ["Flask"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2008255263", - ["text"] = "#% increased Critical Strike Chance during Effect", - ["type"] = "explicit", - }, - }, - ["8071_MeleeDamageDuringFlaskEffect"] = { + ["8244_MeleeDamageDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 35, ["min"] = 20, @@ -53650,7 +54780,7 @@ return { ["type"] = "explicit", }, }, - ["8073_MovementSkillsFortifyOnHitChance"] = { + ["8246_MovementSkillsFortifyOnHitChance"] = { ["2HSword"] = { ["max"] = 50, ["min"] = 30, @@ -53668,7 +54798,21 @@ return { ["type"] = "explicit", }, }, - ["8100_MineAreaOfEffect"] = { + ["825_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1619168299", + ["text"] = "#% chance to Avoid being Chilled during Effect", + ["type"] = "explicit", + }, + }, + ["8266_MineAreaOfEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53678,7 +54822,7 @@ return { ["type"] = "explicit", }, }, - ["8103_MineDetonationSpeedAndDuration"] = { + ["8269_MineDetonationSpeedAndDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53688,7 +54832,21 @@ return { ["type"] = "explicit", }, }, - ["8107_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { + ["826_FlaskBuffAvoidChillFreeze"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_475518267", + ["text"] = "#% chance to Avoid being Frozen during Effect", + ["type"] = "explicit", + }, + }, + ["8273_CriticalChanceAndAddedChaosDamageIfHaveCritRecently"] = { ["Gloves"] = { ["max"] = 28.5, ["min"] = 12, @@ -53706,34 +54864,35 @@ return { ["type"] = "explicit", }, }, - ["810_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, + ["8279_AddedColdDamageIfCritRecently"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 19, }, + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3965637181", - ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", + ["id"] = "explicit.stat_3370223014", + ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", ["type"] = "explicit", }, }, - ["8113_AddedColdDamageIfCritRecently"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 19, + ["827_FlaskBuffAvoidIgnite"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3370223014", - ["text"] = "Adds # to # Cold Damage if you've dealt a Critical Strike Recently", + ["id"] = "explicit.stat_20251177", + ["text"] = "#% chance to Avoid being Ignited during Effect", ["type"] = "explicit", }, }, - ["8114_ColdDamageToAttacksPerDexterity"] = { + ["8280_ColdDamageToAttacksPerDexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53743,7 +54902,7 @@ return { ["type"] = "explicit", }, }, - ["8118_AddedFireDamageIfCritRecently"] = { + ["8284_AddedFireDamageIfCritRecently"] = { ["Gloves"] = { ["max"] = 37.5, ["min"] = 19, @@ -53757,7 +54916,7 @@ return { ["type"] = "explicit", }, }, - ["8120_GlobalAddedFireDamagePerEnduranceCharge"] = { + ["8286_GlobalAddedFireDamagePerEnduranceCharge"] = { ["Ring"] = { ["max"] = 5.5, ["min"] = 3, @@ -53771,7 +54930,7 @@ return { ["type"] = "explicit", }, }, - ["8121_FireDamageToAttacksPerStrength"] = { + ["8287_FireDamageToAttacksPerStrength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53781,7 +54940,7 @@ return { ["type"] = "explicit", }, }, - ["8123_AddedLightningDamageIfCritRecently"] = { + ["8289_AddedLightningDamageIfCritRecently"] = { ["Gloves"] = { ["max"] = 45.5, ["min"] = 21, @@ -53795,7 +54954,21 @@ return { ["type"] = "explicit", }, }, - ["8124_GlobalAddedLightningDamagePerPowerCharge"] = { + ["828_FlaskBuffAvoidShock"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 31, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3642618258", + ["text"] = "#% chance to Avoid being Shocked during Effect", + ["type"] = "explicit", + }, + }, + ["8290_GlobalAddedLightningDamagePerPowerCharge"] = { ["Ring"] = { ["max"] = 6.5, ["min"] = 3.5, @@ -53809,7 +54982,7 @@ return { ["type"] = "explicit", }, }, - ["8125_AddedLightningDamagePerShockedEnemyKilled"] = { + ["8291_AddedLightningDamagePerShockedEnemyKilled"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53819,7 +54992,7 @@ return { ["type"] = "explicit", }, }, - ["8126_LightningDamageToAttacksPerIntelligence"] = { + ["8292_LightningDamageToAttacksPerIntelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53829,7 +55002,7 @@ return { ["type"] = "explicit", }, }, - ["8129_AddedPhysicalDamageIfCritRecently"] = { + ["8295_AddedPhysicalDamageIfCritRecently"] = { ["Gloves"] = { ["max"] = 14, ["min"] = 5, @@ -53843,20 +55016,7 @@ return { ["type"] = "explicit", }, }, - ["812_FlaskFreezeAndChillImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3838369929", - ["text"] = "Immunity to Freeze and Chill during Effect", - ["type"] = "explicit", - }, - }, - ["8131_AttackImpaleChanceMaven"] = { + ["8297_AttackImpaleChanceMaven"] = { ["Gloves"] = { ["max"] = 3.5, ["min"] = 2, @@ -53870,7 +55030,7 @@ return { ["type"] = "explicit", }, }, - ["8132_AddedPhysicalDamageVsPoisonedEnemies"] = { + ["8298_AddedPhysicalDamageVsPoisonedEnemies"] = { ["Gloves"] = { ["max"] = 14.5, ["min"] = 9.5, @@ -53884,20 +55044,7 @@ return { ["type"] = "explicit", }, }, - ["813_FlaskPoisonImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1349296959", - ["text"] = "Immunity to Poison during Effect", - ["type"] = "explicit", - }, - }, - ["8143_MinionAccuracyRatingFlat"] = { + ["8310_MinionAccuracyRatingFlat"] = { ["AbyssJewel"] = { ["max"] = 250, ["min"] = 95, @@ -53915,7 +55062,7 @@ return { ["type"] = "explicit", }, }, - ["8143_MinionFlatAccuracyRating"] = { + ["8310_MinionFlatAccuracyRating"] = { ["1HWeapon"] = { ["max"] = 624, ["min"] = 80, @@ -53933,7 +55080,7 @@ return { ["type"] = "explicit", }, }, - ["8145_MinionAccuracyRating"] = { + ["8312_MinionAccuracyRating"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 13, @@ -53947,7 +55094,7 @@ return { ["type"] = "explicit", }, }, - ["8145_MinionAccuracyRatingForJewel"] = { + ["8312_MinionAccuracyRatingForJewel"] = { ["AnyJewel"] = { ["max"] = 26, ["min"] = 22, @@ -53965,7 +55112,7 @@ return { ["type"] = "explicit", }, }, - ["8148_MinionAttackSpeedAndCastSpeed"] = { + ["8315_MinionAttackSpeedAndCastSpeed"] = { ["1HWeapon"] = { ["max"] = 25, ["min"] = 5, @@ -53987,7 +55134,7 @@ return { ["type"] = "explicit", }, }, - ["8149_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { + ["8316_MinionAttackAndCastSpeedIfEnemySlainRecently"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -53997,20 +55144,7 @@ return { ["type"] = "explicit", }, }, - ["814_FlaskShockImmunityDuringEffect"] = { - ["Flask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_589991690", - ["text"] = "Immunity to Shock during Effect", - ["type"] = "explicit", - }, - }, - ["8154_MinionAttacksBlindOnHitChance"] = { + ["8321_MinionAttacksBlindOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 6, ["min"] = 3, @@ -54028,7 +55162,7 @@ return { ["type"] = "explicit", }, }, - ["8156_MinionDamageOnWeaponDoubleDamage"] = { + ["8323_MinionDamageOnWeaponDoubleDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54038,7 +55172,7 @@ return { ["type"] = "explicit", }, }, - ["8161_AbyssMinionIgniteOnHitChance"] = { + ["8328_AbyssMinionIgniteOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 15, ["min"] = 10, @@ -54056,7 +55190,7 @@ return { ["type"] = "explicit", }, }, - ["8165_MinionCriticalStrikeChanceIncrease"] = { + ["8332_MinionCriticalStrikeChanceIncrease"] = { ["1HWeapon"] = { ["max"] = 109, ["min"] = 10, @@ -54078,7 +55212,7 @@ return { ["type"] = "explicit", }, }, - ["8167_MinionCriticalStrikeMultiplier"] = { + ["8334_MinionCriticalStrikeMultiplier"] = { ["1HWeapon"] = { ["max"] = 38, ["min"] = 10, @@ -54096,39 +55230,63 @@ return { ["type"] = "explicit", }, }, - ["816_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { + ["8338_MinionDamageVSAbyssMonsters"] = { + ["AbyssJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["AnyJewel"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1086057912", + ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["type"] = "explicit", + }, + }, + ["833_FlaskBuffAvoidStunWhileHealing"] = { ["Flask"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 55, + ["min"] = 31, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1740200922", - ["text"] = "#% increased Rarity of Items found during Effect", + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", ["type"] = "explicit", }, }, - ["8171_MinionDamageVSAbyssMonsters"] = { - ["AbyssJewel"] = { - ["max"] = 40, - ["min"] = 30, + ["833_LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 40, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", + ["type"] = "explicit", + }, + }, + ["833_LocalFlaskAvoidStunChanceDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 50, + ["min"] = 50, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1086057912", - ["text"] = "Minions deal #% increased Damage with Hits and Ailments against Abyssal Monsters", + ["id"] = "explicit.stat_2312652600", + ["text"] = "#% Chance to Avoid being Stunned during Effect", ["type"] = "explicit", }, }, - ["8186_FlatMinionLifeRegeneration"] = { + ["8353_FlatMinionLifeRegeneration"] = { ["AbyssJewel"] = { ["max"] = 60, ["min"] = 22, @@ -54146,7 +55304,7 @@ return { ["type"] = "explicit", }, }, - ["8189_MinionMaxElementalResistance"] = { + ["8356_MinionMaxElementalResistance"] = { ["Shield"] = { ["max"] = 8, ["min"] = 3, @@ -54160,53 +55318,67 @@ return { ["type"] = "explicit", }, }, - ["818_LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { + ["835_FlaskBuffFreezeShockIgniteChanceWhileHealing"] = { ["Flask"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 34, + ["min"] = 19, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824033729", - ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["id"] = "explicit.stat_97064873", + ["text"] = "#% chance to Freeze, Shock and Ignite during Effect", ["type"] = "explicit", }, }, - ["819_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { - ["Flask"] = { - ["max"] = 3, + ["8371_MinionSpellsHinderOnHitChance"] = { + ["AbyssJewel"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 8, ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_871270154", - ["text"] = "Regenerate #% of Life per second during Effect", + ["id"] = "explicit.stat_2323739383", + ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", ["type"] = "explicit", }, }, - ["8204_MinionSpellsHinderOnHitChance"] = { - ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 3, + ["837_FlaskBuffCriticalWhileHealing"] = { + ["Flask"] = { + ["max"] = 55, + ["min"] = 26, }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 3, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", + ["type"] = "explicit", + }, + }, + ["837_LocalFlaskCriticalStrikeChanceDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 60, + ["min"] = 40, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2323739383", - ["text"] = "Minions have #% chance to Hinder Enemies on Hit with Spells", + ["id"] = "explicit.stat_2008255263", + ["text"] = "#% increased Critical Strike Chance during Effect", ["type"] = "explicit", }, }, - ["8222_MinionsRecoverMaximumLifeWhenYouFocus"] = { + ["8390_MinionsRecoverMaximumLifeWhenYouFocus"] = { ["Gloves"] = { ["max"] = 100, ["min"] = 100, @@ -54220,7 +55392,7 @@ return { ["type"] = "explicit", }, }, - ["8222_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { + ["8390_MinionsRecoverMaximumLifeWhenYouFocusCDR"] = { ["Gloves"] = { ["max"] = 100, ["min"] = 100, @@ -54234,35 +55406,20 @@ return { ["type"] = "explicit", }, }, - ["823_FlaskReflectReductionDuringFlaskEffect"] = { + ["841_FlaskBleedingAndCorruptedBloodImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 80, - ["min"] = 45, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3842373291", - ["text"] = "#% reduced Reflected Damage taken during Effect", - ["type"] = "explicit", - }, - }, - ["824_LocalFlaskSkillManaCostDuringFlaskEffect"] = { - ["Flask"] = { - ["max"] = -11, - ["min"] = -29, + ["max"] = 1, + ["min"] = 1, }, - ["inverseKey"] = "reduced", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_683273571", - ["text"] = "#% increased Mana Cost of Skills during Effect", + ["id"] = "explicit.stat_3965637181", + ["text"] = "Immunity to Bleeding and Corrupted Blood during Effect", ["type"] = "explicit", }, }, - ["8257_MovementSpeedIfHitRecently"] = { + ["8426_MovementSpeedIfHitRecently"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -54292,7 +55449,7 @@ return { ["type"] = "explicit", }, }, - ["8260_MovementSpeedIfNotDamagedRecently"] = { + ["8429_MovementSpeedIfNotDamagedRecently"] = { ["AbyssJewel"] = { ["max"] = 4, ["min"] = 3, @@ -54310,7 +55467,20 @@ return { ["type"] = "explicit", }, }, - ["8272_MovementSpeedOnBurningChilledShockedGround"] = { + ["843_FlaskFreezeAndChillImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3838369929", + ["text"] = "Immunity to Freeze and Chill during Effect", + ["type"] = "explicit", + }, + }, + ["8441_MovementSpeedOnBurningChilledShockedGround"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54320,21 +55490,109 @@ return { ["type"] = "explicit", }, }, - ["829_FlaskBuffChillFreezeDuration"] = { + ["844_FlaskPoisonImmunityDuringEffect"] = { ["Flask"] = { - ["max"] = 65, - ["min"] = 36, + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1349296959", + ["text"] = "Immunity to Poison during Effect", + ["type"] = "explicit", + }, + }, + ["845_FlaskShockImmunityDuringEffect"] = { + ["Flask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_589991690", + ["text"] = "Immunity to Shock during Effect", + ["type"] = "explicit", + }, + }, + ["847_LocalFlaskItemFoundRarityDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 30, + ["min"] = 20, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2434101731", - ["text"] = "#% reduced Effect of Chill on you during Effect", + ["id"] = "explicit.stat_1740200922", + ["text"] = "#% increased Rarity of Items found during Effect", + ["type"] = "explicit", + }, + }, + ["8483_VaalSoulCost"] = { + ["1HAxe"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3533432197", + ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", ["type"] = "explicit", }, }, - ["8309_NonChaosAddedAsChaos"] = { + ["8484_NonChaosAddedAsChaos"] = { ["Amulet"] = { ["max"] = 5, ["min"] = 3, @@ -54348,7 +55606,7 @@ return { ["type"] = "explicit", }, }, - ["8309_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { + ["8484_SpellDamageAndNonChaosDamageToAddAsChaosDamage"] = { ["1HAxe"] = { ["max"] = 5, ["min"] = 2, @@ -54410,7 +55668,7 @@ return { ["type"] = "explicit", }, }, - ["8309_WeaponSpellDamageAddedAsChaos"] = { + ["8484_WeaponSpellDamageAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54420,21 +55678,7 @@ return { ["type"] = "explicit", }, }, - ["830_FlaskBuffCurseEffect"] = { - ["Flask"] = { - ["max"] = 65, - ["min"] = 36, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4265534424", - ["text"] = "#% reduced Effect of Curses on you during Effect", - ["type"] = "explicit", - }, - }, - ["8315_IncreasedAilmentDurationMaven"] = { + ["8490_IncreasedAilmentDurationMaven"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 13, @@ -54448,7 +55692,7 @@ return { ["type"] = "explicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemies"] = { + ["8490_IncreasedAilmentEffectOnEnemies"] = { ["Amulet"] = { ["max"] = 40, ["min"] = 15, @@ -54478,21 +55722,35 @@ return { ["type"] = "explicit", }, }, - ["831_FlaskBuffChillFreezeDuration"] = { + ["849_LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -65, + ["max"] = 15, + ["min"] = 15, }, - ["inverseKey"] = "reduced", + ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_774474440", - ["text"] = "#% increased Freeze Duration on you during Effect", + ["id"] = "explicit.stat_3824033729", + ["text"] = "#% of Damage Taken from Hits is Leeched as Life during Effect", + ["type"] = "explicit", + }, + }, + ["850_LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_871270154", + ["text"] = "Regenerate #% of Life per second during Effect", ["type"] = "explicit", }, }, - ["8338_AdditionalTrapsThrownSupported"] = { + ["8513_AdditionalTrapsThrownSupported"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -54505,7 +55763,7 @@ return { ["type"] = "explicit", }, }, - ["8342_GainEnduranceChargeWhileStationary"] = { + ["8517_GainEnduranceChargeWhileStationary"] = { ["1HSword"] = { ["max"] = 1, ["min"] = 1, @@ -54530,21 +55788,35 @@ return { ["type"] = "explicit", }, }, - ["834_FlaskBuffShockEffect"] = { + ["854_FlaskReflectReductionDuringFlaskEffect"] = { ["Flask"] = { - ["max"] = -36, - ["min"] = -65, + ["max"] = 80, + ["min"] = 45, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3842373291", + ["text"] = "#% reduced Reflected Damage taken during Effect", + ["type"] = "explicit", + }, + }, + ["855_LocalFlaskSkillManaCostDuringFlaskEffect"] = { + ["Flask"] = { + ["max"] = -11, + ["min"] = -29, }, ["inverseKey"] = "reduced", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1878455805", - ["text"] = "#% increased Effect of Shock on you during Effect", + ["id"] = "explicit.stat_683273571", + ["text"] = "#% increased Mana Cost of Skills during Effect", ["type"] = "explicit", }, }, - ["8397_EnemiesBlockedAreIntimidated"] = { + ["8580_EnemiesBlockedAreIntimidated"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -54553,17 +55825,17 @@ return { ["type"] = "explicit", }, }, - ["8401_SpiritAndPhantasmRefreshOnUnique"] = { + ["8584_SpiritAndPhantasmRefreshOnUnique"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1146215018", - ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["id"] = "explicit.stat_7847395", + ["text"] = "Summoned Phantasms have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", ["type"] = "explicit", }, }, - ["8415_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { + ["8598_PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently"] = { ["AbyssJewel"] = { ["max"] = 4, ["min"] = 2, @@ -54581,7 +55853,21 @@ return { ["type"] = "explicit", }, }, - ["8433_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { + ["860_FlaskBuffChillFreezeDuration"] = { + ["Flask"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2434101731", + ["text"] = "#% reduced Effect of Chill on you during Effect", + ["type"] = "explicit", + }, + }, + ["8616_PhysicalDamageReductionRatingDuringSoulGainPrevention"] = { ["Chest"] = { ["max"] = 4000, ["min"] = 1000, @@ -54599,7 +55885,7 @@ return { ["type"] = "explicit", }, }, - ["8434_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { + ["8617_PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently"] = { ["1HAxe"] = { ["max"] = 1000, ["min"] = 500, @@ -54657,7 +55943,35 @@ return { ["type"] = "explicit", }, }, - ["8452_ReducedPhysicalReflectTaken"] = { + ["861_FlaskBuffCurseEffect"] = { + ["Flask"] = { + ["max"] = 65, + ["min"] = 36, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4265534424", + ["text"] = "#% reduced Effect of Curses on you during Effect", + ["type"] = "explicit", + }, + }, + ["862_FlaskBuffChillFreezeDuration"] = { + ["Flask"] = { + ["max"] = -36, + ["min"] = -65, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_774474440", + ["text"] = "#% increased Freeze Duration on you during Effect", + ["type"] = "explicit", + }, + }, + ["8635_ReducedPhysicalReflectTaken"] = { ["Chest"] = { ["max"] = 100, ["min"] = 100, @@ -54675,7 +55989,7 @@ return { ["type"] = "explicit", }, }, - ["8452_ReducedPhysicalReflectTakenMaven"] = { + ["8635_ReducedPhysicalReflectTakenMaven"] = { ["Chest"] = { ["max"] = 100, ["min"] = 100, @@ -54689,7 +56003,7 @@ return { ["type"] = "explicit", }, }, - ["8453_GlobalPhysicalGemLevel"] = { + ["8636_GlobalPhysicalGemLevel"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -54703,7 +56017,21 @@ return { ["type"] = "explicit", }, }, - ["8495_PrideReservation"] = { + ["865_FlaskBuffShockEffect"] = { + ["Flask"] = { + ["max"] = -36, + ["min"] = -65, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1878455805", + ["text"] = "#% increased Effect of Shock on you during Effect", + ["type"] = "explicit", + }, + }, + ["8678_PrideReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54713,7 +56041,7 @@ return { ["type"] = "explicit", }, }, - ["8496_PrideReservationEfficiency"] = { + ["8679_PrideReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -54727,7 +56055,7 @@ return { ["type"] = "explicit", }, }, - ["8504_ProjectileAttackDamageDuringFlaskEffect"] = { + ["8688_ProjectileAttackDamageDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 35, ["min"] = 20, @@ -54741,7 +56069,7 @@ return { ["type"] = "explicit", }, }, - ["8510_ProjectileDamagePerEnemyPierced"] = { + ["8694_ProjectileDamagePerEnemyPierced"] = { ["2HWeapon"] = { ["max"] = 30, ["min"] = 15, @@ -54759,7 +56087,7 @@ return { ["type"] = "explicit", }, }, - ["8538_PurityOfFireReservation"] = { + ["8722_PurityOfFireReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54769,7 +56097,7 @@ return { ["type"] = "explicit", }, }, - ["8539_PurityOfFireReservationEfficiency"] = { + ["8723_PurityOfFireReservationEfficiency"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 50, @@ -54783,7 +56111,7 @@ return { ["type"] = "explicit", }, }, - ["8541_PurityOfIceReservation"] = { + ["8725_PurityOfIceReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54793,7 +56121,7 @@ return { ["type"] = "explicit", }, }, - ["8542_PurityOfIceReservationEfficiency"] = { + ["8726_PurityOfIceReservationEfficiency"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 50, @@ -54807,7 +56135,7 @@ return { ["type"] = "explicit", }, }, - ["8544_PurityOfLightningReservation"] = { + ["8728_PurityOfLightningReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54817,7 +56145,7 @@ return { ["type"] = "explicit", }, }, - ["8545_PurityOfLightningReservationEfficiency"] = { + ["8729_PurityOfLightningReservationEfficiency"] = { ["Amulet"] = { ["max"] = 60, ["min"] = 50, @@ -54831,7 +56159,7 @@ return { ["type"] = "explicit", }, }, - ["8552_Quiver1AdditionalPierceOld"] = { + ["8736_Quiver1AdditionalPierceOld"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLineSingular"] = "Projectiles Pierce an additional Target", @@ -54842,7 +56170,7 @@ return { ["type"] = "explicit", }, }, - ["8553_Quiver2AdditionalPierceOld"] = { + ["8737_Quiver2AdditionalPierceOld"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -54852,17 +56180,17 @@ return { ["type"] = "explicit", }, }, - ["8568_SpiritAndPhantasmRefreshOnUnique"] = { + ["8752_SpiritAndPhantasmRefreshOnUnique"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2461719091", - ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Unique Enemy", + ["id"] = "explicit.stat_4070754804", + ["text"] = "Summoned Raging Spirits have #% chance to refresh their Duration when they Hit a Rare or Unique Enemy", ["type"] = "explicit", }, }, - ["8589_RareOrUniqueMonsterDroppedItemRarity"] = { + ["8773_RareOrUniqueMonsterDroppedItemRarity"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 36, @@ -54876,7 +56204,7 @@ return { ["type"] = "explicit", }, }, - ["8636_ReflectDamageTaken"] = { + ["8820_ReflectDamageTaken"] = { ["Ring"] = { ["max"] = 40, ["min"] = 40, @@ -54890,7 +56218,7 @@ return { ["type"] = "explicit", }, }, - ["8638_ReflectsShocks"] = { + ["8822_ReflectsShocks"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -54899,7 +56227,7 @@ return { ["type"] = "explicit", }, }, - ["8657_RemoveBleedingOnWarcry"] = { + ["8841_RemoveBleedingOnWarcry"] = { ["2HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -54916,7 +56244,7 @@ return { ["type"] = "explicit", }, }, - ["8658_RemoveFreezeOnFlaskUse"] = { + ["8842_RemoveFreezeOnFlaskUse"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -54929,7 +56257,7 @@ return { ["type"] = "explicit", }, }, - ["8662_RemoveIgniteOnFlaskUse"] = { + ["8846_RemoveIgniteOnFlaskUse"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -54942,7 +56270,7 @@ return { ["type"] = "explicit", }, }, - ["8670_RemoveShockOnFlaskUse"] = { + ["8854_RemoveShockOnFlaskUse"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -54955,7 +56283,7 @@ return { ["type"] = "explicit", }, }, - ["8677_RestoreManaAndEnergyShieldOnFocus"] = { + ["8861_RestoreManaAndEnergyShieldOnFocus"] = { ["Chest"] = { ["max"] = 40, ["min"] = 23, @@ -54969,7 +56297,7 @@ return { ["type"] = "explicit", }, }, - ["8701_ReducedBleedDuration"] = { + ["8886_ReducedBleedDuration"] = { ["AnyJewel"] = { ["max"] = -30, ["min"] = -35, @@ -54987,7 +56315,7 @@ return { ["type"] = "explicit", }, }, - ["8708_ReducedPoisonDuration"] = { + ["8894_ReducedPoisonDuration"] = { ["AnyJewel"] = { ["max"] = -30, ["min"] = -35, @@ -55005,7 +56333,7 @@ return { ["type"] = "explicit", }, }, - ["8733_ChanceToShockAttackersOnBlock"] = { + ["8919_ChanceToShockAttackersOnBlock"] = { ["2HWeapon"] = { ["max"] = 50, ["min"] = 25, @@ -55027,7 +56355,7 @@ return { ["type"] = "explicit", }, }, - ["8740_ShockYourselfOnFocusCDR"] = { + ["8926_ShockYourselfOnFocusCDR"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55037,7 +56365,7 @@ return { ["type"] = "explicit", }, }, - ["8741_ShockNearbyEnemiesOnFocus"] = { + ["8927_ShockNearbyEnemiesOnFocus"] = { ["Ring"] = { ["max"] = 4, ["min"] = 2, @@ -55051,7 +56379,7 @@ return { ["type"] = "explicit", }, }, - ["8741_ShockNearbyEnemiesOnFocusCDR"] = { + ["8927_ShockNearbyEnemiesOnFocusCDR"] = { ["Ring"] = { ["max"] = 4, ["min"] = 4, @@ -55065,7 +56393,7 @@ return { ["type"] = "explicit", }, }, - ["8746_ChillAndShockEffectOnYouJewel"] = { + ["8932_ChillAndShockEffectOnYouJewel"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -55075,7 +56403,7 @@ return { ["type"] = "explicit", }, }, - ["8746_ReducedElementalAilmentEffectOnSelf"] = { + ["8932_ReducedElementalAilmentEffectOnSelf"] = { ["Boots"] = { ["max"] = -24, ["min"] = -40, @@ -55093,7 +56421,7 @@ return { ["type"] = "explicit", }, }, - ["8747_ReducedShockEffectOnSelf"] = { + ["8933_ReducedShockEffectOnSelf"] = { ["AnyJewel"] = { ["max"] = 35, ["min"] = 30, @@ -55119,7 +56447,7 @@ return { ["type"] = "explicit", }, }, - ["8747_ReducedShockEffectOnSelfMaven"] = { + ["8933_ReducedShockEffectOnSelfMaven"] = { ["Helmet"] = { ["max"] = 60, ["min"] = 51, @@ -55133,7 +56461,7 @@ return { ["type"] = "explicit", }, }, - ["8771_BrandAttachmentRange"] = { + ["8957_BrandAttachmentRange"] = { ["Amulet"] = { ["max"] = 28, ["min"] = 11, @@ -55151,7 +56479,7 @@ return { ["type"] = "explicit", }, }, - ["8786_ManaCostTotalChannelled"] = { + ["8972_ManaCostTotalChannelled"] = { ["Amulet"] = { ["max"] = 4, ["min"] = 1, @@ -55169,7 +56497,7 @@ return { ["type"] = "explicit", }, }, - ["8787_ManaCostBaseChannelled"] = { + ["8973_ManaCostBaseChannelled"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55179,7 +56507,7 @@ return { ["type"] = "explicit", }, }, - ["8788_IncreasedManaAndCostNew"] = { + ["8974_IncreasedManaAndCostNew"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55189,7 +56517,7 @@ return { ["type"] = "explicit", }, }, - ["8788_ManaCostTotalNonChannelled"] = { + ["8974_ManaCostTotalNonChannelled"] = { ["Amulet"] = { ["max"] = 9, ["min"] = 4, @@ -55207,7 +56535,7 @@ return { ["type"] = "explicit", }, }, - ["8789_IncreasedManaAndBaseCost"] = { + ["8975_IncreasedManaAndBaseCost"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55217,7 +56545,7 @@ return { ["type"] = "explicit", }, }, - ["8789_ManaCostBaseNonChannelled"] = { + ["8975_ManaCostBaseNonChannelled"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55227,7 +56555,7 @@ return { ["type"] = "explicit", }, }, - ["8791_SkillsCostNoManaWhileFocusedCDR"] = { + ["8977_SkillsCostNoManaWhileFocusedCDR"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -55236,7 +56564,7 @@ return { ["type"] = "explicit", }, }, - ["8842_AdditionalCriticalStrikeChanceWithSpells"] = { + ["9028_AdditionalCriticalStrikeChanceWithSpells"] = { ["Chest"] = { ["max"] = 2, ["min"] = 0.5, @@ -55250,7 +56578,7 @@ return { ["type"] = "explicit", }, }, - ["8846_SpellBlockIfBlockedSpellRecently"] = { + ["9033_SpellBlockIfBlockedSpellRecently"] = { ["Shield"] = { ["max"] = 12, ["min"] = 7, @@ -55264,7 +56592,7 @@ return { ["type"] = "explicit", }, }, - ["8849_SpellsDoubleDamageChance"] = { + ["9036_SpellsDoubleDamageChance"] = { ["1HMace"] = { ["max"] = 7, ["min"] = 4, @@ -55298,7 +56626,7 @@ return { ["type"] = "explicit", }, }, - ["8850_SpellsAdditionalUnleashSealMaven"] = { + ["9037_SpellsAdditionalUnleashSealMaven"] = { ["Helmet"] = { ["max"] = 75, ["min"] = 50, @@ -55312,7 +56640,7 @@ return { ["type"] = "explicit", }, }, - ["8858_SpellDamageDuringFlaskEffect"] = { + ["9045_SpellDamageDuringFlaskEffect"] = { ["Belt"] = { ["max"] = 35, ["min"] = 20, @@ -55326,7 +56654,7 @@ return { ["type"] = "explicit", }, }, - ["8863_SpellDamagePer10Strength"] = { + ["9050_SpellDamagePer10Strength"] = { ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -55344,7 +56672,7 @@ return { ["type"] = "explicit", }, }, - ["8864_SpellDamagePer16Dexterity"] = { + ["9051_SpellDamagePer16Dexterity"] = { ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -55362,7 +56690,7 @@ return { ["type"] = "explicit", }, }, - ["8865_SpellDamagePer16Intelligence"] = { + ["9052_SpellDamagePer16Intelligence"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -55388,7 +56716,7 @@ return { ["type"] = "explicit", }, }, - ["8866_SpellDamagePer16Strength"] = { + ["9053_SpellDamagePer16Strength"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -55406,7 +56734,7 @@ return { ["type"] = "explicit", }, }, - ["8895_SpellsHinderOnHitChance"] = { + ["9082_SpellsHinderOnHitChance"] = { ["AbyssJewel"] = { ["max"] = 8, ["min"] = 3, @@ -55424,7 +56752,7 @@ return { ["type"] = "explicit", }, }, - ["8927_StatusAilmentsYouInflictDurationWhileFocused"] = { + ["9115_StatusAilmentsYouInflictDurationWhileFocused"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 16, @@ -55438,7 +56766,7 @@ return { ["type"] = "explicit", }, }, - ["8959_GlobalStrengthGemLevel"] = { + ["9147_GlobalStrengthGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55448,89 +56776,7 @@ return { ["type"] = "explicit", }, }, - ["898_LocalAttributeRequirements"] = { - ["1HAxe"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["1HMace"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["1HSword"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["1HWeapon"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["2HAxe"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["2HMace"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["2HSword"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["2HWeapon"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Boots"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Bow"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Chest"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Claw"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Dagger"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Gloves"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Helmet"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Shield"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Staff"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["Wand"] = { - ["max"] = -18, - ["min"] = -32, - }, - ["inverseKey"] = "reduced", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["9016_AddedFireBurningEnemies"] = { + ["9204_AddedFireBurningEnemies"] = { ["Belt"] = { ["max"] = 47, ["min"] = 31.5, @@ -55544,7 +56790,7 @@ return { ["type"] = "explicit", }, }, - ["9016_FireResistanceAilments"] = { + ["9204_FireResistanceAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55554,7 +56800,7 @@ return { ["type"] = "explicit", }, }, - ["9041_TailwindOnCriticalStrikeMaven"] = { + ["9229_TailwindOnCriticalStrikeMaven"] = { ["Boots"] = { ["max"] = 25, ["min"] = 10, @@ -55568,7 +56814,7 @@ return { ["type"] = "explicit", }, }, - ["9043_TailwindOnCriticalStrike"] = { + ["9231_TailwindOnCriticalStrike"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55581,7 +56827,7 @@ return { ["type"] = "explicit", }, }, - ["9043_TailwindOnCriticalStrikeMaven"] = { + ["9231_TailwindOnCriticalStrikeMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55594,7 +56840,7 @@ return { ["type"] = "explicit", }, }, - ["9050_WarcryTauntedEnemiesTakeIncreasedDamage"] = { + ["9238_WarcryTauntedEnemiesTakeIncreasedDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55604,7 +56850,7 @@ return { ["type"] = "explicit", }, }, - ["9096_TrapAndMineThrowSpeed"] = { + ["9286_TrapAndMineThrowSpeed"] = { ["Belt"] = { ["max"] = 21, ["min"] = 7, @@ -55618,7 +56864,7 @@ return { ["type"] = "explicit", }, }, - ["9102_TravelSkillsCannotBeExerted"] = { + ["9292_TravelSkillsCannotBeExerted"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -55639,7 +56885,89 @@ return { ["type"] = "explicit", }, }, - ["9129_BurningGroundEffectEffectiveness"] = { + ["930_LocalAttributeRequirements"] = { + ["1HAxe"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["1HMace"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["1HSword"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["1HWeapon"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["2HAxe"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["2HMace"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["2HSword"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["2HWeapon"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Boots"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Bow"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Chest"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Claw"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Dagger"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Gloves"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Helmet"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Shield"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Staff"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["Wand"] = { + ["max"] = -18, + ["min"] = -32, + }, + ["inverseKey"] = "reduced", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["9319_BurningGroundEffectEffectiveness"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55652,7 +56980,7 @@ return { ["type"] = "explicit", }, }, - ["9131_ChilledGroundEffectEffectivenessMaven"] = { + ["9321_ChilledGroundEffectEffectivenessMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55665,7 +56993,7 @@ return { ["type"] = "explicit", }, }, - ["9134_ChilledGroundEffectEffectiveness"] = { + ["9324_ChilledGroundEffectEffectiveness"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55678,7 +57006,7 @@ return { ["type"] = "explicit", }, }, - ["9140_DesecratedGroundEffectEffectiveness"] = { + ["9330_DesecratedGroundEffectEffectiveness"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55691,7 +57019,7 @@ return { ["type"] = "explicit", }, }, - ["9146_BurningGroundEffectEffectivenessMaven"] = { + ["9336_BurningGroundEffectEffectivenessMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55704,7 +57032,7 @@ return { ["type"] = "explicit", }, }, - ["9150_ShockedGroundEffectEffectivenessMaven"] = { + ["9340_ShockedGroundEffectEffectivenessMaven"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55717,7 +57045,7 @@ return { ["type"] = "explicit", }, }, - ["9154_ShockedGroundEffectEffectiveness"] = { + ["9344_ShockedGroundEffectEffectiveness"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -55730,7 +57058,7 @@ return { ["type"] = "explicit", }, }, - ["9172_SupportedByItemRarityUnique"] = { + ["9362_SupportedByItemRarityUnique"] = { ["Chest"] = { ["max"] = 25, ["min"] = 8, @@ -55744,69 +57072,7 @@ return { ["type"] = "explicit", }, }, - ["9186_VaalSoulCost"] = { - ["1HAxe"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HSword"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HAxe"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HSword"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Bow"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_678245679", - ["text"] = "Non-Aura Vaal Skills require #% reduced Souls Per Use", - ["type"] = "explicit", - }, - }, - ["9226_WarcryAreaOfEffectMaven"] = { + ["9415_WarcryAreaOfEffectMaven"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 15, @@ -55820,7 +57086,7 @@ return { ["type"] = "explicit", }, }, - ["9226_WarcryEffect"] = { + ["9415_WarcryEffect"] = { ["2HAxe"] = { ["max"] = 25, ["min"] = 18, @@ -55850,7 +57116,7 @@ return { ["type"] = "explicit", }, }, - ["9233_WarcryAreaOfEffect"] = { + ["9422_WarcryAreaOfEffect"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 21, @@ -55864,7 +57130,7 @@ return { ["type"] = "explicit", }, }, - ["9233_WarcryAreaOfEffectMaven"] = { + ["9422_WarcryAreaOfEffectMaven"] = { ["Helmet"] = { ["max"] = 30, ["min"] = 26, @@ -55878,7 +57144,7 @@ return { ["type"] = "explicit", }, }, - ["9278_WrathReservation"] = { + ["9468_WrathReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55888,7 +57154,7 @@ return { ["type"] = "explicit", }, }, - ["9279_WrathReservationEfficiency"] = { + ["9469_WrathReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -55902,7 +57168,7 @@ return { ["type"] = "explicit", }, }, - ["9326_ConsecratedGroundStationaryMaven"] = { + ["9516_ConsecratedGroundStationaryMaven"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -55915,7 +57181,7 @@ return { ["type"] = "explicit", }, }, - ["9348_SpellsAdditionalUnleashSeal"] = { + ["9539_SpellsAdditionalUnleashSeal"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -55929,7 +57195,7 @@ return { ["type"] = "explicit", }, }, - ["9348_SpellsAdditionalUnleashSealMaven"] = { + ["9539_SpellsAdditionalUnleashSealMaven"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -55943,7 +57209,7 @@ return { ["type"] = "explicit", }, }, - ["9349_ZealotryAuraEffect"] = { + ["9540_ZealotryAuraEffect"] = { ["1HMace"] = { ["max"] = 40, ["min"] = 28, @@ -55977,7 +57243,7 @@ return { ["type"] = "explicit", }, }, - ["9350_ZealotryReservation"] = { + ["9541_ZealotryReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -55987,7 +57253,7 @@ return { ["type"] = "explicit", }, }, - ["9351_ZealotryReservationEfficiency"] = { + ["9542_ZealotryReservationEfficiency"] = { ["Amulet"] = { ["max"] = 50, ["min"] = 40, @@ -56001,7 +57267,7 @@ return { ["type"] = "explicit", }, }, - ["9354_ZeroChaosResistanceDelve"] = { + ["9545_ZeroChaosResistanceDelve"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56010,7 +57276,7 @@ return { ["type"] = "explicit", }, }, - ["9363_MinionLargerAggroRadius"] = { + ["9554_MinionLargerAggroRadius"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56019,7 +57285,7 @@ return { ["type"] = "explicit", }, }, - ["9370_Acrobatics"] = { + ["9561_Acrobatics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56028,7 +57294,7 @@ return { ["type"] = "explicit", }, }, - ["9371_PerfectAgony"] = { + ["9562_PerfectAgony"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56037,7 +57303,7 @@ return { ["type"] = "explicit", }, }, - ["9372_AncestralBond"] = { + ["9563_AncestralBond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56046,7 +57312,7 @@ return { ["type"] = "explicit", }, }, - ["9373_AvatarOfFire"] = { + ["9564_AvatarOfFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56055,7 +57321,7 @@ return { ["type"] = "explicit", }, }, - ["9375_BloodMagic"] = { + ["9566_BloodMagic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56064,7 +57330,7 @@ return { ["type"] = "explicit", }, }, - ["9376_CallToArms"] = { + ["9567_CallToArms"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56073,7 +57339,7 @@ return { ["type"] = "explicit", }, }, - ["9380_CrimsonDance"] = { + ["9571_CrimsonDance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56082,7 +57348,7 @@ return { ["type"] = "explicit", }, }, - ["9382_DivineShield"] = { + ["9573_DivineShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56091,7 +57357,7 @@ return { ["type"] = "explicit", }, }, - ["9383_EldritchBattery"] = { + ["9574_EldritchBattery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56100,7 +57366,7 @@ return { ["type"] = "explicit", }, }, - ["9384_ElementalEquilibrium"] = { + ["9575_ElementalEquilibrium"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56109,7 +57375,7 @@ return { ["type"] = "explicit", }, }, - ["9385_ElementalOverload"] = { + ["9576_ElementalOverload"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56118,7 +57384,7 @@ return { ["type"] = "explicit", }, }, - ["9389_GhostDance"] = { + ["9580_GhostDance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56127,7 +57393,7 @@ return { ["type"] = "explicit", }, }, - ["9390_KeystoneGhostReaver"] = { + ["9581_KeystoneGhostReaver"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56136,7 +57402,7 @@ return { ["type"] = "explicit", }, }, - ["9392_HexMaster"] = { + ["9583_HexMaster"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56145,7 +57411,7 @@ return { ["type"] = "explicit", }, }, - ["9394_Impaler"] = { + ["9585_Impaler"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -56154,1611 +57420,345 @@ return { ["type"] = "explicit", }, }, - ["9396_LetheShade"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1678358883", - ["text"] = "Lethe Shade", - ["type"] = "explicit", - }, - }, - ["9397_Magebane"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4180925106", - ["text"] = "Magebane", - ["type"] = "explicit", - }, - }, - ["9399_MinionInstability"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_433293234", - ["text"] = "Minion Instability", - ["type"] = "explicit", - }, - }, - ["9400_TheAgnostic"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_462691314", - ["text"] = "The Agnostic", - ["type"] = "explicit", - }, - }, - ["9401_PainAttunement"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_98977150", - ["text"] = "Pain Attunement", - ["type"] = "explicit", - }, - }, - ["9402_PointBlank"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2896346114", - ["text"] = "Point Blank", - ["type"] = "explicit", - }, - }, - ["9407_Runebinder"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080245957", - ["text"] = "Runebinder", - ["type"] = "explicit", - }, - }, - ["9411_Solipsism"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_112130960", - ["text"] = "Solipsism", - ["type"] = "explicit", - }, - }, - ["9413_IronGrip"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_573347393", - ["text"] = "Iron Grip", - ["type"] = "explicit", - }, - }, - ["9414_SupremeEgo"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1421267186", - ["text"] = "Supreme Ego", - ["type"] = "explicit", - }, - }, - ["9416_VaalPact"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2257118425", - ["text"] = "Vaal Pact", - ["type"] = "explicit", - }, - }, - ["9417_VersatileCombatant"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_593845252", - ["text"] = "Versatile Combatant", - ["type"] = "explicit", - }, - }, - ["9420_MapMonsterPacksVaalMapWorlds"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_728267040", - ["text"] = "Found Items have #% chance to drop Corrupted in Area", - ["type"] = "explicit", - }, - }, - ["9422_ResoluteTechnique"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3943945975", - ["text"] = "Resolute Technique", - ["type"] = "explicit", - }, - }, - ["9423_IronWill"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4092697134", - ["text"] = "Iron Will", - ["type"] = "explicit", - }, - }, - ["957_BlockPercent"] = { - ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["Chest"] = { - ["max"] = 9, - ["min"] = 3, - }, - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Helmet"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, - ["957_BlockPercentMaven"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "explicit", - }, - }, - ["958_BlockShieldForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4061558269", - ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", - ["type"] = "explicit", - }, - }, - ["959_ShieldSpellBlockForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_938645499", - ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", - ["type"] = "explicit", - }, - }, - ["960_SpellDamageSuppressed"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "explicit", - }, - }, - ["961_ChanceToDodgeAndSpellDodge"] = { - ["Boots"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Helmet"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["961_ChanceToSuppressSpellsMavenOld"] = { - ["Boots"] = { - ["max"] = 18, - ["min"] = 16, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["961_ChanceToSuppressSpellsOld"] = { - ["Chest"] = { - ["max"] = 21, - ["min"] = 18, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["962_ChanceToSuppressSpells"] = { - ["Boots"] = { - ["max"] = 22, - ["min"] = 3, - }, - ["Chest"] = { - ["max"] = 22, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 22, - ["min"] = 3, - }, - ["Helmet"] = { - ["max"] = 22, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "explicit", - }, - }, - ["963_DualWieldingSpellBlockForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_138741818", - ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, - ["964_SpellBlockPercentageOnLowLife"] = { - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2253286128", - ["text"] = "+#% Chance to Block Spell Damage while on Low Life", - ["type"] = "explicit", - }, - }, - ["967_StaffSpellBlockForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2120297997", - ["text"] = "+#% Chance to Block Spell Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["968_BlockingBlocksSpellsUber"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["968_CriticalStrikeMultiplierIfBlockedRecentlyUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["968_PowerChargeOnBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["968_SpellBlockAndBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["970_BlockStaffForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1778298516", - ["text"] = "+#% Chance to Block Attack Damage while wielding a Staff", - ["type"] = "explicit", - }, - }, - ["971_BlockingBlocksSpells"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["971_BlockingBlocksSpellsUber"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["976_SpellBlockAndBlockUber"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["976_SpellBlockPercentage"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["Gloves"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["Helmet"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["976_SpellBlockPercentageMaven"] = { - ["Helmet"] = { - ["max"] = 6, - ["min"] = 5, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "explicit", - }, - }, - ["977_BlockDualWieldingForJewel"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, - ["977_BlockWhileDualWielding"] = { - ["1HAxe"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["1HMace"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["1HSword"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["2HAxe"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["2HSword"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["Dagger"] = { - ["max"] = 9, - ["min"] = 2, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2166444903", - ["text"] = "+#% Chance to Block Attack Damage while Dual Wielding", - ["type"] = "explicit", - }, - }, - ["991_AllAttributes"] = { - ["1HAxe"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["1HMace"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["1HSword"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["2HAxe"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["2HSword"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Dagger"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Quiver"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 13, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "explicit", - }, - }, - ["991_AllAttributesForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "+# to all Attributes", - ["type"] = "explicit", - }, - }, - ["992_Strength"] = { - ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Belt"] = { - ["max"] = 60, - ["min"] = 8, - }, - ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["Dagger"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["992_StrengthAndAvoidIgnite"] = { - ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["992_StrengthAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["992_StrengthForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "+# to Strength", - ["type"] = "explicit", - }, - }, - ["993_Dexterity"] = { - ["1HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["1HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["2HSword"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Belt"] = { - ["max"] = 58, - ["min"] = 13, - }, - ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 60, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Quiver"] = { - ["max"] = 60, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 58, - ["min"] = 13, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["993_DexterityAndAvoidFreeze"] = { - ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["993_DexterityAndLocalItemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["993_DexterityForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "+# to Dexterity", - ["type"] = "explicit", - }, - }, - ["994_Intelligence"] = { - ["1HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["1HMace"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["1HSword"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["2HAxe"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["2HSword"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Belt"] = { - ["max"] = 58, - ["min"] = 28, - }, - ["Boots"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Dagger"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 60, - ["min"] = 8, - }, - ["Quiver"] = { - ["max"] = 58, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 58, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 58, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 55, - ["min"] = 8, - }, - ["sign"] = "", + ["9587_LetheShade"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", + ["id"] = "explicit.stat_1678358883", + ["text"] = "Lethe Shade", ["type"] = "explicit", }, }, - ["994_IntelligenceAndAvoidShock"] = { - ["Chest"] = { - ["max"] = 35, - ["min"] = 10, + ["9588_Magebane"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180925106", + ["text"] = "Magebane", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["9590_MinionInstability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", + ["id"] = "explicit.stat_433293234", + ["text"] = "Minion Instability", ["type"] = "explicit", }, }, - ["994_IntelligenceAndLocalItemQuality"] = { - ["sign"] = "", + ["9591_TheAgnostic"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", + ["id"] = "explicit.stat_462691314", + ["text"] = "The Agnostic", ["type"] = "explicit", }, }, - ["994_IntelligenceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 16, - ["min"] = 12, - }, - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 12, + ["9592_PainAttunement"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", }, - ["sign"] = "", + }, + ["9593_PointBlank"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "+# to Intelligence", + ["id"] = "explicit.stat_2896346114", + ["text"] = "Point Blank", ["type"] = "explicit", }, }, - ["995_LocalAccuracyRatingStrengthDexterity"] = { - ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, + ["9598_Runebinder"] = { + ["specialCaseData"] = { }, - ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080245957", + ["text"] = "Runebinder", + ["type"] = "explicit", }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, + }, + ["9602_Solipsism"] = { + ["specialCaseData"] = { }, - ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_112130960", + ["text"] = "Solipsism", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, + }, + ["9604_IronGrip"] = { + ["specialCaseData"] = { }, - ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_573347393", + ["text"] = "Iron Grip", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, + }, + ["9605_SupremeEgo"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_1421267186", + ["text"] = "Supreme Ego", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 28, - ["min"] = 15, + }, + ["9607_VaalPact"] = { + ["specialCaseData"] = { }, - ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 28, - ["min"] = 15, + }, + ["9608_VersatileCombatant"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 28, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_593845252", + ["text"] = "Versatile Combatant", + ["type"] = "explicit", }, + }, + ["9611_MapMonsterPacksVaalMapWorlds"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", + ["id"] = "explicit.stat_728267040", + ["text"] = "Found Items have #% chance to drop Corrupted in Area", ["type"] = "explicit", }, }, - ["995_StrengthAndDexterity"] = { - ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, + ["9613_ResoluteTechnique"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_3943945975", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + }, + ["9614_IronWill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092697134", + ["text"] = "Iron Will", + ["type"] = "explicit", }, + }, + ["992_BlockPercent"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 4, + ["min"] = 3, }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 9, + ["min"] = 3, }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 5, + ["min"] = 2, }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 4, + ["min"] = 3, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", ["type"] = "explicit", }, }, - ["995_StrengthDexterityForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, + ["992_BlockPercentMaven"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "+# to Strength and Dexterity", + ["id"] = "explicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", ["type"] = "explicit", }, }, - ["996_LocalCriticalStrikeChanceStrengthIntelligence"] = { - ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 28, - ["min"] = 15, + ["993_BlockShieldForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Wand"] = { - ["max"] = 28, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", + ["id"] = "explicit.stat_4061558269", + ["text"] = "+#% Chance to Block Attack Damage while holding a Shield", ["type"] = "explicit", }, }, - ["996_StrengthAndIntelligence"] = { - ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 10, + ["994_ShieldSpellBlockForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", + ["id"] = "explicit.stat_938645499", + ["text"] = "+#% Chance to Block Spell Damage while holding a Shield", ["type"] = "explicit", }, }, - ["996_StrengthIntelligenceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, + ["995_SpellDamageSuppressed"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "+# to Strength and Intelligence", + ["id"] = "explicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", ["type"] = "explicit", }, }, - ["997_DexterityAndIntelligence"] = { - ["Amulet"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 10, - }, + ["996_ChanceToDodgeAndSpellDodge"] = { ["Boots"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["Chest"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["Gloves"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["Helmet"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "explicit", }, }, - ["997_DexterityIntelligenceForJewel"] = { - ["AbyssJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 8, + ["996_ChanceToSuppressSpellsMavenOld"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 16, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "explicit", }, }, - ["997_LocalAttackSpeedDexterityIntelligence"] = { - ["1HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HAxe"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HSword"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Dagger"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 28, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 28, - ["min"] = 15, + ["996_ChanceToSuppressSpellsOld"] = { + ["Chest"] = { + ["max"] = 21, + ["min"] = 18, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "+# to Dexterity and Intelligence", + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "explicit", }, }, - ["998_PercentageAllAttributes"] = { - ["Amulet"] = { - ["max"] = 9, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 12, - ["min"] = 6, + ["997_ChanceToSuppressSpells"] = { + ["Boots"] = { + ["max"] = 22, + ["min"] = 3, }, ["Chest"] = { - ["max"] = 8, + ["max"] = 22, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 22, + ["min"] = 3, + }, + ["Helmet"] = { + ["max"] = 22, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 10, ["min"] = 5, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["id"] = "explicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "explicit", }, }, - ["999_PercentageStrength"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 12, - ["min"] = 6, + ["998_DualWieldingSpellBlockForJewel"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_138741818", + ["text"] = "+#% Chance to Block Spell Damage while Dual Wielding", ["type"] = "explicit", }, }, - ["999_PercentageStrengthMaven"] = { - ["Amulet"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 9, + ["999_SpellBlockPercentageOnLowLife"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_2253286128", + ["text"] = "+#% Chance to Block Spell Damage while on Low Life", ["type"] = "explicit", }, }, @@ -57809,6 +57809,20 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_1033086302"] = { + ["Ring"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1033086302", + ["text"] = "#% increased Suffix Modifier magnitudes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1050105434"] = { ["Chest"] = { ["max"] = 25, @@ -57889,8 +57903,8 @@ return { }, ["implicit.stat_114734841"] = { ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 30, + ["min"] = 30, }, ["sign"] = "", ["specialCaseData"] = { @@ -57965,55 +57979,55 @@ return { }, ["implicit.stat_1181501418"] = { ["1HAxe"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["1HMace"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["1HSword"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["2HAxe"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["2HMace"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["2HSword"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["Bow"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["Claw"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["Dagger"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["Staff"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["Wand"] = { - ["max"] = 10, + ["max"] = 20, ["min"] = 10, }, ["sign"] = "", @@ -58243,6 +58257,16 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_1420496319"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1420496319", + ["text"] = "+#% to Critical Strike Chance against Enemies that are on Full Life", + ["type"] = "implicit", + }, + }, ["implicit.stat_1423639565"] = { ["Ring"] = { ["max"] = 15, @@ -58687,6 +58711,15 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_1531647220"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1531647220", + ["text"] = "Damaging Hits always Stun Enemies that are on Full Life", + ["type"] = "implicit", + }, + }, ["implicit.stat_1535626285"] = { ["Amulet"] = { ["max"] = 24, @@ -58747,8 +58780,8 @@ return { }, ["implicit.stat_1581907402"] = { ["Amulet"] = { - ["max"] = 25, - ["min"] = 25, + ["max"] = 100, + ["min"] = 100, }, ["sign"] = "", ["specialCaseData"] = { @@ -58921,18 +58954,13 @@ return { ["type"] = "implicit", }, }, - ["implicit.stat_1652515349"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - ["subType"] = "Talisman", - }, + ["implicit.stat_1652997002"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1652515349", - ["text"] = "+# to maximum number of Raised Zombies", + ["id"] = "implicit.stat_1652997002", + ["text"] = "Bleeding you inflict on non-Bleeding Enemies deals #% more Damage", ["type"] = "implicit", }, }, @@ -59054,6 +59082,20 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_1794120699"] = { + ["Ring"] = { + ["max"] = 50, + ["min"] = 25, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1794120699", + ["text"] = "#% increased Prefix Modifier magnitudes", + ["type"] = "implicit", + }, + }, ["implicit.stat_1795443614"] = { ["Amulet"] = { ["max"] = 1, @@ -59141,55 +59183,55 @@ return { }, ["implicit.stat_2039822488"] = { ["1HAxe"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["1HMace"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["1HSword"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["1HWeapon"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HAxe"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HMace"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HSword"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Bow"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Claw"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Dagger"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Staff"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["Wand"] = { - ["max"] = 20, + ["max"] = 40, ["min"] = 20, }, ["sign"] = "", @@ -59646,6 +59688,81 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_2308278768"] = { + ["1HAxe"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["1HMace"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["1HSword"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["2HAxe"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["2HSword"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["Dagger"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 20, + ["subType"] = "Rune", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2308278768", + ["text"] = "#% increased Cooldown Recovery Rate of Travel Skills", + ["type"] = "implicit", + }, + }, ["implicit.stat_2316658489"] = { ["Belt"] = { ["max"] = 320, @@ -59737,6 +59854,24 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_2389569738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2389569738", + ["text"] = "All Damage can Poison", + ["type"] = "implicit", + }, + }, + ["implicit.stat_24378154"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_24378154", + ["text"] = "All Damage can Freeze", + ["type"] = "implicit", + }, + }, ["implicit.stat_2451856207"] = { ["Flask"] = { ["max"] = 1, @@ -59875,6 +60010,15 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_2524254339"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "implicit", + }, + }, ["implicit.stat_2530372417"] = { ["1HAxe"] = { ["max"] = 6, @@ -60709,6 +60853,15 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_3018587936"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3018587936", + ["text"] = "All Damage can Shock", + ["type"] = "implicit", + }, + }, ["implicit.stat_3032590688"] = { ["Quiver"] = { ["max"] = 21, @@ -60828,56 +60981,56 @@ return { }, ["implicit.stat_321077055"] = { ["1HAxe"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["1HMace"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["1HSword"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["1HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["2HAxe"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["2HMace"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["2HSword"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["2HWeapon"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["Bow"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["Claw"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["Dagger"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["Staff"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["Wand"] = { - ["max"] = 144, - ["min"] = 50, + ["max"] = 165, + ["min"] = 57.5, }, ["sign"] = "", ["specialCaseData"] = { @@ -61216,56 +61369,56 @@ return { }, ["implicit.stat_3531280422"] = { ["1HAxe"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["1HMace"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["1HSword"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["1HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["2HAxe"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["2HMace"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["2HSword"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["2HWeapon"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["Bow"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["Claw"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["Dagger"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["Staff"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["Wand"] = { - ["max"] = 76.5, - ["min"] = 34, + ["max"] = 88, + ["min"] = 39, }, ["sign"] = "", ["specialCaseData"] = { @@ -61417,6 +61570,15 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_357957215"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_357957215", + ["text"] = "All Damage can Ignite", + ["type"] = "implicit", + }, + }, ["implicit.stat_3593843976"] = { ["1HAxe"] = { ["max"] = 2, @@ -62904,6 +63066,21 @@ return { ["type"] = "implicit", }, }, + ["implicit.stat_966747987"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + ["subType"] = "Talisman", + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_966747987", + ["text"] = "+# to maximum number of Raised Zombies", + ["type"] = "implicit", + }, + }, ["implicit.stat_967627487"] = { ["Boots"] = { ["max"] = 18, @@ -62955,7 +63132,7 @@ return { }, }, ["PassiveNode"] = { - ["6753_AfflictionNotableAdrenaline"] = { + ["6827_AfflictionNotableAdrenaline"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -62964,7 +63141,7 @@ return { ["type"] = "explicit", }, }, - ["6754_AfflictionNotableAdvanceGuard"] = { + ["6828_AfflictionNotableAdvanceGuard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -62973,7 +63150,7 @@ return { ["type"] = "explicit", }, }, - ["6755_AfflictionNotableAerialist"] = { + ["6829_AfflictionNotableAerialist"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -62982,7 +63159,7 @@ return { ["type"] = "explicit", }, }, - ["6756_AfflictionNotableAerodynamics"] = { + ["6830_AfflictionNotableAerodynamics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -62991,7 +63168,7 @@ return { ["type"] = "explicit", }, }, - ["6757_AfflictionNotableAgentofDestruction"] = { + ["6831_AfflictionNotableAgentofDestruction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63000,7 +63177,7 @@ return { ["type"] = "explicit", }, }, - ["6758_AfflictionNotableAggressiveDefence"] = { + ["6832_AfflictionNotableAggressiveDefence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63009,7 +63186,7 @@ return { ["type"] = "explicit", }, }, - ["6759_AfflictionNotableAlchemist"] = { + ["6833_AfflictionNotableAlchemist"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63018,7 +63195,7 @@ return { ["type"] = "explicit", }, }, - ["6760_AfflictionNotableAncestralEcho"] = { + ["6834_AfflictionNotableAncestralEcho"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63027,7 +63204,7 @@ return { ["type"] = "explicit", }, }, - ["6761_AfflictionNotableAncestralGuidance"] = { + ["6835_AfflictionNotableAncestralGuidance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63036,7 +63213,7 @@ return { ["type"] = "explicit", }, }, - ["6762_AfflictionNotableAncestralInspiration"] = { + ["6836_AfflictionNotableAncestralInspiration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63045,7 +63222,7 @@ return { ["type"] = "explicit", }, }, - ["6763_AfflictionNotableAncestralMight"] = { + ["6837_AfflictionNotableAncestralMight"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63054,7 +63231,7 @@ return { ["type"] = "explicit", }, }, - ["6764_AfflictionNotableAncestralPreservation"] = { + ["6838_AfflictionNotableAncestralPreservation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63063,7 +63240,7 @@ return { ["type"] = "explicit", }, }, - ["6765_AfflictionNotableAncestralReach"] = { + ["6839_AfflictionNotableAncestralReach"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63072,7 +63249,7 @@ return { ["type"] = "explicit", }, }, - ["6766_AfflictionNotableAntifreeze"] = { + ["6840_AfflictionNotableAntifreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63081,7 +63258,7 @@ return { ["type"] = "explicit", }, }, - ["6767_AfflictionNotableAntivenom"] = { + ["6841_AfflictionNotableAntivenom"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63090,7 +63267,7 @@ return { ["type"] = "explicit", }, }, - ["6768_AfflictionNotableArcaneAdept"] = { + ["6842_AfflictionNotableArcaneAdept"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63099,7 +63276,7 @@ return { ["type"] = "explicit", }, }, - ["6769_AfflictionNotableArcaneHeroism"] = { + ["6843_AfflictionNotableArcaneHeroism"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63108,7 +63285,7 @@ return { ["type"] = "explicit", }, }, - ["6770_AfflictionNotableArcanePyrotechnics"] = { + ["6844_AfflictionNotableArcanePyrotechnics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63117,7 +63294,7 @@ return { ["type"] = "explicit", }, }, - ["6771_AfflictionNotableArcingShot"] = { + ["6845_AfflictionNotableArcingShot"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63126,7 +63303,7 @@ return { ["type"] = "explicit", }, }, - ["6772_AfflictionNotableAssertDominance"] = { + ["6846_AfflictionNotableAssertDominance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63135,7 +63312,7 @@ return { ["type"] = "explicit", }, }, - ["6773_AfflictionNotableAstonishingAffliction"] = { + ["6847_AfflictionNotableAstonishingAffliction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63144,7 +63321,7 @@ return { ["type"] = "explicit", }, }, - ["6774_AfflictionNotableBasicsofPain"] = { + ["6848_AfflictionNotableBasicsofPain"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63153,7 +63330,7 @@ return { ["type"] = "explicit", }, }, - ["6775_AfflictionNotableBattleHardened"] = { + ["6849_AfflictionNotableBattleHardened"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63162,7 +63339,7 @@ return { ["type"] = "explicit", }, }, - ["6776_AfflictionNotableBattlefieldDominator"] = { + ["6850_AfflictionNotableBattlefieldDominator"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63171,7 +63348,7 @@ return { ["type"] = "explicit", }, }, - ["6777_AfflictionNotableBlacksmith"] = { + ["6851_AfflictionNotableBlacksmith"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63180,7 +63357,7 @@ return { ["type"] = "explicit", }, }, - ["6778_AfflictionNotableBlanketedSnow"] = { + ["6852_AfflictionNotableBlanketedSnow"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63189,7 +63366,7 @@ return { ["type"] = "explicit", }, }, - ["6779_AfflictionNotableBlastFreeze"] = { + ["6853_AfflictionNotableBlastFreeze"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63198,7 +63375,7 @@ return { ["type"] = "explicit", }, }, - ["6780_AfflictionNotableBlessed"] = { + ["6854_AfflictionNotableBlessed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63207,7 +63384,7 @@ return { ["type"] = "explicit", }, }, - ["6781_AfflictionNotableBlessedRebirth"] = { + ["6855_AfflictionNotableBlessedRebirth"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63216,7 +63393,7 @@ return { ["type"] = "explicit", }, }, - ["6782_AfflictionNotableBloodArtist"] = { + ["6856_AfflictionNotableBloodArtist"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63225,7 +63402,7 @@ return { ["type"] = "explicit", }, }, - ["6783_AfflictionNotableBloodscent"] = { + ["6857_AfflictionNotableBloodscent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63234,7 +63411,7 @@ return { ["type"] = "explicit", }, }, - ["6784_AfflictionNotableBlowback"] = { + ["6858_AfflictionNotableBlowback"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63243,7 +63420,7 @@ return { ["type"] = "explicit", }, }, - ["6785_AfflictionNotableBodyguards"] = { + ["6859_AfflictionNotableBodyguards"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63252,7 +63429,7 @@ return { ["type"] = "explicit", }, }, - ["6786_AfflictionNotableBornofChaos"] = { + ["6860_AfflictionNotableBornofChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63261,7 +63438,7 @@ return { ["type"] = "explicit", }, }, - ["6787_AfflictionNotableBrandLoyalty"] = { + ["6861_AfflictionNotableBrandLoyalty"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63270,7 +63447,7 @@ return { ["type"] = "explicit", }, }, - ["6788_AfflictionNotableBrewedforPotency"] = { + ["6862_AfflictionNotableBrewedforPotency"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63279,7 +63456,7 @@ return { ["type"] = "explicit", }, }, - ["6789_AfflictionNotableBroadside"] = { + ["6863_AfflictionNotableBroadside"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63288,7 +63465,7 @@ return { ["type"] = "explicit", }, }, - ["6790_AfflictionNotableBrushwithDeath"] = { + ["6864_AfflictionNotableBrushwithDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63297,7 +63474,7 @@ return { ["type"] = "explicit", }, }, - ["6791_AfflictionNotableBrutalInfamy"] = { + ["6865_AfflictionNotableBrutalInfamy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63306,7 +63483,7 @@ return { ["type"] = "explicit", }, }, - ["6792_AfflictionNotableBurdenProjection"] = { + ["6866_AfflictionNotableBurdenProjection"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63315,7 +63492,7 @@ return { ["type"] = "explicit", }, }, - ["6793_AfflictionNotableBurningBright"] = { + ["6867_AfflictionNotableBurningBright"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63324,7 +63501,7 @@ return { ["type"] = "explicit", }, }, - ["6794_AfflictionNotableCalamitous"] = { + ["6868_AfflictionNotableCalamitous"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63333,7 +63510,7 @@ return { ["type"] = "explicit", }, }, - ["6795_AfflictionNotableCalltotheSlaughter"] = { + ["6869_AfflictionNotableCalltotheSlaughter"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63342,7 +63519,7 @@ return { ["type"] = "explicit", }, }, - ["6796_AfflictionNotableCapacitor"] = { + ["6870_AfflictionNotableCapacitor"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63351,7 +63528,7 @@ return { ["type"] = "explicit", }, }, - ["6797_AfflictionNotableCarefulHandling"] = { + ["6871_AfflictionNotableCarefulHandling"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63360,7 +63537,7 @@ return { ["type"] = "explicit", }, }, - ["6798_AfflictionNotableChillingPresence"] = { + ["6872_AfflictionNotableChillingPresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63369,7 +63546,7 @@ return { ["type"] = "explicit", }, }, - ["6799_AfflictionNotableChipAway"] = { + ["6873_AfflictionNotableChipAway"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63378,7 +63555,7 @@ return { ["type"] = "explicit", }, }, - ["6800_AfflictionNotableCirclingOblivion"] = { + ["6874_AfflictionNotableCirclingOblivion"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63387,7 +63564,7 @@ return { ["type"] = "explicit", }, }, - ["6801_AfflictionNotableClarityofPurpose"] = { + ["6875_AfflictionNotableClarityofPurpose"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63396,7 +63573,7 @@ return { ["type"] = "explicit", }, }, - ["6802_AfflictionNotableColdBloodedKiller"] = { + ["6876_AfflictionNotableColdBloodedKiller"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63405,7 +63582,7 @@ return { ["type"] = "explicit", }, }, - ["6803_AfflictionNotableColdConduction"] = { + ["6877_AfflictionNotableColdConduction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63414,7 +63591,7 @@ return { ["type"] = "explicit", }, }, - ["6804_AfflictionNotableColdtotheCore"] = { + ["6878_AfflictionNotableColdtotheCore"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63423,7 +63600,7 @@ return { ["type"] = "explicit", }, }, - ["6805_AfflictionNotableCombatRhythm"] = { + ["6879_AfflictionNotableCombatRhythm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63432,7 +63609,7 @@ return { ["type"] = "explicit", }, }, - ["6806_AfflictionNotableCompoundInjury"] = { + ["6880_AfflictionNotableCompoundInjury"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63441,7 +63618,7 @@ return { ["type"] = "explicit", }, }, - ["6807_AfflictionNotableConfidentCombatant"] = { + ["6881_AfflictionNotableConfidentCombatant"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63450,7 +63627,7 @@ return { ["type"] = "explicit", }, }, - ["6808_AfflictionNotableConjuredWall"] = { + ["6882_AfflictionNotableConjuredWall"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63459,7 +63636,7 @@ return { ["type"] = "explicit", }, }, - ["6809_AfflictionNotableConservationofEnergy"] = { + ["6883_AfflictionNotableConservationofEnergy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63468,7 +63645,7 @@ return { ["type"] = "explicit", }, }, - ["6810_AfflictionNotableCookedAlive"] = { + ["6884_AfflictionNotableCookedAlive"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63477,7 +63654,7 @@ return { ["type"] = "explicit", }, }, - ["6811_AfflictionNotableCorrosiveElements"] = { + ["6885_AfflictionNotableCorrosiveElements"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63486,7 +63663,7 @@ return { ["type"] = "explicit", }, }, - ["6812_AfflictionNotableCremator"] = { + ["6886_AfflictionNotableCremator"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63495,7 +63672,7 @@ return { ["type"] = "explicit", }, }, - ["6813_AfflictionNotableCryWolf"] = { + ["6887_AfflictionNotableCryWolf"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63504,7 +63681,7 @@ return { ["type"] = "explicit", }, }, - ["6814_AfflictionNotableCultLeader"] = { + ["6888_AfflictionNotableCultLeader"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63513,7 +63690,7 @@ return { ["type"] = "explicit", }, }, - ["6815_AfflictionNotableDaringIdeas"] = { + ["6889_AfflictionNotableDaringIdeas"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63522,7 +63699,7 @@ return { ["type"] = "explicit", }, }, - ["6816_AfflictionNotableDarkDiscourse"] = { + ["6890_AfflictionNotableDarkDiscourse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63531,7 +63708,7 @@ return { ["type"] = "explicit", }, }, - ["6817_AfflictionNotableDarkIdeation"] = { + ["6891_AfflictionNotableDarkIdeation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63540,7 +63717,7 @@ return { ["type"] = "explicit", }, }, - ["6818_AfflictionNotableDarkMessenger"] = { + ["6892_AfflictionNotableDarkMessenger"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63549,7 +63726,7 @@ return { ["type"] = "explicit", }, }, - ["6819_AfflictionNotableDartingMovements"] = { + ["6893_AfflictionNotableDartingMovements"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63558,7 +63735,7 @@ return { ["type"] = "explicit", }, }, - ["6820_AfflictionNotableDeadlyRepartee"] = { + ["6894_AfflictionNotableDeadlyRepartee"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63567,7 +63744,7 @@ return { ["type"] = "explicit", }, }, - ["6821_AfflictionNotableDeepChill"] = { + ["6895_AfflictionNotableDeepChill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63576,7 +63753,7 @@ return { ["type"] = "explicit", }, }, - ["6822_AfflictionNotableDeepCuts"] = { + ["6896_AfflictionNotableDeepCuts"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63585,7 +63762,7 @@ return { ["type"] = "explicit", }, }, - ["6823_AfflictionNotableMiseryEverlasting"] = { + ["6897_AfflictionNotableMiseryEverlasting"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63594,7 +63771,7 @@ return { ["type"] = "explicit", }, }, - ["6824_AfflictionNotableUncompromising"] = { + ["6898_AfflictionNotableUncompromising"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63603,7 +63780,7 @@ return { ["type"] = "explicit", }, }, - ["6825_AfflictionNotableDevastator"] = { + ["6899_AfflictionNotableDevastator"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63612,7 +63789,7 @@ return { ["type"] = "explicit", }, }, - ["6826_AfflictionNotableDisciples"] = { + ["6900_AfflictionNotableDisciples"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63621,7 +63798,7 @@ return { ["type"] = "explicit", }, }, - ["6827_AfflictionNotableSelfControl"] = { + ["6901_AfflictionNotableSelfControl"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63630,7 +63807,7 @@ return { ["type"] = "explicit", }, }, - ["6828_AfflictionNotableDiseaseVector"] = { + ["6902_AfflictionNotableDiseaseVector"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63639,7 +63816,7 @@ return { ["type"] = "explicit", }, }, - ["6829_AfflictionNotableDisorientingDisplay"] = { + ["6903_AfflictionNotableDisorientingDisplay"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63648,7 +63825,7 @@ return { ["type"] = "explicit", }, }, - ["6830_AfflictionNotableDisorientingWounds"] = { + ["6904_AfflictionNotableDisorientingWounds"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63657,7 +63834,7 @@ return { ["type"] = "explicit", }, }, - ["6831_AfflictionNotableDistilledPerfection"] = { + ["6905_AfflictionNotableDistilledPerfection"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63666,7 +63843,7 @@ return { ["type"] = "explicit", }, }, - ["6832_AfflictionNotableDoedresApathy"] = { + ["6906_AfflictionNotableDoedresApathy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63675,7 +63852,7 @@ return { ["type"] = "explicit", }, }, - ["6833_AfflictionNotableDoedresGluttony"] = { + ["6907_AfflictionNotableDoedresGluttony"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63684,7 +63861,7 @@ return { ["type"] = "explicit", }, }, - ["6834_AfflictionNotableDoryanisLesson"] = { + ["6908_AfflictionNotableDoryanisLesson"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63693,7 +63870,7 @@ return { ["type"] = "explicit", }, }, - ["6835_AfflictionNotableDragonHunter"] = { + ["6909_AfflictionNotableDragonHunter"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63702,7 +63879,7 @@ return { ["type"] = "explicit", }, }, - ["6836_AfflictionNotableDreadMarch"] = { + ["6910_AfflictionNotableDreadMarch"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63711,7 +63888,7 @@ return { ["type"] = "explicit", }, }, - ["6837_AfflictionNotableDrivetheDestruction"] = { + ["6911_AfflictionNotableDrivetheDestruction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63720,7 +63897,7 @@ return { ["type"] = "explicit", }, }, - ["6838_AfflictionNotableEldritchInspiration"] = { + ["6912_AfflictionNotableEldritchInspiration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63729,7 +63906,7 @@ return { ["type"] = "explicit", }, }, - ["6839_AfflictionNotableElegantForm"] = { + ["6913_AfflictionNotableElegantForm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63738,7 +63915,7 @@ return { ["type"] = "explicit", }, }, - ["6840_AfflictionNotableEmpoweredEnvoy"] = { + ["6914_AfflictionNotableEmpoweredEnvoy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63747,7 +63924,7 @@ return { ["type"] = "explicit", }, }, - ["6841_AfflictionNotableEndbringer"] = { + ["6915_AfflictionNotableEndbringer"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63756,7 +63933,7 @@ return { ["type"] = "explicit", }, }, - ["6842_AfflictionNotableEnduringComposure"] = { + ["6916_AfflictionNotableEnduringComposure"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63765,7 +63942,7 @@ return { ["type"] = "explicit", }, }, - ["6843_AfflictionNotableEnduringFocus"] = { + ["6917_AfflictionNotableEnduringFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63774,7 +63951,7 @@ return { ["type"] = "explicit", }, }, - ["6844_AfflictionNotableEnduringWard"] = { + ["6918_AfflictionNotableEnduringWard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63783,7 +63960,7 @@ return { ["type"] = "explicit", }, }, - ["6845_AfflictionNotableEnergyFromNaught"] = { + ["6919_AfflictionNotableEnergyFromNaught"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63792,7 +63969,7 @@ return { ["type"] = "explicit", }, }, - ["6846_AfflictionNotableEssenceRush"] = { + ["6920_AfflictionNotableEssenceRush"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63801,7 +63978,7 @@ return { ["type"] = "explicit", }, }, - ["6847_AfflictionNotableEternalSuffering"] = { + ["6921_AfflictionNotableEternalSuffering"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63810,7 +63987,7 @@ return { ["type"] = "explicit", }, }, - ["6848_AfflictionNotableEvilEye"] = { + ["6922_AfflictionNotableEvilEye"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63819,7 +63996,7 @@ return { ["type"] = "explicit", }, }, - ["6849_AfflictionNotableExpansiveMight"] = { + ["6923_AfflictionNotableExpansiveMight"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63828,7 +64005,7 @@ return { ["type"] = "explicit", }, }, - ["6850_AfflictionNotableExpendability"] = { + ["6924_AfflictionNotableExpendability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63837,7 +64014,7 @@ return { ["type"] = "explicit", }, }, - ["6851_AfflictionNotableExpertSabotage"] = { + ["6925_AfflictionNotableExpertSabotage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63846,7 +64023,7 @@ return { ["type"] = "explicit", }, }, - ["6852_AfflictionNotableExplosiveForce"] = { + ["6926_AfflictionNotableExplosiveForce"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63855,7 +64032,7 @@ return { ["type"] = "explicit", }, }, - ["6853_AfflictionNotableExposureTherapy"] = { + ["6927_AfflictionNotableExposureTherapy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63864,7 +64041,7 @@ return { ["type"] = "explicit", }, }, - ["6854_AfflictionNotableEyeoftheStorm"] = { + ["6928_AfflictionNotableEyeoftheStorm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63873,7 +64050,7 @@ return { ["type"] = "explicit", }, }, - ["6855_AfflictionNotableEyetoEye"] = { + ["6929_AfflictionNotableEyetoEye"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63882,7 +64059,7 @@ return { ["type"] = "explicit", }, }, - ["6856_AfflictionNotableFanofBlades"] = { + ["6930_AfflictionNotableFanofBlades"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63891,7 +64068,7 @@ return { ["type"] = "explicit", }, }, - ["6857_AfflictionNotableFantheFlames"] = { + ["6931_AfflictionNotableFantheFlames"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63900,7 +64077,7 @@ return { ["type"] = "explicit", }, }, - ["6858_AfflictionNotableFasting"] = { + ["6932_AfflictionNotableFasting"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63909,7 +64086,7 @@ return { ["type"] = "explicit", }, }, - ["6859_AfflictionNotableFearsomeWarrior"] = { + ["6933_AfflictionNotableFearsomeWarrior"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63918,7 +64095,7 @@ return { ["type"] = "explicit", }, }, - ["6860_AfflictionNotableFeastofFlesh"] = { + ["6934_AfflictionNotableFeastofFlesh"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63927,7 +64104,7 @@ return { ["type"] = "explicit", }, }, - ["6861_AfflictionNotableFeastingFiends"] = { + ["6935_AfflictionNotableFeastingFiends"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63936,7 +64113,7 @@ return { ["type"] = "explicit", }, }, - ["6862_AfflictionNotableFeedtheFury"] = { + ["6936_AfflictionNotableFeedtheFury"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63945,7 +64122,7 @@ return { ["type"] = "explicit", }, }, - ["6863_AfflictionNotableFettle"] = { + ["6937_AfflictionNotableFettle"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63954,7 +64131,7 @@ return { ["type"] = "explicit", }, }, - ["6864_AfflictionNotableFireAttunement"] = { + ["6938_AfflictionNotableFireAttunement"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63963,7 +64140,7 @@ return { ["type"] = "explicit", }, }, - ["6865_AfflictionNotableFirstAmongEquals"] = { + ["6939_AfflictionNotableFirstAmongEquals"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63972,7 +64149,7 @@ return { ["type"] = "explicit", }, }, - ["6866_AfflictionNotableLordofDrought"] = { + ["6940_AfflictionNotableLordofDrought"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63981,7 +64158,7 @@ return { ["type"] = "explicit", }, }, - ["6867_AfflictionNotableFlexibleSentry"] = { + ["6941_AfflictionNotableFlexibleSentry"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63990,7 +64167,7 @@ return { ["type"] = "explicit", }, }, - ["6868_AfflictionNotableFlowofLife"] = { + ["6942_AfflictionNotableFlowofLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -63999,7 +64176,7 @@ return { ["type"] = "explicit", }, }, - ["6869_AfflictionNotableFollowThrough"] = { + ["6943_AfflictionNotableFollowThrough"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64008,7 +64185,7 @@ return { ["type"] = "explicit", }, }, - ["6870_AfflictionNotableForceMultiplier"] = { + ["6944_AfflictionNotableForceMultiplier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64017,7 +64194,7 @@ return { ["type"] = "explicit", }, }, - ["6871_AfflictionNotableBlizzardCaller"] = { + ["6945_AfflictionNotableBlizzardCaller"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64026,7 +64203,7 @@ return { ["type"] = "explicit", }, }, - ["6872_AfflictionNotableFueltheFight"] = { + ["6946_AfflictionNotableFueltheFight"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64035,7 +64212,7 @@ return { ["type"] = "explicit", }, }, - ["6873_AfflictionNotableFuriousAssault"] = { + ["6947_AfflictionNotableFuriousAssault"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64044,7 +64221,7 @@ return { ["type"] = "explicit", }, }, - ["6874_AfflictionNotableGenius"] = { + ["6948_AfflictionNotableGenius"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64053,7 +64230,7 @@ return { ["type"] = "explicit", }, }, - ["6875_AfflictionNotableGladiatorialCombat"] = { + ["6949_AfflictionNotableGladiatorialCombat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64062,7 +64239,7 @@ return { ["type"] = "explicit", }, }, - ["6876_AfflictionNotableGladiatorsFortitude"] = { + ["6950_AfflictionNotableGladiatorsFortitude"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64071,7 +64248,7 @@ return { ["type"] = "explicit", }, }, - ["6877_AfflictionNotableGracefulExecution"] = { + ["6951_AfflictionNotableGracefulExecution"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64080,7 +64257,7 @@ return { ["type"] = "explicit", }, }, - ["6878_AfflictionNotableSublimeForm"] = { + ["6952_AfflictionNotableSublimeForm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64089,7 +64266,7 @@ return { ["type"] = "explicit", }, }, - ["6879_AfflictionNotableGrandDesign"] = { + ["6953_AfflictionNotableGrandDesign"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64098,7 +64275,7 @@ return { ["type"] = "explicit", }, }, - ["6880_AfflictionNotableGrimOath"] = { + ["6954_AfflictionNotableGrimOath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64107,7 +64284,7 @@ return { ["type"] = "explicit", }, }, - ["6881_AfflictionNotableGroundedCommander"] = { + ["6955_AfflictionNotableGroundedCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64116,7 +64293,7 @@ return { ["type"] = "explicit", }, }, - ["6882_AfflictionNotableGuerillaTactics"] = { + ["6956_AfflictionNotableGuerillaTactics"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64125,7 +64302,7 @@ return { ["type"] = "explicit", }, }, - ["6883_AfflictionNotableHaemorrhage"] = { + ["6957_AfflictionNotableHaemorrhage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64134,7 +64311,7 @@ return { ["type"] = "explicit", }, }, - ["6884_AfflictionNotableHauntingShout"] = { + ["6958_AfflictionNotableHauntingShout"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64143,7 +64320,7 @@ return { ["type"] = "explicit", }, }, - ["6885_AfflictionNotableHeartofIron"] = { + ["6959_AfflictionNotableHeartofIron"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64152,7 +64329,7 @@ return { ["type"] = "explicit", }, }, - ["6886_AfflictionNotableHeavyHitter"] = { + ["6960_AfflictionNotableHeavyHitter"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64161,7 +64338,7 @@ return { ["type"] = "explicit", }, }, - ["6887_AfflictionNotableExploitWeakness"] = { + ["6961_AfflictionNotableExploitWeakness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64170,7 +64347,7 @@ return { ["type"] = "explicit", }, }, - ["6888_AfflictionNotableHeraldry"] = { + ["6962_AfflictionNotableHeraldry"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64179,7 +64356,7 @@ return { ["type"] = "explicit", }, }, - ["6889_AfflictionNotableHexBreaker"] = { + ["6963_AfflictionNotableHexBreaker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64188,7 +64365,7 @@ return { ["type"] = "explicit", }, }, - ["6890_AfflictionNotableHibernator"] = { + ["6964_AfflictionNotableHibernator"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64197,7 +64374,7 @@ return { ["type"] = "explicit", }, }, - ["6891_AfflictionNotableHitandRun"] = { + ["6965_AfflictionNotableHitandRun"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64206,7 +64383,7 @@ return { ["type"] = "explicit", }, }, - ["6892_AfflictionNotableHolisticHealth"] = { + ["6966_AfflictionNotableHolisticHealth"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64215,7 +64392,7 @@ return { ["type"] = "explicit", }, }, - ["6893_AfflictionNotableHolyConquest"] = { + ["6967_AfflictionNotableHolyConquest"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64224,7 +64401,7 @@ return { ["type"] = "explicit", }, }, - ["6894_AfflictionNotableHoundsMark"] = { + ["6968_AfflictionNotableHoundsMark"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64233,7 +64410,7 @@ return { ["type"] = "explicit", }, }, - ["6895_AfflictionNotableHulkingCorpses"] = { + ["6969_AfflictionNotableHulkingCorpses"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64242,7 +64419,7 @@ return { ["type"] = "explicit", }, }, - ["6896_AfflictionNotableImprovisor"] = { + ["6970_AfflictionNotableImprovisor"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64251,7 +64428,7 @@ return { ["type"] = "explicit", }, }, - ["6897_AfflictionNotableInsatiableKiller"] = { + ["6971_AfflictionNotableInsatiableKiller"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64260,7 +64437,7 @@ return { ["type"] = "explicit", }, }, - ["6898_AfflictionNotableInspiredOppression"] = { + ["6972_AfflictionNotableInspiredOppression"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64269,7 +64446,7 @@ return { ["type"] = "explicit", }, }, - ["6899_AfflictionNotableInsulated"] = { + ["6973_AfflictionNotableInsulated"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64278,7 +64455,7 @@ return { ["type"] = "explicit", }, }, - ["6900_AfflictionNotableIntensity"] = { + ["6974_AfflictionNotableIntensity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64287,7 +64464,7 @@ return { ["type"] = "explicit", }, }, - ["6901_AfflictionNotableInvigoratingPortents"] = { + ["6975_AfflictionNotableInvigoratingPortents"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64296,7 +64473,7 @@ return { ["type"] = "explicit", }, }, - ["6902_AfflictionNotableIronBreaker"] = { + ["6976_AfflictionNotableIronBreaker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64305,7 +64482,7 @@ return { ["type"] = "explicit", }, }, - ["6903_AfflictionNotableLastingImpression"] = { + ["6977_AfflictionNotableLastingImpression"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64314,7 +64491,7 @@ return { ["type"] = "explicit", }, }, - ["6904_AfflictionNotableLeadByExample"] = { + ["6978_AfflictionNotableLeadByExample"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64323,7 +64500,7 @@ return { ["type"] = "explicit", }, }, - ["6905_AfflictionNotableLifefromDeath"] = { + ["6979_AfflictionNotableLifefromDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64332,7 +64509,7 @@ return { ["type"] = "explicit", }, }, - ["6906_AfflictionNotableTempttheStorm"] = { + ["6980_AfflictionNotableTempttheStorm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64341,7 +64518,7 @@ return { ["type"] = "explicit", }, }, - ["6907_AfflictionNotableLiquidInspiration"] = { + ["6981_AfflictionNotableLiquidInspiration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64350,7 +64527,7 @@ return { ["type"] = "explicit", }, }, - ["6908_AfflictionNotableLowTolerance"] = { + ["6982_AfflictionNotableLowTolerance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64359,7 +64536,7 @@ return { ["type"] = "explicit", }, }, - ["6909_AfflictionNotableMageBane"] = { + ["6983_AfflictionNotableMageBane"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64368,7 +64545,7 @@ return { ["type"] = "explicit", }, }, - ["6910_AfflictionNotableMageHunter"] = { + ["6984_AfflictionNotableMageHunter"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64377,7 +64554,7 @@ return { ["type"] = "explicit", }, }, - ["6911_AfflictionNotableMagnifier"] = { + ["6985_AfflictionNotableMagnifier"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64386,7 +64563,7 @@ return { ["type"] = "explicit", }, }, - ["6912_AfflictionNotableMartialMastery"] = { + ["6986_AfflictionNotableMartialMastery"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64395,7 +64572,7 @@ return { ["type"] = "explicit", }, }, - ["6913_AfflictionNotableMartialMomentum"] = { + ["6987_AfflictionNotableMartialMomentum"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64404,7 +64581,7 @@ return { ["type"] = "explicit", }, }, - ["6914_AfflictionNotableMartialProwess"] = { + ["6988_AfflictionNotableMartialProwess"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64413,7 +64590,7 @@ return { ["type"] = "explicit", }, }, - ["6915_AfflictionNotableMasterofCommand"] = { + ["6989_AfflictionNotableMasterofCommand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64422,7 +64599,7 @@ return { ["type"] = "explicit", }, }, - ["6916_AfflictionNotableMasterofFear"] = { + ["6990_AfflictionNotableMasterofFear"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64431,7 +64608,7 @@ return { ["type"] = "explicit", }, }, - ["6917_AfflictionNotableMasterofFire"] = { + ["6991_AfflictionNotableMasterofFire"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64440,7 +64617,7 @@ return { ["type"] = "explicit", }, }, - ["6918_AfflictionNotableMasterOfTheMaelstrom"] = { + ["6992_AfflictionNotableMasterOfTheMaelstrom"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64449,7 +64626,7 @@ return { ["type"] = "explicit", }, }, - ["6919_AfflictionNotableMastertheFundamentals"] = { + ["6993_AfflictionNotableMastertheFundamentals"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64458,7 +64635,7 @@ return { ["type"] = "explicit", }, }, - ["6920_AfflictionNotableMendersWellspring"] = { + ["6994_AfflictionNotableMendersWellspring"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64467,7 +64644,7 @@ return { ["type"] = "explicit", }, }, - ["6921_AfflictionNotableMilitarism"] = { + ["6995_AfflictionNotableMilitarism"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64476,7 +64653,7 @@ return { ["type"] = "explicit", }, }, - ["6922_AfflictionNotableMindfulness"] = { + ["6996_AfflictionNotableMindfulness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64485,7 +64662,7 @@ return { ["type"] = "explicit", }, }, - ["6923_AfflictionNotableMobMentality"] = { + ["6997_AfflictionNotableMobMentality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64494,7 +64671,7 @@ return { ["type"] = "explicit", }, }, - ["6924_AfflictionNotableMoltenOnesMark"] = { + ["6998_AfflictionNotableMoltenOnesMark"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64503,7 +64680,7 @@ return { ["type"] = "explicit", }, }, - ["6925_AfflictionNotableMysticalWard"] = { + ["6999_AfflictionNotableMysticalWard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64512,7 +64689,7 @@ return { ["type"] = "explicit", }, }, - ["6926_AfflictionNotableNaturalVigour"] = { + ["7000_AfflictionNotableNaturalVigour"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64521,7 +64698,7 @@ return { ["type"] = "explicit", }, }, - ["6927_AfflictionNotableNoWitnesses"] = { + ["7001_AfflictionNotableNoWitnesses"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64530,7 +64707,7 @@ return { ["type"] = "explicit", }, }, - ["6928_AfflictionNotableNonFlammable"] = { + ["7002_AfflictionNotableNonFlammable"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64539,7 +64716,7 @@ return { ["type"] = "explicit", }, }, - ["6929_AfflictionNotableNumbingElixir"] = { + ["7003_AfflictionNotableNumbingElixir"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64548,7 +64725,7 @@ return { ["type"] = "explicit", }, }, - ["6930_AfflictionNotableOnewiththeShield"] = { + ["7004_AfflictionNotableOnewiththeShield"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64557,7 +64734,7 @@ return { ["type"] = "explicit", }, }, - ["6931_AfflictionNotableOpenness"] = { + ["7005_AfflictionNotableOpenness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64566,7 +64743,7 @@ return { ["type"] = "explicit", }, }, - ["6932_AfflictionNotableOpportunisticFusilade"] = { + ["7006_AfflictionNotableOpportunisticFusilade"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64575,7 +64752,7 @@ return { ["type"] = "explicit", }, }, - ["6933_AfflictionNotableOverlord"] = { + ["7007_AfflictionNotableOverlord"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64584,7 +64761,7 @@ return { ["type"] = "explicit", }, }, - ["6934_AfflictionNotableOvershock"] = { + ["7008_AfflictionNotableOvershock"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64593,7 +64770,7 @@ return { ["type"] = "explicit", }, }, - ["6935_AfflictionNotableOverwhelmingMalice"] = { + ["7009_AfflictionNotableOverwhelmingMalice"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64602,7 +64779,7 @@ return { ["type"] = "explicit", }, }, - ["6936_AfflictionNotableParalysis"] = { + ["7010_AfflictionNotableParalysis"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64611,7 +64788,7 @@ return { ["type"] = "explicit", }, }, - ["6937_AfflictionNotablePeaceAmidstChaos"] = { + ["7011_AfflictionNotablePeaceAmidstChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64620,7 +64797,7 @@ return { ["type"] = "explicit", }, }, - ["6938_AfflictionNotablePeakVigour"] = { + ["7012_AfflictionNotablePeakVigour"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64629,7 +64806,7 @@ return { ["type"] = "explicit", }, }, - ["6939_AfflictionNotablePhlebotomist"] = { + ["7013_AfflictionNotablePhlebotomist"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64638,7 +64815,7 @@ return { ["type"] = "explicit", }, }, - ["6940_AfflictionNotablePowerfulAssault"] = { + ["7014_AfflictionNotablePowerfulAssault"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64647,7 +64824,7 @@ return { ["type"] = "explicit", }, }, - ["6941_AfflictionNotablePowerfulWard"] = { + ["7015_AfflictionNotablePowerfulWard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64656,7 +64833,7 @@ return { ["type"] = "explicit", }, }, - ["6942_AfflictionNotablePracticedCaster"] = { + ["7016_AfflictionNotablePracticedCaster"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64665,7 +64842,7 @@ return { ["type"] = "explicit", }, }, - ["6943_AfflictionNotablePreciseCommander"] = { + ["7017_AfflictionNotablePreciseCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64674,7 +64851,7 @@ return { ["type"] = "explicit", }, }, - ["6944_AfflictionNotablePreciseFocus"] = { + ["7018_AfflictionNotablePreciseFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64683,7 +64860,7 @@ return { ["type"] = "explicit", }, }, - ["6945_AfflictionNotablePreciseRetaliation"] = { + ["7019_AfflictionNotablePreciseRetaliation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64692,7 +64869,7 @@ return { ["type"] = "explicit", }, }, - ["6946_AfflictionNotablePressurePoints"] = { + ["7020_AfflictionNotablePressurePoints"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64701,7 +64878,7 @@ return { ["type"] = "explicit", }, }, - ["6947_AfflictionNotablePrimordialBond"] = { + ["7021_AfflictionNotablePrimordialBond"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64710,7 +64887,7 @@ return { ["type"] = "explicit", }, }, - ["6948_AfflictionNotablePrismaticCarapace"] = { + ["7022_AfflictionNotablePrismaticCarapace"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64719,7 +64896,7 @@ return { ["type"] = "explicit", }, }, - ["6949_AfflictionNotablePrismaticDance"] = { + ["7023_AfflictionNotablePrismaticDance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64728,7 +64905,7 @@ return { ["type"] = "explicit", }, }, - ["6950_AfflictionNotablePrismaticHeart"] = { + ["7024_AfflictionNotablePrismaticHeart"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64737,7 +64914,7 @@ return { ["type"] = "explicit", }, }, - ["6951_AfflictionNotableProdigiousDefense"] = { + ["7025_AfflictionNotableProdigiousDefense"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64746,7 +64923,7 @@ return { ["type"] = "explicit", }, }, - ["6952_AfflictionNotableProvocateur"] = { + ["7026_AfflictionNotableProvocateur"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64755,7 +64932,7 @@ return { ["type"] = "explicit", }, }, - ["6953_AfflictionNotablePureAgony"] = { + ["7027_AfflictionNotablePureAgony"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64764,7 +64941,7 @@ return { ["type"] = "explicit", }, }, - ["6954_AfflictionNotablePureAptitude"] = { + ["7028_AfflictionNotablePureAptitude"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64773,7 +64950,7 @@ return { ["type"] = "explicit", }, }, - ["6955_AfflictionNotablePureCommander"] = { + ["7029_AfflictionNotablePureCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64782,7 +64959,7 @@ return { ["type"] = "explicit", }, }, - ["6956_AfflictionNotablePureGuile"] = { + ["7030_AfflictionNotablePureGuile"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64791,7 +64968,7 @@ return { ["type"] = "explicit", }, }, - ["6957_AfflictionNotablePureMight"] = { + ["7031_AfflictionNotablePureMight"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64800,7 +64977,7 @@ return { ["type"] = "explicit", }, }, - ["6958_AfflictionNotablePurposefulHarbinger"] = { + ["7032_AfflictionNotablePurposefulHarbinger"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64809,7 +64986,7 @@ return { ["type"] = "explicit", }, }, - ["6959_AfflictionNotableQuickandDeadly"] = { + ["7033_AfflictionNotableQuickandDeadly"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64818,7 +64995,7 @@ return { ["type"] = "explicit", }, }, - ["6960_AfflictionNotableQuickGetaway"] = { + ["7034_AfflictionNotableQuickGetaway"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64827,7 +65004,7 @@ return { ["type"] = "explicit", }, }, - ["6961_AfflictionNotableRapidInfusion"] = { + ["7035_AfflictionNotableRapidInfusion"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64836,7 +65013,7 @@ return { ["type"] = "explicit", }, }, - ["6962_AfflictionNotableRattlingBellow"] = { + ["7036_AfflictionNotableRattlingBellow"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64845,7 +65022,7 @@ return { ["type"] = "explicit", }, }, - ["6963_AfflictionNotableRazeandPillage"] = { + ["7037_AfflictionNotableRazeandPillage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64854,7 +65031,7 @@ return { ["type"] = "explicit", }, }, - ["6964_AfflictionNotableReadiness"] = { + ["7038_AfflictionNotableReadiness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64863,7 +65040,7 @@ return { ["type"] = "explicit", }, }, - ["6965_AfflictionNotableRemarkable"] = { + ["7039_AfflictionNotableRemarkable"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64872,7 +65049,7 @@ return { ["type"] = "explicit", }, }, - ["6966_AfflictionNotableRend"] = { + ["7040_AfflictionNotableRend"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64881,7 +65058,7 @@ return { ["type"] = "explicit", }, }, - ["6967_AfflictionNotableRenewal"] = { + ["7041_AfflictionNotableRenewal"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64890,7 +65067,7 @@ return { ["type"] = "explicit", }, }, - ["6968_AfflictionNotableRepeater"] = { + ["7042_AfflictionNotableRepeater"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64899,7 +65076,7 @@ return { ["type"] = "explicit", }, }, - ["6969_AfflictionNotableReplenishingPresence"] = { + ["7043_AfflictionNotableReplenishingPresence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64908,7 +65085,7 @@ return { ["type"] = "explicit", }, }, - ["6970_AfflictionNotableRiotQueller"] = { + ["7044_AfflictionNotableRiotQueller"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64917,7 +65094,7 @@ return { ["type"] = "explicit", }, }, - ["6971_AfflictionNotableRotResistant"] = { + ["7045_AfflictionNotableRotResistant"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64926,7 +65103,7 @@ return { ["type"] = "explicit", }, }, - ["6972_AfflictionNotableRoteReinforcement"] = { + ["7046_AfflictionNotableRoteReinforcement"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64935,7 +65112,7 @@ return { ["type"] = "explicit", }, }, - ["6973_AfflictionNotableRottenClaws"] = { + ["7047_AfflictionNotableRottenClaws"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64944,7 +65121,7 @@ return { ["type"] = "explicit", }, }, - ["6974_AfflictionNotableRunThrough"] = { + ["7048_AfflictionNotableRunThrough"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64953,7 +65130,7 @@ return { ["type"] = "explicit", }, }, - ["6975_AfflictionNotableSadist"] = { + ["7049_AfflictionNotableSadist"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64962,7 +65139,7 @@ return { ["type"] = "explicit", }, }, - ["6976_AfflictionNotableSage"] = { + ["7050_AfflictionNotableSage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64971,7 +65148,7 @@ return { ["type"] = "explicit", }, }, - ["6977_AfflictionNotableSapPsyche"] = { + ["7051_AfflictionNotableSapPsyche"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64980,7 +65157,7 @@ return { ["type"] = "explicit", }, }, - ["6978_AfflictionNotableSavageResponse"] = { + ["7052_AfflictionNotableSavageResponse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64989,7 +65166,7 @@ return { ["type"] = "explicit", }, }, - ["6979_AfflictionNotableSavourtheMoment"] = { + ["7053_AfflictionNotableSavourtheMoment"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -64998,7 +65175,7 @@ return { ["type"] = "explicit", }, }, - ["6980_AfflictionNotableScintillatingIdea"] = { + ["7054_AfflictionNotableScintillatingIdea"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65007,7 +65184,7 @@ return { ["type"] = "explicit", }, }, - ["6981_AfflictionNotableSealMender"] = { + ["7055_AfflictionNotableSealMender"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65016,7 +65193,7 @@ return { ["type"] = "explicit", }, }, - ["6982_AfflictionNotableSecondSkin"] = { + ["7056_AfflictionNotableSecondSkin"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65025,7 +65202,7 @@ return { ["type"] = "explicit", }, }, - ["6983_AfflictionNotableSeekerRunes"] = { + ["7057_AfflictionNotableSeekerRunes"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65034,7 +65211,7 @@ return { ["type"] = "explicit", }, }, - ["6984_AfflictionNotableSelfFulfillingProphecy"] = { + ["7058_AfflictionNotableSelfFulfillingProphecy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65043,7 +65220,7 @@ return { ["type"] = "explicit", }, }, - ["6985_AfflictionNotableSepticSpells"] = { + ["7059_AfflictionNotableSepticSpells"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65052,7 +65229,7 @@ return { ["type"] = "explicit", }, }, - ["6986_AfflictionNotableSetandForget"] = { + ["7060_AfflictionNotableSetandForget"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65061,7 +65238,7 @@ return { ["type"] = "explicit", }, }, - ["6987_AfflictionNotableShiftingShadow"] = { + ["7061_AfflictionNotableShiftingShadow"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65070,7 +65247,7 @@ return { ["type"] = "explicit", }, }, - ["6988_AfflictionNotableShriekingBolts"] = { + ["7062_AfflictionNotableShriekingBolts"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65079,7 +65256,7 @@ return { ["type"] = "explicit", }, }, - ["6989_AfflictionNotableSkeletalAtrophy"] = { + ["7063_AfflictionNotableSkeletalAtrophy"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65088,7 +65265,7 @@ return { ["type"] = "explicit", }, }, - ["6990_AfflictionNotableSkullbreaker"] = { + ["7064_AfflictionNotableSkullbreaker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65097,7 +65274,7 @@ return { ["type"] = "explicit", }, }, - ["6991_AfflictionNotableSleeplessSentries"] = { + ["7065_AfflictionNotableSleeplessSentries"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65106,7 +65283,7 @@ return { ["type"] = "explicit", }, }, - ["6992_AfflictionNotableSmitetheWeak"] = { + ["7066_AfflictionNotableSmitetheWeak"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65115,7 +65292,7 @@ return { ["type"] = "explicit", }, }, - ["6993_AfflictionNotableSmokingRemains"] = { + ["7067_AfflictionNotableSmokingRemains"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65124,7 +65301,7 @@ return { ["type"] = "explicit", }, }, - ["6994_AfflictionNotableSnaringSpirits"] = { + ["7068_AfflictionNotableSnaringSpirits"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65133,7 +65310,7 @@ return { ["type"] = "explicit", }, }, - ["6995_AfflictionNotableSnowstorm"] = { + ["7069_AfflictionNotableSnowstorm"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65142,7 +65319,7 @@ return { ["type"] = "explicit", }, }, - ["6996_AfflictionNotableSpecialReserve"] = { + ["7070_AfflictionNotableSpecialReserve"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65151,7 +65328,7 @@ return { ["type"] = "explicit", }, }, - ["6997_AfflictionNotableSpikedConcoction"] = { + ["7071_AfflictionNotableSpikedConcoction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65160,7 +65337,7 @@ return { ["type"] = "explicit", }, }, - ["6998_AfflictionNotableSpringBack"] = { + ["7072_AfflictionNotableSpringBack"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65169,7 +65346,7 @@ return { ["type"] = "explicit", }, }, - ["6999_AfflictionNotableStalwartCommander"] = { + ["7073_AfflictionNotableStalwartCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65178,7 +65355,7 @@ return { ["type"] = "explicit", }, }, - ["7000_AfflictionNotableSteadyTorment"] = { + ["7074_AfflictionNotableSteadyTorment"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65187,7 +65364,7 @@ return { ["type"] = "explicit", }, }, - ["7001_AfflictionNotableStoicFocus"] = { + ["7075_AfflictionNotableStoicFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65196,7 +65373,7 @@ return { ["type"] = "explicit", }, }, - ["7002_AfflictionNotableStormDrinker"] = { + ["7076_AfflictionNotableStormDrinker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65205,7 +65382,7 @@ return { ["type"] = "explicit", }, }, - ["7003_AfflictionNotableStormrider"] = { + ["7077_AfflictionNotableStormrider"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65214,7 +65391,7 @@ return { ["type"] = "explicit", }, }, - ["7004_AfflictionNotableStormsHand"] = { + ["7078_AfflictionNotableStormsHand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65223,7 +65400,7 @@ return { ["type"] = "explicit", }, }, - ["7005_AfflictionNotableStreamlined"] = { + ["7079_AfflictionNotableStreamlined"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65232,7 +65409,7 @@ return { ["type"] = "explicit", }, }, - ["7006_AfflictionNotableStrikeLeader"] = { + ["7080_AfflictionNotableStrikeLeader"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65241,7 +65418,7 @@ return { ["type"] = "explicit", }, }, - ["7007_AfflictionNotableStubbornStudent"] = { + ["7081_AfflictionNotableStubbornStudent"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65250,7 +65427,7 @@ return { ["type"] = "explicit", }, }, - ["7008_AfflictionNotableStudentofDecay"] = { + ["7082_AfflictionNotableStudentofDecay"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65259,7 +65436,7 @@ return { ["type"] = "explicit", }, }, - ["7009_AfflictionNotableSublimeSensation"] = { + ["7083_AfflictionNotableSublimeSensation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65268,7 +65445,7 @@ return { ["type"] = "explicit", }, }, - ["7010_AfflictionNotableSummerCommander"] = { + ["7084_AfflictionNotableSummerCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65277,7 +65454,7 @@ return { ["type"] = "explicit", }, }, - ["7011_AfflictionNotableSupercharge"] = { + ["7085_AfflictionNotableSupercharge"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65286,7 +65463,7 @@ return { ["type"] = "explicit", }, }, - ["7012_AfflictionNotableSurefootedStriker"] = { + ["7086_AfflictionNotableSurefootedStriker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65295,7 +65472,7 @@ return { ["type"] = "explicit", }, }, - ["7013_AfflictionNotableSurgingVitality"] = { + ["7087_AfflictionNotableSurgingVitality"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65304,7 +65481,7 @@ return { ["type"] = "explicit", }, }, - ["7014_AfflictionNotableSurpriseSabotage"] = { + ["7088_AfflictionNotableSurpriseSabotage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65313,7 +65490,7 @@ return { ["type"] = "explicit", }, }, - ["7015_AfflictionNotableTemperedArrowheads"] = { + ["7089_AfflictionNotableTemperedArrowheads"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65322,7 +65499,7 @@ return { ["type"] = "explicit", }, }, - ["7016_AfflictionNotableThaumophage"] = { + ["7090_AfflictionNotableThaumophage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65331,7 +65508,7 @@ return { ["type"] = "explicit", }, }, - ["7017_AfflictionNotableThunderstruck"] = { + ["7091_AfflictionNotableThunderstruck"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65340,7 +65517,7 @@ return { ["type"] = "explicit", }, }, - ["7018_AfflictionNotableTitanicSwings"] = { + ["7092_AfflictionNotableTitanicSwings"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65349,7 +65526,7 @@ return { ["type"] = "explicit", }, }, - ["7019_AfflictionNotableTouchofCruelty"] = { + ["7093_AfflictionNotableTouchofCruelty"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65358,7 +65535,7 @@ return { ["type"] = "explicit", }, }, - ["7020_AfflictionNotableToweringThreat"] = { + ["7094_AfflictionNotableToweringThreat"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65367,7 +65544,7 @@ return { ["type"] = "explicit", }, }, - ["7021_AfflictionNotableUnholyGrace"] = { + ["7095_AfflictionNotableUnholyGrace"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65376,7 +65553,7 @@ return { ["type"] = "explicit", }, }, - ["7022_AfflictionNotableUnspeakableGifts"] = { + ["7096_AfflictionNotableUnspeakableGifts"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65385,7 +65562,7 @@ return { ["type"] = "explicit", }, }, - ["7023_AfflictionNotableUntouchable"] = { + ["7097_AfflictionNotableUntouchable"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65394,7 +65571,7 @@ return { ["type"] = "explicit", }, }, - ["7024_AfflictionNotableUnwaveringFocus"] = { + ["7098_AfflictionNotableUnwaveringFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65403,7 +65580,7 @@ return { ["type"] = "explicit", }, }, - ["7025_AfflictionNotableUnwaveringlyEvil"] = { + ["7099_AfflictionNotableUnwaveringlyEvil"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65412,7 +65589,7 @@ return { ["type"] = "explicit", }, }, - ["7026_AfflictionNotableVastPower"] = { + ["7100_AfflictionNotableVastPower"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65421,7 +65598,7 @@ return { ["type"] = "explicit", }, }, - ["7027_AfflictionNotableVengefulCommander"] = { + ["7101_AfflictionNotableVengefulCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65430,7 +65607,7 @@ return { ["type"] = "explicit", }, }, - ["7028_AfflictionNotableVeteranDefender"] = { + ["7102_AfflictionNotableVeteranDefender"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65439,7 +65616,7 @@ return { ["type"] = "explicit", }, }, - ["7029_AfflictionNotableViciousBite"] = { + ["7103_AfflictionNotableViciousBite"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65448,7 +65625,7 @@ return { ["type"] = "explicit", }, }, - ["7030_AfflictionNotableViciousGuard"] = { + ["7104_AfflictionNotableViciousGuard"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65457,7 +65634,7 @@ return { ["type"] = "explicit", }, }, - ["7031_AfflictionNotableViciousSkewering"] = { + ["7105_AfflictionNotableViciousSkewering"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65466,7 +65643,7 @@ return { ["type"] = "explicit", }, }, - ["7032_AfflictionNotableVictimMaker"] = { + ["7106_AfflictionNotableVictimMaker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65475,7 +65652,7 @@ return { ["type"] = "explicit", }, }, - ["7033_AfflictionNotableVileReinvigoration"] = { + ["7107_AfflictionNotableVileReinvigoration"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65484,7 +65661,7 @@ return { ["type"] = "explicit", }, }, - ["7034_AfflictionNotableVitalFocus"] = { + ["7108_AfflictionNotableVitalFocus"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65493,7 +65670,7 @@ return { ["type"] = "explicit", }, }, - ["7035_AfflictionNotableVividHues"] = { + ["7109_AfflictionNotableVividHues"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65502,7 +65679,7 @@ return { ["type"] = "explicit", }, }, - ["7036_AfflictionNotableWallofMuscle"] = { + ["7110_AfflictionNotableWallofMuscle"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65511,7 +65688,7 @@ return { ["type"] = "explicit", }, }, - ["7037_AfflictionNotableWardbreaker"] = { + ["7111_AfflictionNotableWardbreaker"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65520,7 +65697,7 @@ return { ["type"] = "explicit", }, }, - ["7038_AfflictionNotableWarningCall"] = { + ["7112_AfflictionNotableWarningCall"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65529,7 +65706,7 @@ return { ["type"] = "explicit", }, }, - ["7039_AfflictionNotableWastingAffliction"] = { + ["7113_AfflictionNotableWastingAffliction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65538,7 +65715,7 @@ return { ["type"] = "explicit", }, }, - ["7040_AfflictionNotableWeightAdvantage"] = { + ["7114_AfflictionNotableWeightAdvantage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65547,7 +65724,7 @@ return { ["type"] = "explicit", }, }, - ["7041_AfflictionNotableWhispersofDeath"] = { + ["7115_AfflictionNotableWhispersofDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65556,7 +65733,7 @@ return { ["type"] = "explicit", }, }, - ["7042_AfflictionNotableWickedPall"] = { + ["7116_AfflictionNotableWickedPall"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65565,7 +65742,7 @@ return { ["type"] = "explicit", }, }, - ["7043_AfflictionNotableWidespreadDestruction"] = { + ["7117_AfflictionNotableWidespreadDestruction"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65574,7 +65751,7 @@ return { ["type"] = "explicit", }, }, - ["7044_AfflictionNotableWillShaper"] = { + ["7118_AfflictionNotableWillShaper"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65583,7 +65760,7 @@ return { ["type"] = "explicit", }, }, - ["7045_AfflictionNotableWindup"] = { + ["7119_AfflictionNotableWindup"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65592,7 +65769,7 @@ return { ["type"] = "explicit", }, }, - ["7046_AfflictionNotableWinterCommander"] = { + ["7120_AfflictionNotableWinterCommander"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65601,7 +65778,7 @@ return { ["type"] = "explicit", }, }, - ["7047_AfflictionNotableWinterProwler"] = { + ["7121_AfflictionNotableWinterProwler"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65610,7 +65787,7 @@ return { ["type"] = "explicit", }, }, - ["7048_AfflictionNotableWishforDeath"] = { + ["7122_AfflictionNotableWishforDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65619,7 +65796,7 @@ return { ["type"] = "explicit", }, }, - ["7049_AfflictionNotableWizardry"] = { + ["7123_AfflictionNotableWizardry"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65628,7 +65805,7 @@ return { ["type"] = "explicit", }, }, - ["7050_AfflictionNotableWoundAggravation"] = { + ["7124_AfflictionNotableWoundAggravation"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65637,7 +65814,7 @@ return { ["type"] = "explicit", }, }, - ["7051_AfflictionNotableWrappedinFlame"] = { + ["7125_AfflictionNotableWrappedinFlame"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -65648,7 +65825,245 @@ return { }, }, ["Scourge"] = { - ["1000_PercentageDexterity"] = { + ["1009_AdditionalSpellBlock"] = { + ["Shield"] = { + ["max"] = 9, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_19803471", + ["text"] = "+#% Chance to Block Spell Damage", + ["type"] = "scourge", + }, + }, + ["1027_StrengthImplicit"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HMace"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Belt"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4080418644", + ["text"] = "+# to Strength", + ["type"] = "scourge", + }, + }, + ["1028_DexterityImplicit"] = { + ["1HAxe"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HSword"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HAxe"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HSword"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3261801346", + ["text"] = "+# to Dexterity", + ["type"] = "scourge", + }, + }, + ["1029_IntelligenceImplicit"] = { + ["1HMace"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_328541901", + ["text"] = "+# to Intelligence", + ["type"] = "scourge", + }, + }, + ["1034_PercentageStrength"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 4, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "scourge", + }, + }, + ["1035_PercentageDexterity"] = { ["Amulet"] = { ["max"] = 7, ["min"] = 4, @@ -65662,7 +66077,7 @@ return { ["type"] = "scourge", }, }, - ["1001_PercentageIntelligence"] = { + ["1036_PercentageIntelligence"] = { ["Amulet"] = { ["max"] = 7, ["min"] = 4, @@ -65676,7 +66091,7 @@ return { ["type"] = "scourge", }, }, - ["1038_SpellDamage"] = { + ["1073_SpellDamage"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -65710,7 +66125,7 @@ return { ["type"] = "scourge", }, }, - ["1045_PhysicalDamagePercent"] = { + ["1080_PhysicalDamagePercent"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -65744,7 +66159,7 @@ return { ["type"] = "scourge", }, }, - ["1056_GlobalDamageOverTimeMultiplier"] = { + ["1091_GlobalDamageOverTimeMultiplier"] = { ["Amulet"] = { ["max"] = 16, ["min"] = 8, @@ -65758,7 +66173,7 @@ return { ["type"] = "scourge", }, }, - ["1060_PhysicalDamageOverTimeMultiplier"] = { + ["1095_PhysicalDamageOverTimeMultiplier"] = { ["1HMace"] = { ["max"] = 16, ["min"] = 11, @@ -65788,7 +66203,7 @@ return { ["type"] = "scourge", }, }, - ["1064_FireDamageOverTimeMultiplier"] = { + ["1099_FireDamageOverTimeMultiplier"] = { ["1HMace"] = { ["max"] = 16, ["min"] = 11, @@ -65818,7 +66233,7 @@ return { ["type"] = "scourge", }, }, - ["1069_ColdDamageOverTimeMultiplier"] = { + ["1104_ColdDamageOverTimeMultiplier"] = { ["1HMace"] = { ["max"] = 16, ["min"] = 11, @@ -65848,7 +66263,7 @@ return { ["type"] = "scourge", }, }, - ["1072_ChaosDamageOverTimeMultiplier"] = { + ["1107_ChaosDamageOverTimeMultiplier"] = { ["1HMace"] = { ["max"] = 16, ["min"] = 11, @@ -65878,7 +66293,7 @@ return { ["type"] = "scourge", }, }, - ["1088_LocalPhysicalDamage"] = { + ["1123_LocalPhysicalDamage"] = { ["1HAxe"] = { ["max"] = 10.5, ["min"] = 3.5, @@ -65941,7 +66356,7 @@ return { ["type"] = "scourge", }, }, - ["1169_FireDamagePercentage"] = { + ["1204_FireDamagePercentage"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -65975,7 +66390,7 @@ return { ["type"] = "scourge", }, }, - ["1174_LocalFireDamage"] = { + ["1209_LocalFireDamage"] = { ["1HAxe"] = { ["max"] = 53.5, ["min"] = 17, @@ -66038,7 +66453,7 @@ return { ["type"] = "scourge", }, }, - ["1178_ColdDamagePercentage"] = { + ["1213_ColdDamagePercentage"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -66072,7 +66487,7 @@ return { ["type"] = "scourge", }, }, - ["1183_LocalColdDamage"] = { + ["1218_LocalColdDamage"] = { ["1HAxe"] = { ["max"] = 50, ["min"] = 14, @@ -66135,7 +66550,7 @@ return { ["type"] = "scourge", }, }, - ["1189_LightningDamagePercentage"] = { + ["1224_LightningDamagePercentage"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -66169,7 +66584,7 @@ return { ["type"] = "scourge", }, }, - ["1194_LocalLightningDamage"] = { + ["1229_LocalLightningDamage"] = { ["1HAxe"] = { ["max"] = 59.5, ["min"] = 20.5, @@ -66232,7 +66647,7 @@ return { ["type"] = "scourge", }, }, - ["1197_IncreasedChaosDamage"] = { + ["1232_IncreasedChaosDamage"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -66266,7 +66681,7 @@ return { ["type"] = "scourge", }, }, - ["1201_LocalChaosDamage"] = { + ["1236_LocalChaosDamage"] = { ["1HAxe"] = { ["max"] = 24, ["min"] = 9, @@ -66329,7 +66744,7 @@ return { ["type"] = "scourge", }, }, - ["1214_SpellAddedPhysicalDamage"] = { + ["1249_SpellAddedPhysicalDamage"] = { ["1HMace"] = { ["max"] = 30.5, ["min"] = 17, @@ -66363,7 +66778,7 @@ return { ["type"] = "scourge", }, }, - ["1215_SpellAddedFireDamage"] = { + ["1250_SpellAddedFireDamage"] = { ["1HMace"] = { ["max"] = 30.5, ["min"] = 17, @@ -66397,7 +66812,7 @@ return { ["type"] = "scourge", }, }, - ["1216_SpellAddedColdDamage"] = { + ["1251_SpellAddedColdDamage"] = { ["1HMace"] = { ["max"] = 30.5, ["min"] = 17, @@ -66431,7 +66846,7 @@ return { ["type"] = "scourge", }, }, - ["1217_SpellAddedLightningDamage"] = { + ["1252_SpellAddedLightningDamage"] = { ["1HMace"] = { ["max"] = 32.5, ["min"] = 17.5, @@ -66465,7 +66880,7 @@ return { ["type"] = "scourge", }, }, - ["1221_IncreasedAttackSpeed"] = { + ["1256_IncreasedAttackSpeed"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 4, @@ -66487,7 +66902,7 @@ return { ["type"] = "scourge", }, }, - ["1244_IncreasedAccuracyPercent"] = { + ["1279_IncreasedAccuracyPercent"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 11, @@ -66505,7 +66920,7 @@ return { ["type"] = "scourge", }, }, - ["1256_IncreasedCastSpeed"] = { + ["1291_IncreasedCastSpeed"] = { ["Amulet"] = { ["max"] = 8, ["min"] = 5, @@ -66519,7 +66934,7 @@ return { ["type"] = "scourge", }, }, - ["1269_CriticalStrikeChance"] = { + ["1304_CriticalStrikeChance"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 17, @@ -66533,7 +66948,7 @@ return { ["type"] = "scourge", }, }, - ["1275_CriticalStrikeChanceWithBows"] = { + ["1310_CriticalStrikeChanceWithBows"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 17, @@ -66547,7 +66962,7 @@ return { ["type"] = "scourge", }, }, - ["1298_CriticalStrikeMultiplier"] = { + ["1333_CriticalStrikeMultiplier"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 17, @@ -66561,21 +66976,7 @@ return { ["type"] = "scourge", }, }, - ["129_LocalIncreaseSocketedStrengthGemLevel"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "scourge", - }, - }, - ["1305_CriticalStrikeMultiplierWithBows"] = { + ["1340_CriticalStrikeMultiplierWithBows"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 17, @@ -66589,7 +66990,7 @@ return { ["type"] = "scourge", }, }, - ["130_LocalIncreaseSocketedDexterityGemLevel"] = { + ["134_LocalIncreaseSocketedStrengthGemLevel"] = { ["Helmet"] = { ["max"] = 1, ["min"] = 1, @@ -66598,40 +66999,40 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", + ["id"] = "scourge.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", ["type"] = "scourge", }, }, - ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["1356_ReducedExtraDamageFromCrits"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 13, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", + ["id"] = "scourge.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "scourge", }, }, - ["1321_ReducedExtraDamageFromCrits"] = { - ["Shield"] = { - ["max"] = 25, - ["min"] = 13, + ["135_LocalIncreaseSocketedDexterityGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "scourge.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", ["type"] = "scourge", }, }, - ["1326_StunThresholdReduction"] = { + ["1361_StunThresholdReduction"] = { ["1HAxe"] = { ["max"] = 10, ["min"] = 5, @@ -66681,7 +67082,21 @@ return { ["type"] = "scourge", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["136_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "scourge", + }, + }, + ["137_LocalIncreaseSocketedGemLevel"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -66695,7 +67110,7 @@ return { ["type"] = "scourge", }, }, - ["1349_LocalPhysicalDamageReductionRating"] = { + ["1384_LocalPhysicalDamageReductionRating"] = { ["Boots"] = { ["max"] = 150, ["min"] = 30, @@ -66722,7 +67137,7 @@ return { ["type"] = "scourge", }, }, - ["1357_LocalEvasionRating"] = { + ["1392_LocalEvasionRating"] = { ["Boots"] = { ["max"] = 150, ["min"] = 30, @@ -66749,7 +67164,7 @@ return { ["type"] = "scourge", }, }, - ["1367_LocalEnergyShield"] = { + ["1402_LocalEnergyShield"] = { ["Boots"] = { ["max"] = 30, ["min"] = 8, @@ -66776,7 +67191,7 @@ return { ["type"] = "scourge", }, }, - ["1373_EnergyShieldRegeneration"] = { + ["1408_EnergyShieldRegeneration"] = { ["Boots"] = { ["max"] = 25, ["min"] = 11, @@ -66802,7 +67217,7 @@ return { ["type"] = "scourge", }, }, - ["1376_EnergyShieldRecoveryRate"] = { + ["1411_EnergyShieldRecoveryRate"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -66816,7 +67231,7 @@ return { ["type"] = "scourge", }, }, - ["1377_IncreasedLife"] = { + ["1412_IncreasedLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -66826,7 +67241,7 @@ return { ["type"] = "scourge", }, }, - ["1379_MaximumLifeIncreasePercent"] = { + ["1414_MaximumLifeIncreasePercent"] = { ["Belt"] = { ["max"] = 8, ["min"] = 5, @@ -66844,21 +67259,7 @@ return { ["type"] = "scourge", }, }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "scourge", - }, - }, - ["1382_LifeRegeneration"] = { + ["1417_LifeRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -66868,7 +67269,7 @@ return { ["type"] = "scourge", }, }, - ["1385_LifeRegenerationRate"] = { + ["1420_LifeRegenerationRate"] = { ["Boots"] = { ["max"] = 15, ["min"] = 7, @@ -66894,7 +67295,7 @@ return { ["type"] = "scourge", }, }, - ["1386_LifeRecoveryRate"] = { + ["1421_LifeRecoveryRate"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -66908,7 +67309,7 @@ return { ["type"] = "scourge", }, }, - ["1387_IncreasedMana"] = { + ["1422_IncreasedMana"] = { ["Amulet"] = { ["max"] = 40, ["min"] = 23, @@ -66930,7 +67331,7 @@ return { ["type"] = "scourge", }, }, - ["1388_MaximumManaIncreasePercent"] = { + ["1423_MaximumManaIncreasePercent"] = { ["Chest"] = { ["max"] = 8, ["min"] = 5, @@ -66948,21 +67349,7 @@ return { ["type"] = "scourge", }, }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "scourge", - }, - }, - ["1390_AddedManaRegeneration"] = { + ["1425_AddedManaRegeneration"] = { ["Helmet"] = { ["max"] = 9.2, ["min"] = 0.8, @@ -66976,7 +67363,7 @@ return { ["type"] = "scourge", }, }, - ["1392_ManaRegeneration"] = { + ["1427_ManaRegeneration"] = { ["1HMace"] = { ["max"] = 45, ["min"] = 18, @@ -67026,7 +67413,7 @@ return { ["type"] = "scourge", }, }, - ["1394_ManaRecoveryRate"] = { + ["1429_ManaRecoveryRate"] = { ["Chest"] = { ["max"] = 10, ["min"] = 5, @@ -67040,7 +67427,7 @@ return { ["type"] = "scourge", }, }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["142_LocalIncreaseSocketedFireGemLevel"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -67049,12 +67436,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", + ["id"] = "scourge.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", ["type"] = "scourge", }, }, - ["1404_ItemFoundRarityIncrease"] = { + ["1439_ItemFoundRarityIncrease"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 8, @@ -67072,7 +67459,7 @@ return { ["type"] = "scourge", }, }, - ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["143_LocalIncreaseSocketedColdGemLevel"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -67081,12 +67468,26 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", + ["id"] = "scourge.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", + ["type"] = "scourge", + }, + }, + ["144_LocalIncreaseSocketedLightningGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", ["type"] = "scourge", }, }, - ["1417_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1452_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -67120,7 +67521,7 @@ return { ["type"] = "scourge", }, }, - ["1418_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["1453_GlobalIncreaseFireSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -67154,7 +67555,7 @@ return { ["type"] = "scourge", }, }, - ["1419_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1454_GlobalIncreaseColdSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -67188,7 +67589,7 @@ return { ["type"] = "scourge", }, }, - ["1420_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1455_GlobalIncreaseLightningSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -67222,7 +67623,7 @@ return { ["type"] = "scourge", }, }, - ["1421_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["1456_GlobalIncreaseChaosSpellSkillGemLevel"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -67256,7 +67657,21 @@ return { ["type"] = "scourge", }, }, - ["1427_AllResistances"] = { + ["145_LocalIncreaseSocketedChaosGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "scourge", + }, + }, + ["1462_AllResistances"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 6, @@ -67278,7 +67693,7 @@ return { ["type"] = "scourge", }, }, - ["1431_MaximumFireResist"] = { + ["1466_MaximumFireResist"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -67292,7 +67707,7 @@ return { ["type"] = "scourge", }, }, - ["1433_FireResistance"] = { + ["1468_FireResistance"] = { ["1HAxe"] = { ["max"] = 35, ["min"] = 18, @@ -67370,7 +67785,7 @@ return { ["type"] = "scourge", }, }, - ["1437_MaximumColdResist"] = { + ["1472_MaximumColdResist"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -67384,7 +67799,7 @@ return { ["type"] = "scourge", }, }, - ["1439_ColdResistance"] = { + ["1474_ColdResistance"] = { ["1HAxe"] = { ["max"] = 35, ["min"] = 18, @@ -67462,21 +67877,7 @@ return { ["type"] = "scourge", }, }, - ["143_IncreaseSocketedDurationGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_2115168758", - ["text"] = "+# to Level of Socketed Duration Gems", - ["type"] = "scourge", - }, - }, - ["1442_MaximumLightningResistance"] = { + ["1477_MaximumLightningResistance"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -67490,7 +67891,7 @@ return { ["type"] = "scourge", }, }, - ["1444_LightningResistance"] = { + ["1479_LightningResistance"] = { ["1HAxe"] = { ["max"] = 35, ["min"] = 18, @@ -67568,7 +67969,7 @@ return { ["type"] = "scourge", }, }, - ["1447_MaximumChaosResistance"] = { + ["1482_MaximumChaosResistance"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -67582,7 +67983,7 @@ return { ["type"] = "scourge", }, }, - ["1448_ChaosResistance"] = { + ["1483_ChaosResistance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 10, @@ -67660,21 +68061,7 @@ return { ["type"] = "scourge", }, }, - ["144_IncreasedSocketedAoEGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "scourge", - }, - }, - ["1450_MaximumElementalResistance"] = { + ["1485_MaximumElementalResistance"] = { ["Shield"] = { ["max"] = 1, ["min"] = 1, @@ -67688,7 +68075,7 @@ return { ["type"] = "scourge", }, }, - ["1452_ChillEffectivenessOnSelf"] = { + ["1487_ChillEffectivenessOnSelf"] = { ["Ring"] = { ["max"] = 40, ["min"] = 31, @@ -67702,7 +68089,7 @@ return { ["type"] = "scourge", }, }, - ["1456_LifeLeechPermyriad"] = { + ["1491_LifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.2, @@ -67728,35 +68115,35 @@ return { ["type"] = "scourge", }, }, - ["145_LocalIncreaseSocketedProjectileGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["1508_PhysicalDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", + ["id"] = "scourge.stat_3764265320", + ["text"] = "#% of Physical Damage Leeched as Life", ["type"] = "scourge", }, }, - ["1473_PhysicalDamageLifeLeechPermyriad"] = { - ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.2, + ["150_IncreaseSocketedDurationGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3764265320", - ["text"] = "#% of Physical Damage Leeched as Life", + ["id"] = "scourge.stat_2115168758", + ["text"] = "+# to Level of Socketed Duration Gems", ["type"] = "scourge", }, }, - ["1477_FireDamageLifeLeechPermyriad"] = { + ["1512_FireDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.2, @@ -67770,35 +68157,35 @@ return { ["type"] = "scourge", }, }, - ["147_LocalIncreaseSocketedMeleeGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["1517_ColdDamageLifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 0.5, + ["min"] = 0.2, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", + ["id"] = "scourge.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", ["type"] = "scourge", }, }, - ["1482_ColdDamageLifeLeechPermyriad"] = { - ["Amulet"] = { - ["max"] = 0.5, - ["min"] = 0.2, + ["151_IncreasedSocketedAoEGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "scourge.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", ["type"] = "scourge", }, }, - ["1486_LightningDamageLifeLeechPermyriad"] = { + ["1521_LightningDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.2, @@ -67812,7 +68199,7 @@ return { ["type"] = "scourge", }, }, - ["1489_ChaosDamageLifeLeechPermyriad"] = { + ["1524_ChaosDamageLifeLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.2, @@ -67826,7 +68213,7 @@ return { ["type"] = "scourge", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["152_LocalIncreaseSocketedProjectileGemLevel"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -67835,26 +68222,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", - ["type"] = "scourge", - }, - }, - ["149_LocalIncreaseSocketedAuraLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", + ["id"] = "scourge.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", ["type"] = "scourge", }, }, - ["1506_ManaLeechPermyriad"] = { + ["1541_ManaLeechPermyriad"] = { ["Amulet"] = { ["max"] = 0.5, ["min"] = 0.2, @@ -67880,7 +68253,7 @@ return { ["type"] = "scourge", }, }, - ["152_IncreaseSocketedCurseGemLevel"] = { + ["154_LocalIncreaseSocketedMeleeGemLevel"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -67889,12 +68262,40 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3691695237", - ["text"] = "+# to Level of Socketed Curse Gems", + ["id"] = "scourge.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "scourge", + }, + }, + ["155_LocalIncreaseSocketedMinionGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", ["type"] = "scourge", }, }, - ["1547_LifeGainPerTarget"] = { + ["156_LocalIncreaseSocketedAuraLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "scourge", + }, + }, + ["1582_LifeGainPerTarget"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 2, @@ -67908,7 +68309,7 @@ return { ["type"] = "scourge", }, }, - ["1551_ManaGainPerTarget"] = { + ["1586_ManaGainPerTarget"] = { ["Gloves"] = { ["max"] = 5, ["min"] = 2, @@ -67922,7 +68323,7 @@ return { ["type"] = "scourge", }, }, - ["1556_MaximumLifeOnKillPercent"] = { + ["1591_MaximumLifeOnKillPercent"] = { ["Chest"] = { ["max"] = 4, ["min"] = 3, @@ -67936,7 +68337,7 @@ return { ["type"] = "scourge", }, }, - ["1557_MaximumEnergyShieldOnKillPercent"] = { + ["1592_MaximumEnergyShieldOnKillPercent"] = { ["Chest"] = { ["max"] = 4, ["min"] = 3, @@ -67950,7 +68351,7 @@ return { ["type"] = "scourge", }, }, - ["1558_MaximumManaOnKillPercent"] = { + ["1593_MaximumManaOnKillPercent"] = { ["Chest"] = { ["max"] = 4, ["min"] = 3, @@ -67964,35 +68365,35 @@ return { ["type"] = "scourge", }, }, - ["155_IncreasedSocketedTrapOrMineGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["1599_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 60, + ["min"] = 31, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_150668988", - ["text"] = "+# to Level of Socketed Trap or Mine Gems", + ["id"] = "scourge.stat_762600725", + ["text"] = "# Life gained when you Block", ["type"] = "scourge", }, }, - ["1564_GainLifeOnBlock"] = { - ["Shield"] = { - ["max"] = 60, - ["min"] = 31, + ["159_IncreaseSocketedCurseGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_762600725", - ["text"] = "# Life gained when you Block", + ["id"] = "scourge.stat_3691695237", + ["text"] = "+# to Level of Socketed Curse Gems", ["type"] = "scourge", }, }, - ["1565_GainManaOnBlock"] = { + ["1600_GainManaOnBlock"] = { ["Shield"] = { ["max"] = 60, ["min"] = 31, @@ -68006,7 +68407,7 @@ return { ["type"] = "scourge", }, }, - ["1566_GainEnergyShieldOnBlock"] = { + ["1601_GainEnergyShieldOnBlock"] = { ["Shield"] = { ["max"] = 60, ["min"] = 31, @@ -68020,7 +68421,7 @@ return { ["type"] = "scourge", }, }, - ["1572_MinionLife"] = { + ["1607_MinionLife"] = { ["Helmet"] = { ["max"] = 15, ["min"] = 10, @@ -68034,21 +68435,7 @@ return { ["type"] = "scourge", }, }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "scourge", - }, - }, - ["1580_IncreasedTotemLife"] = { + ["1615_IncreasedTotemLife"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 7, @@ -68066,7 +68453,7 @@ return { ["type"] = "scourge", }, }, - ["1584_TotemDuration"] = { + ["1619_TotemDuration"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 12, @@ -68084,8 +68471,8 @@ return { ["type"] = "scourge", }, }, - ["1595_AdditionalChain"] = { - ["Quiver"] = { + ["162_IncreasedSocketedTrapOrMineGemLevel"] = { + ["Chest"] = { ["max"] = 1, ["min"] = 1, }, @@ -68093,49 +68480,40 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_1787073323", - ["text"] = "Skills Chain +# times", + ["id"] = "scourge.stat_150668988", + ["text"] = "+# to Level of Socketed Trap or Mine Gems", ["type"] = "scourge", }, }, - ["1596_AdditionalPierce"] = { + ["1630_AdditionalChain"] = { ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_2067062068", - ["text"] = "Projectiles Pierce # additional Targets", + ["id"] = "scourge.stat_1787073323", + ["text"] = "Skills Chain +# times", ["type"] = "scourge", }, }, - ["1599_AdditionalArrows"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["1631_AdditionalPierce"] = { ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 2, + ["min"] = 2, }, ["sign"] = "", ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "scourge.stat_742529963", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "scourge.stat_2067062068", + ["text"] = "Projectiles Pierce # additional Targets", ["type"] = "scourge", }, }, - ["1602_ProjectileSpeed"] = { + ["1637_ProjectileSpeed"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 14, @@ -68149,7 +68527,7 @@ return { ["type"] = "scourge", }, }, - ["1604_MovementVelocity"] = { + ["1639_MovementVelocity"] = { ["Boots"] = { ["max"] = 15, ["min"] = 8, @@ -68163,7 +68541,7 @@ return { ["type"] = "scourge", }, }, - ["1609_MinimumEnduranceCharges"] = { + ["1644_MinimumEnduranceCharges"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -68177,8 +68555,8 @@ return { ["type"] = "scourge", }, }, - ["160_LocalSocketedWarcryGemLevel"] = { - ["Chest"] = { + ["1649_MinimumFrenzyCharges"] = { + ["Ring"] = { ["max"] = 1, ["min"] = 1, }, @@ -68186,13 +68564,13 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_1672793731", - ["text"] = "+# to Level of Socketed Warcry Gems", + ["id"] = "scourge.stat_658456881", + ["text"] = "+# to Minimum Frenzy Charges", ["type"] = "scourge", }, }, - ["1614_MinimumFrenzyCharges"] = { - ["Ring"] = { + ["164_LocalIncreaseSocketedSupportGemLevel"] = { + ["Chest"] = { ["max"] = 1, ["min"] = 1, }, @@ -68200,12 +68578,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_658456881", - ["text"] = "+# to Minimum Frenzy Charges", + ["id"] = "scourge.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", ["type"] = "scourge", }, }, - ["1619_MinimumPowerCharges"] = { + ["1654_MinimumPowerCharges"] = { ["Ring"] = { ["max"] = 1, ["min"] = 1, @@ -68219,7 +68597,7 @@ return { ["type"] = "scourge", }, }, - ["1644_CannotBeFrozen"] = { + ["1679_CannotBeFrozen"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -68232,7 +68610,21 @@ return { ["type"] = "scourge", }, }, - ["1649_AvoidElementalStatusAilments"] = { + ["167_LocalSocketedWarcryGemLevel"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1672793731", + ["text"] = "+# to Level of Socketed Warcry Gems", + ["type"] = "scourge", + }, + }, + ["1684_AvoidElementalStatusAilments"] = { ["Shield"] = { ["max"] = 25, ["min"] = 17, @@ -68246,7 +68638,7 @@ return { ["type"] = "scourge", }, }, - ["1650_ChanceToAvoidFreezeAndChill"] = { + ["1685_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -68260,7 +68652,7 @@ return { ["type"] = "scourge", }, }, - ["1651_ChanceToAvoidFreezeAndChill"] = { + ["1686_ChanceToAvoidFreezeAndChill"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -68274,7 +68666,7 @@ return { ["type"] = "scourge", }, }, - ["1652_AvoidIgnite"] = { + ["1687_AvoidIgnite"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -68288,7 +68680,7 @@ return { ["type"] = "scourge", }, }, - ["1654_AvoidShock"] = { + ["1689_AvoidShock"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -68302,7 +68694,7 @@ return { ["type"] = "scourge", }, }, - ["1655_ChanceToAvoidPoison"] = { + ["1690_ChanceToAvoidPoison"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -68316,7 +68708,7 @@ return { ["type"] = "scourge", }, }, - ["1657_AvoidStun"] = { + ["1692_AvoidStun"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 17, @@ -68334,7 +68726,7 @@ return { ["type"] = "scourge", }, }, - ["1666_IncreasedAilmentDuration"] = { + ["1701_IncreasedAilmentDuration"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 7, @@ -68348,7 +68740,7 @@ return { ["type"] = "scourge", }, }, - ["1669_StunDurationIncreasePercent"] = { + ["1704_StunDurationIncreasePercent"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 17, @@ -68418,7 +68810,7 @@ return { ["type"] = "scourge", }, }, - ["1673_SelfStatusAilmentDuration"] = { + ["1708_SelfStatusAilmentDuration"] = { ["Boots"] = { ["max"] = 25, ["min"] = 17, @@ -68432,7 +68824,7 @@ return { ["type"] = "scourge", }, }, - ["1680_ReducedFreezeDuration"] = { + ["1715_ReducedFreezeDuration"] = { ["Helmet"] = { ["max"] = 40, ["min"] = 31, @@ -68446,7 +68838,7 @@ return { ["type"] = "scourge", }, }, - ["1681_ReducedBurnDuration"] = { + ["1716_ReducedBurnDuration"] = { ["Ring"] = { ["max"] = 40, ["min"] = 31, @@ -68460,7 +68852,7 @@ return { ["type"] = "scourge", }, }, - ["1686_AreaOfEffect"] = { + ["1721_AreaOfEffect"] = { ["Amulet"] = { ["max"] = 13, ["min"] = 10, @@ -68474,73 +68866,7 @@ return { ["type"] = "scourge", }, }, - ["169_IncreaseSocketedSupportGemQuality"] = { - ["1HAxe"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["1HMace"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["1HSword"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["2HAxe"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["2HMace"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["2HSword"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Bow"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Claw"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Dagger"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Shield"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Staff"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["Wand"] = { - ["max"] = 12, - ["min"] = 9, - }, - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "scourge.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "scourge", - }, - }, - ["1706_StunRecovery"] = { + ["1741_StunRecovery"] = { ["Belt"] = { ["max"] = 15, ["min"] = 10, @@ -68554,7 +68880,7 @@ return { ["type"] = "scourge", }, }, - ["1731_TrapThrowSpeed"] = { + ["1766_TrapThrowSpeed"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 7, @@ -68568,7 +68894,7 @@ return { ["type"] = "scourge", }, }, - ["1732_MineLayingSpeed"] = { + ["1767_MineLayingSpeed"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 7, @@ -68582,7 +68908,7 @@ return { ["type"] = "scourge", }, }, - ["1759_ConvertPhysicalToFire"] = { + ["1794_ConvertPhysicalToFire"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 25, @@ -68596,7 +68922,7 @@ return { ["type"] = "scourge", }, }, - ["1761_ConvertPhysicalToCold"] = { + ["1796_ConvertPhysicalToCold"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 25, @@ -68610,7 +68936,7 @@ return { ["type"] = "scourge", }, }, - ["1763_ConvertPhysicalToLightning"] = { + ["1798_ConvertPhysicalToLightning"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 25, @@ -68624,7 +68950,73 @@ return { ["type"] = "scourge", }, }, - ["1766_PhysicalDamageConvertedToChaos"] = { + ["179_IncreaseSocketedSupportGemQuality"] = { + ["1HAxe"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["1HMace"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["1HSword"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["2HAxe"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["2HMace"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["2HSword"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Claw"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Dagger"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 9, + }, + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "scourge.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", + ["type"] = "scourge", + }, + }, + ["1801_PhysicalDamageConvertedToChaos"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 25, @@ -68638,7 +69030,7 @@ return { ["type"] = "scourge", }, }, - ["1777_MinionDamage"] = { + ["1812_MinionDamage"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 8, @@ -68652,7 +69044,7 @@ return { ["type"] = "scourge", }, }, - ["1782_ElementalDamagePercent"] = { + ["1817_ElementalDamagePercent"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 23, @@ -68686,7 +69078,7 @@ return { ["type"] = "scourge", }, }, - ["1796_GlobalKnockbackChance"] = { + ["1831_GlobalKnockbackChance"] = { ["Gloves"] = { ["max"] = 30, ["min"] = 16, @@ -68700,7 +69092,7 @@ return { ["type"] = "scourge", }, }, - ["1797_ProjectileDamage"] = { + ["1832_ProjectileDamage"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 8, @@ -68714,7 +69106,7 @@ return { ["type"] = "scourge", }, }, - ["1827_ChanceToIgnite"] = { + ["1862_ChanceToIgnite"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -68744,7 +69136,7 @@ return { ["type"] = "scourge", }, }, - ["1830_ChanceToFreeze"] = { + ["1865_ChanceToFreeze"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -68774,7 +69166,7 @@ return { ["type"] = "scourge", }, }, - ["1834_ChanceToShock"] = { + ["1869_ChanceToShock"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 5, @@ -68804,7 +69196,7 @@ return { ["type"] = "scourge", }, }, - ["1836_AreaDamage"] = { + ["1871_AreaDamage"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 11, @@ -68818,7 +69210,7 @@ return { ["type"] = "scourge", }, }, - ["1840_CullingStrike"] = { + ["1875_CullingStrike"] = { ["1HAxe"] = { ["max"] = 1, ["min"] = 1, @@ -68879,7 +69271,7 @@ return { ["type"] = "scourge", }, }, - ["1962_MaximumZombieCount"] = { + ["1997_MaximumZombieCount"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -68888,12 +69280,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_1652515349", + ["id"] = "scourge.stat_966747987", ["text"] = "+# to maximum number of Raised Zombies", ["type"] = "scourge", }, }, - ["1964_MaximumSkeletonCount"] = { + ["1999_MaximumSkeletonCount"] = { ["Boots"] = { ["max"] = 1, ["min"] = 1, @@ -68902,12 +69294,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_2428829184", + ["id"] = "scourge.stat_1225383362", ["text"] = "+# to maximum number of Skeletons", ["type"] = "scourge", }, }, - ["1972_ReducedCurseEffect"] = { + ["2007_ReducedCurseEffect"] = { ["Ring"] = { ["max"] = 25, ["min"] = 16, @@ -68921,7 +69313,7 @@ return { ["type"] = "scourge", }, }, - ["1977_GainManaAsExtraEnergyShield"] = { + ["2012_GainManaAsExtraEnergyShield"] = { ["Shield"] = { ["max"] = 6, ["min"] = 5, @@ -68935,7 +69327,7 @@ return { ["type"] = "scourge", }, }, - ["1984_BeltIncreasedFlaskChargesGained"] = { + ["2020_BeltIncreasedFlaskChargesGained"] = { ["Belt"] = { ["max"] = 25, ["min"] = 13, @@ -68949,7 +69341,7 @@ return { ["type"] = "scourge", }, }, - ["1990_BeltFlaskLifeRecoveryRate"] = { + ["2026_BeltFlaskLifeRecoveryRate"] = { ["Belt"] = { ["max"] = 20, ["min"] = 12, @@ -68963,7 +69355,7 @@ return { ["type"] = "scourge", }, }, - ["1991_BeltFlaskManaRecoveryRate"] = { + ["2027_BeltFlaskManaRecoveryRate"] = { ["Belt"] = { ["max"] = 20, ["min"] = 12, @@ -68977,7 +69369,7 @@ return { ["type"] = "scourge", }, }, - ["2003_AttackerTakesDamageNoRange"] = { + ["2039_AttackerTakesDamageNoRange"] = { ["Belt"] = { ["max"] = 100, ["min"] = 20, @@ -69003,7 +69395,7 @@ return { ["type"] = "scourge", }, }, - ["2032_ReducedReservation"] = { + ["2068_ReducedReservation"] = { ["Amulet"] = { ["max"] = 12, ["min"] = 6, @@ -69017,7 +69409,7 @@ return { ["type"] = "scourge", }, }, - ["2238_PhysicalDamageTakenAsFirePercent"] = { + ["2280_PhysicalDamageTakenAsFirePercent"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 4, @@ -69031,7 +69423,7 @@ return { ["type"] = "scourge", }, }, - ["2239_PhysicalDamageTakenAsCold"] = { + ["2281_PhysicalDamageTakenAsCold"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 4, @@ -69045,7 +69437,7 @@ return { ["type"] = "scourge", }, }, - ["2240_PhysicalDamageTakenAsLightningPercent"] = { + ["2282_PhysicalDamageTakenAsLightningPercent"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 4, @@ -69059,7 +69451,7 @@ return { ["type"] = "scourge", }, }, - ["2242_PhysicalDamageTakenAsChaos"] = { + ["2284_PhysicalDamageTakenAsChaos"] = { ["Helmet"] = { ["max"] = 5, ["min"] = 4, @@ -69073,7 +69465,7 @@ return { ["type"] = "scourge", }, }, - ["2249_AdditionalBlock"] = { + ["2291_AdditionalBlock"] = { ["Shield"] = { ["max"] = 9, ["min"] = 2, @@ -69087,7 +69479,7 @@ return { ["type"] = "scourge", }, }, - ["2280_ChanceToBleed"] = { + ["2322_ChanceToBleed"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 12, @@ -69101,7 +69493,7 @@ return { ["type"] = "scourge", }, }, - ["2291_LightRadius"] = { + ["2333_LightRadius"] = { ["Helmet"] = { ["max"] = 35, ["min"] = 16, @@ -69115,7 +69507,7 @@ return { ["type"] = "scourge", }, }, - ["2308_FlammabilityOnHit"] = { + ["2350_FlammabilityOnHit"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -69128,7 +69520,7 @@ return { ["type"] = "scourge", }, }, - ["2310_TemporalChainsOnHit"] = { + ["2352_TemporalChainsOnHit"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -69141,7 +69533,7 @@ return { ["type"] = "scourge", }, }, - ["2355_FasterIgniteDamage"] = { + ["2397_FasterIgniteDamage"] = { ["1HMace"] = { ["max"] = 9, ["min"] = 4, @@ -69171,7 +69563,7 @@ return { ["type"] = "scourge", }, }, - ["2369_SummonTotemCastSpeed"] = { + ["2411_SummonTotemCastSpeed"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 16, @@ -69189,7 +69581,7 @@ return { ["type"] = "scourge", }, }, - ["2387_CurseEffectiveness"] = { + ["2429_CurseEffectiveness"] = { ["Shield"] = { ["max"] = 12, ["min"] = 9, @@ -69203,7 +69595,7 @@ return { ["type"] = "scourge", }, }, - ["2414_EnduranceChargeOnKillChance"] = { + ["2460_EnduranceChargeOnKillChance"] = { ["Ring"] = { ["max"] = 12, ["min"] = 5, @@ -69217,7 +69609,7 @@ return { ["type"] = "scourge", }, }, - ["2416_FrenzyChargeOnKillChance"] = { + ["2462_FrenzyChargeOnKillChance"] = { ["Ring"] = { ["max"] = 12, ["min"] = 5, @@ -69231,7 +69623,7 @@ return { ["type"] = "scourge", }, }, - ["2418_PowerChargeOnKillChance"] = { + ["2464_PowerChargeOnKillChance"] = { ["Ring"] = { ["max"] = 12, ["min"] = 5, @@ -69245,7 +69637,7 @@ return { ["type"] = "scourge", }, }, - ["2530_LocalMeleeWeaponRange"] = { + ["2576_LocalMeleeWeaponRange"] = { ["1HAxe"] = { ["max"] = 0.4, ["min"] = 0.1, @@ -69307,7 +69699,7 @@ return { ["type"] = "scourge", }, }, - ["2572_TotemElementalResistances"] = { + ["2618_TotemElementalResistances"] = { ["Amulet"] = { ["max"] = 35, ["min"] = 21, @@ -69325,7 +69717,7 @@ return { ["type"] = "scourge", }, }, - ["2574_TotemPhysicalDamageReduction"] = { + ["2620_TotemPhysicalDamageReduction"] = { ["Amulet"] = { ["max"] = 25, ["min"] = 11, @@ -69343,7 +69735,7 @@ return { ["type"] = "scourge", }, }, - ["2608_ReturningAttackProjectiles"] = { + ["2654_ReturningAttackProjectiles"] = { ["Quiver"] = { ["max"] = 1, ["min"] = 1, @@ -69356,7 +69748,7 @@ return { ["type"] = "scourge", }, }, - ["2611_OnslaughtWhenHitForDuration"] = { + ["2657_OnslaughtWhenHitForDuration"] = { ["Chest"] = { ["max"] = 4, ["min"] = 2, @@ -69370,7 +69762,7 @@ return { ["type"] = "scourge", }, }, - ["2631_FishingCastDistance"] = { + ["2677_FishingCastDistance"] = { ["FishingRod"] = { ["max"] = 16, ["min"] = 13, @@ -69384,7 +69776,7 @@ return { ["type"] = "scourge", }, }, - ["2633_FishingRarity"] = { + ["2679_FishingRarity"] = { ["FishingRod"] = { ["max"] = 25, ["min"] = 20, @@ -69398,7 +69790,7 @@ return { ["type"] = "scourge", }, }, - ["2687_MinionBlockChance"] = { + ["2733_MinionBlockChance"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 11, @@ -69412,7 +69804,7 @@ return { ["type"] = "scourge", }, }, - ["2688_MinionSpellBlockChance"] = { + ["2734_MinionSpellBlockChance"] = { ["Helmet"] = { ["max"] = 19, ["min"] = 11, @@ -69426,7 +69818,7 @@ return { ["type"] = "scourge", }, }, - ["2691_MinionAttackAndCastSpeed"] = { + ["2737_MinionAttackAndCastSpeed"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 5, @@ -69440,7 +69832,7 @@ return { ["type"] = "scourge", }, }, - ["2692_MinionAttackAndCastSpeed"] = { + ["2738_MinionAttackAndCastSpeed"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 5, @@ -69454,7 +69846,7 @@ return { ["type"] = "scourge", }, }, - ["2694_MinionLifeLeech"] = { + ["2740_MinionLifeLeech"] = { ["Helmet"] = { ["max"] = 0.7, ["min"] = 0.2, @@ -69468,7 +69860,7 @@ return { ["type"] = "scourge", }, }, - ["2695_MinionLifeRegeneration"] = { + ["2741_MinionLifeRegeneration"] = { ["Helmet"] = { ["max"] = 3.5, ["min"] = 2, @@ -69482,7 +69874,7 @@ return { ["type"] = "scourge", }, }, - ["2696_MinionElementalResistance"] = { + ["2742_MinionElementalResistance"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 10, @@ -69496,7 +69888,7 @@ return { ["type"] = "scourge", }, }, - ["2697_MinionChaosResistance"] = { + ["2743_MinionChaosResistance"] = { ["Gloves"] = { ["max"] = 25, ["min"] = 14, @@ -69510,7 +69902,7 @@ return { ["type"] = "scourge", }, }, - ["2740_GlobalChanceToBlindOnHit"] = { + ["2786_GlobalChanceToBlindOnHit"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 7, @@ -69528,7 +69920,7 @@ return { ["type"] = "scourge", }, }, - ["2763_FireResistancePenetration"] = { + ["2809_FireResistancePenetration"] = { ["1HMace"] = { ["max"] = 5, ["min"] = 3, @@ -69566,7 +69958,7 @@ return { ["type"] = "scourge", }, }, - ["2764_ColdResistancePenetration"] = { + ["2810_ColdResistancePenetration"] = { ["1HMace"] = { ["max"] = 5, ["min"] = 3, @@ -69604,7 +69996,7 @@ return { ["type"] = "scourge", }, }, - ["2765_LightningResistancePenetration"] = { + ["2811_LightningResistancePenetration"] = { ["1HMace"] = { ["max"] = 5, ["min"] = 3, @@ -69642,7 +70034,7 @@ return { ["type"] = "scourge", }, }, - ["2774_ChanceToGainOnslaughtOnKill"] = { + ["2820_ChanceToGainOnslaughtOnKill"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -69660,7 +70052,7 @@ return { ["type"] = "scourge", }, }, - ["2949_PoisonOnHit"] = { + ["2995_PoisonOnHit"] = { ["Gloves"] = { ["max"] = 20, ["min"] = 12, @@ -69674,7 +70066,7 @@ return { ["type"] = "scourge", }, }, - ["2971_CannotBeSlowedBelowValue"] = { + ["3017_CannotBeSlowedBelowValue"] = { ["Boots"] = { ["max"] = 79, ["min"] = 70, @@ -69688,7 +70080,7 @@ return { ["type"] = "scourge", }, }, - ["3055_WarcrySpeed"] = { + ["3101_WarcrySpeed"] = { ["Amulet"] = { ["max"] = 30, ["min"] = 16, @@ -69702,7 +70094,7 @@ return { ["type"] = "scourge", }, }, - ["3082_EnemiesExplodeOnDeathPhysicalChance"] = { + ["3128_EnemiesExplodeOnDeathPhysicalChance"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -69716,7 +70108,7 @@ return { ["type"] = "scourge", }, }, - ["3154_UnholyMightOnKillPercentChance"] = { + ["3200_UnholyMightOnKillPercentChance"] = { ["1HWeapon"] = { ["max"] = 7, ["min"] = 5, @@ -69746,7 +70138,7 @@ return { ["type"] = "scourge", }, }, - ["3208_MinionAttacksTauntOnHitChance"] = { + ["3254_MinionAttacksTauntOnHitChance"] = { ["Belt"] = { ["max"] = 19, ["min"] = 11, @@ -69760,7 +70152,7 @@ return { ["type"] = "scourge", }, }, - ["3239_ChancetoGainPhasingOnKill"] = { + ["3285_ChancetoGainPhasingOnKill"] = { ["Quiver"] = { ["max"] = 25, ["min"] = 11, @@ -69774,7 +70166,7 @@ return { ["type"] = "scourge", }, }, - ["3332_BasePenetrateElementalResistances"] = { + ["3378_BasePenetrateElementalResistances"] = { ["Amulet"] = { ["max"] = 5, ["min"] = 3, @@ -69788,7 +70180,7 @@ return { ["type"] = "scourge", }, }, - ["3339_AuraEffect"] = { + ["3385_AuraEffect"] = { ["Chest"] = { ["max"] = 12, ["min"] = 7, @@ -69802,7 +70194,7 @@ return { ["type"] = "scourge", }, }, - ["3557_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { + ["3603_BaseMaximumLifeInflictedAsAoeFireDamageWhenHit"] = { ["Chest"] = { ["max"] = 19, ["min"] = 8, @@ -69816,7 +70208,7 @@ return { ["type"] = "scourge", }, }, - ["357_DisplaySocketedGemsGetAddedChaosDamage"] = { + ["367_DisplaySocketedGemsGetAddedChaosDamage"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 1, @@ -69830,7 +70222,7 @@ return { ["type"] = "scourge", }, }, - ["365_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { + ["376_DisplaySocketedGemGetsAddedLightningDamageLevel"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 1, @@ -69844,7 +70236,7 @@ return { ["type"] = "scourge", }, }, - ["3983_ChanceToAvoidBleeding"] = { + ["4029_ChanceToAvoidBleeding"] = { ["Ring"] = { ["max"] = 40, ["min"] = 26, @@ -69858,7 +70250,7 @@ return { ["type"] = "scourge", }, }, - ["3997_FlaskChanceToNotConsumeCharges"] = { + ["4043_FlaskChanceToNotConsumeCharges"] = { ["Belt"] = { ["max"] = 8, ["min"] = 5, @@ -69872,7 +70264,7 @@ return { ["type"] = "scourge", }, }, - ["402_DisplaySupportedByAddedColdDamage"] = { + ["425_DisplaySupportedByAddedColdDamage"] = { ["Gloves"] = { ["max"] = 22, ["min"] = 1, @@ -69886,7 +70278,7 @@ return { ["type"] = "scourge", }, }, - ["4533_AttacksTauntOnHitChance"] = { + ["4588_AttacksTauntOnHitChance"] = { ["1HAxe"] = { ["max"] = 25, ["min"] = 11, @@ -69912,7 +70304,7 @@ return { ["type"] = "scourge", }, }, - ["4535_MonsterImpaleOnHit"] = { + ["4590_MonsterImpaleOnHit"] = { ["Gloves"] = { ["max"] = 12, ["min"] = 7, @@ -69926,7 +70318,7 @@ return { ["type"] = "scourge", }, }, - ["4591_BaseChanceToDealTripleDamage"] = { + ["4650_BaseChanceToDealTripleDamage"] = { ["1HAxe"] = { ["max"] = 5, ["min"] = 3, @@ -69988,7 +70380,7 @@ return { ["type"] = "scourge", }, }, - ["4595_GlobalCooldownRecovery"] = { + ["4654_GlobalCooldownRecovery"] = { ["Belt"] = { ["max"] = 6, ["min"] = 3, @@ -70002,7 +70394,7 @@ return { ["type"] = "scourge", }, }, - ["4612_ColdExposureOnHit"] = { + ["4671_ColdExposureOnHit"] = { ["1HMace"] = { ["max"] = 12, ["min"] = 7, @@ -70036,7 +70428,7 @@ return { ["type"] = "scourge", }, }, - ["4613_FireExposureOnHit"] = { + ["4672_FireExposureOnHit"] = { ["1HMace"] = { ["max"] = 12, ["min"] = 7, @@ -70070,7 +70462,7 @@ return { ["type"] = "scourge", }, }, - ["4614_LightningExposureOnHit"] = { + ["4673_LightningExposureOnHit"] = { ["1HMace"] = { ["max"] = 12, ["min"] = 7, @@ -70104,7 +70496,7 @@ return { ["type"] = "scourge", }, }, - ["4797_BlindEnemiesWhenHit"] = { + ["4857_BlindEnemiesWhenHit"] = { ["Boots"] = { ["max"] = 40, ["min"] = 11, @@ -70118,7 +70510,7 @@ return { ["type"] = "scourge", }, }, - ["4907_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { + ["4961_CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks"] = { ["Amulet"] = { ["max"] = 1, ["min"] = 1, @@ -70131,7 +70523,7 @@ return { ["type"] = "scourge", }, }, - ["5135_ChanceToIntimidateOnHit"] = { + ["5188_ChanceToIntimidateOnHit"] = { ["Belt"] = { ["max"] = 12, ["min"] = 7, @@ -70145,7 +70537,7 @@ return { ["type"] = "scourge", }, }, - ["5143_ChanceToUnnerveOnHit"] = { + ["5196_ChanceToUnnerveOnHit"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 7, @@ -70159,7 +70551,7 @@ return { ["type"] = "scourge", }, }, - ["5179_ChanceToChillAttackersOnBlock"] = { + ["5233_ChanceToChillAttackersOnBlock"] = { ["Shield"] = { ["max"] = 25, ["min"] = 14, @@ -70173,7 +70565,7 @@ return { ["type"] = "scourge", }, }, - ["5491_DamageTakenGainedAsLife"] = { + ["5548_DamageTakenGainedAsLife"] = { ["Helmet"] = { ["max"] = 12, ["min"] = 7, @@ -70187,7 +70579,7 @@ return { ["type"] = "scourge", }, }, - ["5515_DaytimeFishSize"] = { + ["5572_DaytimeFishSize"] = { ["FishingRod"] = { ["max"] = 30, ["min"] = 10, @@ -70201,7 +70593,7 @@ return { ["type"] = "scourge", }, }, - ["5685_IncreasedWeaponElementalDamagePercent"] = { + ["5745_IncreasedWeaponElementalDamagePercent"] = { ["Amulet"] = { ["max"] = 24, ["min"] = 8, @@ -70227,7 +70619,7 @@ return { ["type"] = "scourge", }, }, - ["5697_ReducedElementalReflectTaken"] = { + ["5758_ReducedElementalReflectTaken"] = { ["Chest"] = { ["max"] = 60, ["min"] = 41, @@ -70241,7 +70633,7 @@ return { ["type"] = "scourge", }, }, - ["5711_ElusiveEffect"] = { + ["5773_ElusiveEffect"] = { ["Boots"] = { ["max"] = 20, ["min"] = 12, @@ -70255,7 +70647,7 @@ return { ["type"] = "scourge", }, }, - ["5873_FasterBleedDamage"] = { + ["5937_FasterBleedDamage"] = { ["1HAxe"] = { ["max"] = 13, ["min"] = 4, @@ -70301,7 +70693,7 @@ return { ["type"] = "scourge", }, }, - ["5874_FasterPoisonDamage"] = { + ["5938_FasterPoisonDamage"] = { ["1HSword"] = { ["max"] = 13, ["min"] = 4, @@ -70335,7 +70727,7 @@ return { ["type"] = "scourge", }, }, - ["6175_GuardSkillCooldownRecovery"] = { + ["6245_GuardSkillCooldownRecovery"] = { ["Belt"] = { ["max"] = 19, ["min"] = 14, @@ -70349,7 +70741,7 @@ return { ["type"] = "scourge", }, }, - ["6472_ImpaleEffect"] = { + ["6545_ImpaleEffect"] = { ["1HAxe"] = { ["max"] = 18, ["min"] = 7, @@ -70403,7 +70795,7 @@ return { ["type"] = "scourge", }, }, - ["6557_LifeFlaskPassiveChargeGain"] = { + ["6630_LifeFlaskPassiveChargeGain"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -70417,7 +70809,7 @@ return { ["type"] = "scourge", }, }, - ["7098_NearbyEnemyChaosDamageResistance"] = { + ["7173_NearbyEnemyChaosDamageResistance"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -70431,7 +70823,7 @@ return { ["type"] = "scourge", }, }, - ["7099_NearbyEnemyColdDamageResistance"] = { + ["7174_NearbyEnemyColdDamageResistance"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -70445,7 +70837,7 @@ return { ["type"] = "scourge", }, }, - ["7101_NearbyEnemyFireDamageResistance"] = { + ["7176_NearbyEnemyFireDamageResistance"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -70459,7 +70851,7 @@ return { ["type"] = "scourge", }, }, - ["7103_NearbyEnemyLightningDamageResistance"] = { + ["7178_NearbyEnemyLightningDamageResistance"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -70473,7 +70865,7 @@ return { ["type"] = "scourge", }, }, - ["7105_NearbyEnemyPhysicalDamageTaken"] = { + ["7180_NearbyEnemyPhysicalDamageTaken"] = { ["Helmet"] = { ["max"] = 4, ["min"] = 3, @@ -70487,7 +70879,7 @@ return { ["type"] = "scourge", }, }, - ["7282_GlobalMaimOnHit"] = { + ["7362_GlobalMaimOnHit"] = { ["Quiver"] = { ["max"] = 12, ["min"] = 7, @@ -70501,7 +70893,7 @@ return { ["type"] = "scourge", }, }, - ["7301_ManaFlaskPassiveChargeGain"] = { + ["7381_ManaFlaskPassiveChargeGain"] = { ["Belt"] = { ["max"] = 1, ["min"] = 1, @@ -70515,7 +70907,7 @@ return { ["type"] = "scourge", }, }, - ["8315_IncreasedAilmentEffectOnEnemies"] = { + ["8490_IncreasedAilmentEffectOnEnemies"] = { ["Boots"] = { ["max"] = 18, ["min"] = 10, @@ -70529,7 +70921,7 @@ return { ["type"] = "scourge", }, }, - ["8452_ReducedPhysicalReflectTaken"] = { + ["8635_ReducedPhysicalReflectTaken"] = { ["Chest"] = { ["max"] = 60, ["min"] = 41, @@ -70543,7 +70935,7 @@ return { ["type"] = "scourge", }, }, - ["8516_ProjectilesSplitCount"] = { + ["8700_ProjectilesSplitCount"] = { ["Quiver"] = { ["max"] = 1, ["min"] = 1, @@ -70557,7 +70949,7 @@ return { ["type"] = "scourge", }, }, - ["8629_ChaosResistancePenetration"] = { + ["8813_ChaosResistancePenetration"] = { ["1HMace"] = { ["max"] = 5, ["min"] = 3, @@ -70595,7 +70987,7 @@ return { ["type"] = "scourge", }, }, - ["8733_ChanceToShockAttackersOnBlock"] = { + ["8919_ChanceToShockAttackersOnBlock"] = { ["Shield"] = { ["max"] = 25, ["min"] = 14, @@ -70609,7 +71001,7 @@ return { ["type"] = "scourge", }, }, - ["8747_ReducedShockEffectOnSelf"] = { + ["8933_ReducedShockEffectOnSelf"] = { ["Ring"] = { ["max"] = 40, ["min"] = 31, @@ -70623,7 +71015,7 @@ return { ["type"] = "scourge", }, }, - ["8766_BrandDuration"] = { + ["8952_BrandDuration"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 12, @@ -70641,7 +71033,7 @@ return { ["type"] = "scourge", }, }, - ["8771_BrandAttachmentRange"] = { + ["8957_BrandAttachmentRange"] = { ["Amulet"] = { ["max"] = 20, ["min"] = 12, @@ -70659,7 +71051,7 @@ return { ["type"] = "scourge", }, }, - ["8895_SpellsHinderOnHitChance"] = { + ["9082_SpellsHinderOnHitChance"] = { ["Chest"] = { ["max"] = 12, ["min"] = 7, @@ -70673,7 +71065,7 @@ return { ["type"] = "scourge", }, }, - ["8957_StrengthAppliesToFishingReelSpeed"] = { + ["9145_StrengthAppliesToFishingReelSpeed"] = { ["FishingRod"] = { ["max"] = 1, ["min"] = 1, @@ -70686,7 +71078,7 @@ return { ["type"] = "scourge", }, }, - ["898_LocalAttributeRequirements"] = { + ["930_LocalAttributeRequirements"] = { ["1HAxe"] = { ["max"] = -12, ["min"] = -20, @@ -70768,7 +71160,7 @@ return { ["type"] = "scourge", }, }, - ["9370_Acrobatics"] = { + ["9561_Acrobatics"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70781,7 +71173,7 @@ return { ["type"] = "scourge", }, }, - ["9371_PerfectAgony"] = { + ["9562_PerfectAgony"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70794,7 +71186,7 @@ return { ["type"] = "scourge", }, }, - ["9372_AncestralBond"] = { + ["9563_AncestralBond"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70807,7 +71199,7 @@ return { ["type"] = "scourge", }, }, - ["9373_AvatarOfFire"] = { + ["9564_AvatarOfFire"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70820,7 +71212,7 @@ return { ["type"] = "scourge", }, }, - ["9375_BloodMagic"] = { + ["9566_BloodMagic"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70833,7 +71225,7 @@ return { ["type"] = "scourge", }, }, - ["9376_CallToArms"] = { + ["9567_CallToArms"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70846,7 +71238,7 @@ return { ["type"] = "scourge", }, }, - ["9378_Conduit"] = { + ["9569_Conduit"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70859,7 +71251,7 @@ return { ["type"] = "scourge", }, }, - ["9380_CrimsonDance"] = { + ["9571_CrimsonDance"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70872,7 +71264,7 @@ return { ["type"] = "scourge", }, }, - ["9382_DivineShield"] = { + ["9573_DivineShield"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70885,7 +71277,7 @@ return { ["type"] = "scourge", }, }, - ["9383_EldritchBattery"] = { + ["9574_EldritchBattery"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70898,7 +71290,7 @@ return { ["type"] = "scourge", }, }, - ["9384_ElementalEquilibrium"] = { + ["9575_ElementalEquilibrium"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70911,7 +71303,7 @@ return { ["type"] = "scourge", }, }, - ["9385_ElementalOverload"] = { + ["9576_ElementalOverload"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70924,7 +71316,7 @@ return { ["type"] = "scourge", }, }, - ["9387_EternalYouth"] = { + ["9578_EternalYouth"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70937,7 +71329,7 @@ return { ["type"] = "scourge", }, }, - ["9389_GhostDance"] = { + ["9580_GhostDance"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70950,7 +71342,7 @@ return { ["type"] = "scourge", }, }, - ["9390_KeystoneGhostReaver"] = { + ["9581_KeystoneGhostReaver"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70963,7 +71355,7 @@ return { ["type"] = "scourge", }, }, - ["9391_GlancingBlows"] = { + ["9582_GlancingBlows"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70976,7 +71368,7 @@ return { ["type"] = "scourge", }, }, - ["9392_HexMaster"] = { + ["9583_HexMaster"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -70989,7 +71381,7 @@ return { ["type"] = "scourge", }, }, - ["9394_Impaler"] = { + ["9585_Impaler"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71002,7 +71394,7 @@ return { ["type"] = "scourge", }, }, - ["9395_IronReflexes"] = { + ["9586_IronReflexes"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71015,7 +71407,7 @@ return { ["type"] = "scourge", }, }, - ["9396_LetheShade"] = { + ["9587_LetheShade"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71028,7 +71420,7 @@ return { ["type"] = "scourge", }, }, - ["9397_Magebane"] = { + ["9588_Magebane"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71041,7 +71433,7 @@ return { ["type"] = "scourge", }, }, - ["9398_ManaShield"] = { + ["9589_ManaShield"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71054,7 +71446,7 @@ return { ["type"] = "scourge", }, }, - ["9399_MinionInstability"] = { + ["9590_MinionInstability"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71067,7 +71459,7 @@ return { ["type"] = "scourge", }, }, - ["9400_TheAgnostic"] = { + ["9591_TheAgnostic"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71080,7 +71472,7 @@ return { ["type"] = "scourge", }, }, - ["9401_PainAttunement"] = { + ["9592_PainAttunement"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71093,7 +71485,7 @@ return { ["type"] = "scourge", }, }, - ["9402_PointBlank"] = { + ["9593_PointBlank"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71106,7 +71498,7 @@ return { ["type"] = "scourge", }, }, - ["9404_MonsterNemesisOndarsGuile"] = { + ["9595_MonsterNemesisOndarsGuile"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71119,7 +71511,7 @@ return { ["type"] = "scourge", }, }, - ["9406_ZealotsOath"] = { + ["9597_ZealotsOath"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71132,7 +71524,7 @@ return { ["type"] = "scourge", }, }, - ["9407_Runebinder"] = { + ["9598_Runebinder"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71145,7 +71537,7 @@ return { ["type"] = "scourge", }, }, - ["9408_SacredBastion"] = { + ["9599_SacredBastion"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71158,7 +71550,7 @@ return { ["type"] = "scourge", }, }, - ["9411_Solipsism"] = { + ["9602_Solipsism"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71171,7 +71563,7 @@ return { ["type"] = "scourge", }, }, - ["9413_IronGrip"] = { + ["9604_IronGrip"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71184,7 +71576,7 @@ return { ["type"] = "scourge", }, }, - ["9414_SupremeEgo"] = { + ["9605_SupremeEgo"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71197,7 +71589,7 @@ return { ["type"] = "scourge", }, }, - ["9415_UnwaveringStance"] = { + ["9606_UnwaveringStance"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71210,7 +71602,7 @@ return { ["type"] = "scourge", }, }, - ["9416_VaalPact"] = { + ["9607_VaalPact"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71223,7 +71615,7 @@ return { ["type"] = "scourge", }, }, - ["9417_VersatileCombatant"] = { + ["9608_VersatileCombatant"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71236,7 +71628,7 @@ return { ["type"] = "scourge", }, }, - ["9418_WickedWard"] = { + ["9609_WickedWard"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71249,7 +71641,7 @@ return { ["type"] = "scourge", }, }, - ["9419_WindDancer"] = { + ["9610_WindDancer"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71262,7 +71654,7 @@ return { ["type"] = "scourge", }, }, - ["9422_ResoluteTechnique"] = { + ["9613_ResoluteTechnique"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71275,7 +71667,7 @@ return { ["type"] = "scourge", }, }, - ["9423_IronWill"] = { + ["9614_IronWill"] = { ["Chest"] = { ["max"] = 1, ["min"] = 1, @@ -71288,7 +71680,7 @@ return { ["type"] = "scourge", }, }, - ["962_ChanceToSuppressSpells"] = { + ["997_ChanceToSuppressSpells"] = { ["Boots"] = { ["max"] = 10, ["min"] = 5, @@ -71314,247 +71706,79 @@ return { ["type"] = "scourge", }, }, - ["974_AdditionalSpellBlock"] = { - ["Shield"] = { - ["max"] = 9, - ["min"] = 4, - }, + }, + ["Synthesis"] = { + ["1011_SpellBlockPercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_19803471", - ["text"] = "+#% Chance to Block Spell Damage", - ["type"] = "scourge", + ["id"] = "implicit.stat_561307714", + ["text"] = "#% Chance to Block Spell Damage", + ["type"] = "implicit", }, }, - ["992_StrengthImplicit"] = { - ["1HAxe"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HMace"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HSword"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HAxe"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HSword"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Belt"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 20, + ["1026_AllAttributes"] = { + ["sign"] = "", + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 35, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "+# to all Attributes", + ["type"] = "implicit", }, + }, + ["1027_StrengthImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_4080418644", + ["id"] = "implicit.stat_4080418644", ["text"] = "+# to Strength", - ["type"] = "scourge", + ["type"] = "implicit", }, }, - ["993_DexterityImplicit"] = { - ["1HAxe"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HSword"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HAxe"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HSword"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Dagger"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["1028_DexterityImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_3261801346", + ["id"] = "implicit.stat_3261801346", ["text"] = "+# to Dexterity", - ["type"] = "scourge", + ["type"] = "implicit", }, }, - ["994_IntelligenceImplicit"] = { - ["1HMace"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Amulet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Dagger"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["1029_IntelligenceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_328541901", + ["id"] = "implicit.stat_328541901", ["text"] = "+# to Intelligence", - ["type"] = "scourge", + ["type"] = "implicit", }, }, - ["999_PercentageStrength"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 4, + ["1033_PercentageAllAttributes"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "implicit", }, + }, + ["1034_PercentageStrength"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "scourge.stat_734614379", + ["id"] = "implicit.stat_734614379", ["text"] = "#% increased Strength", - ["type"] = "scourge", + ["type"] = "implicit", }, }, - }, - ["Synthesis"] = { - ["1000_PercentageDexterity"] = { + ["1035_PercentageDexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71564,7 +71788,7 @@ return { ["type"] = "implicit", }, }, - ["1001_PercentageIntelligence"] = { + ["1036_PercentageIntelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71574,7 +71798,7 @@ return { ["type"] = "implicit", }, }, - ["1006_AllDamage"] = { + ["1041_AllDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71584,7 +71808,7 @@ return { ["type"] = "implicit", }, }, - ["1013_AttackDamage"] = { + ["1048_AttackDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71594,7 +71818,7 @@ return { ["type"] = "implicit", }, }, - ["1025_DegenerationDamage"] = { + ["1060_DegenerationDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71604,7 +71828,7 @@ return { ["type"] = "implicit", }, }, - ["1032_DamageWhileLeechingLife"] = { + ["1067_DamageWhileLeechingLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71614,7 +71838,7 @@ return { ["type"] = "implicit", }, }, - ["1034_DamageWhileLeechingMana"] = { + ["1069_DamageWhileLeechingMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71624,7 +71848,7 @@ return { ["type"] = "implicit", }, }, - ["1038_SpellDamage"] = { + ["1073_SpellDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71634,7 +71858,7 @@ return { ["type"] = "implicit", }, }, - ["1041_SpellDamageWithStaff"] = { + ["1076_SpellDamageWithStaff"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71644,7 +71868,7 @@ return { ["type"] = "implicit", }, }, - ["1043_SpellDamageWithShield"] = { + ["1078_SpellDamageWithShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71654,7 +71878,7 @@ return { ["type"] = "implicit", }, }, - ["1044_SpellDamageWithDualWield"] = { + ["1079_SpellDamageWithDualWield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71664,7 +71888,7 @@ return { ["type"] = "implicit", }, }, - ["1045_PhysicalDamagePercent"] = { + ["1080_PhysicalDamagePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71674,7 +71898,7 @@ return { ["type"] = "implicit", }, }, - ["1046_LocalPhysicalDamagePercent"] = { + ["1081_LocalPhysicalDamagePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71684,7 +71908,7 @@ return { ["type"] = "implicit", }, }, - ["1048_MeleeDamage"] = { + ["1083_MeleeDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71694,7 +71918,7 @@ return { ["type"] = "implicit", }, }, - ["1069_ColdDamageOverTimeMultiplier"] = { + ["1104_ColdDamageOverTimeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71704,7 +71928,7 @@ return { ["type"] = "implicit", }, }, - ["1072_ChaosDamageOverTimeMultiplier"] = { + ["1107_ChaosDamageOverTimeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71714,7 +71938,7 @@ return { ["type"] = "implicit", }, }, - ["1088_LocalPhysicalDamage"] = { + ["1123_LocalPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Physical Damage", @@ -71725,7 +71949,7 @@ return { ["type"] = "implicit", }, }, - ["1088_LocalPhysicalDamageTwoHanded"] = { + ["1123_LocalPhysicalDamageTwoHanded"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Physical Damage", @@ -71736,7 +71960,7 @@ return { ["type"] = "implicit", }, }, - ["1115_AxeIncreasedPhysicalDamage"] = { + ["1150_AxeIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71746,7 +71970,7 @@ return { ["type"] = "implicit", }, }, - ["1119_StaffIncreasedPhysicalDamage"] = { + ["1154_StaffIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71756,7 +71980,7 @@ return { ["type"] = "implicit", }, }, - ["1127_ClawIncreasedPhysicalDamage"] = { + ["1162_ClawIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71766,7 +71990,7 @@ return { ["type"] = "implicit", }, }, - ["1133_DaggerIncreasedPhysicalDamage"] = { + ["1168_DaggerIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71776,7 +72000,7 @@ return { ["type"] = "implicit", }, }, - ["1139_MaceIncreasedPhysicalDamage"] = { + ["1174_MaceIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71786,7 +72010,7 @@ return { ["type"] = "implicit", }, }, - ["1145_BowIncreasedPhysicalDamage"] = { + ["1180_BowIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71796,7 +72020,7 @@ return { ["type"] = "implicit", }, }, - ["1150_SwordIncreasedPhysicalDamage"] = { + ["1185_SwordIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71806,7 +72030,7 @@ return { ["type"] = "implicit", }, }, - ["1157_WandIncreasedPhysicalDamage"] = { + ["1192_WandIncreasedPhysicalDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71816,7 +72040,7 @@ return { ["type"] = "implicit", }, }, - ["1169_FireDamagePercentage"] = { + ["1204_FireDamagePercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71826,7 +72050,7 @@ return { ["type"] = "implicit", }, }, - ["1171_GlobalAddedFireDamage"] = { + ["1206_GlobalAddedFireDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71836,7 +72060,7 @@ return { ["type"] = "implicit", }, }, - ["1174_LocalFireDamage"] = { + ["1209_LocalFireDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Fire Damage", @@ -71847,7 +72071,7 @@ return { ["type"] = "implicit", }, }, - ["1174_LocalFireDamageTwoHand"] = { + ["1209_LocalFireDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Fire Damage", @@ -71858,7 +72082,7 @@ return { ["type"] = "implicit", }, }, - ["1178_ColdDamagePercentage"] = { + ["1213_ColdDamagePercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71868,7 +72092,7 @@ return { ["type"] = "implicit", }, }, - ["1180_GlobalAddedColdDamage"] = { + ["1215_GlobalAddedColdDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71878,7 +72102,7 @@ return { ["type"] = "implicit", }, }, - ["1183_LocalColdDamage"] = { + ["1218_LocalColdDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Cold Damage", @@ -71889,7 +72113,7 @@ return { ["type"] = "implicit", }, }, - ["1183_LocalColdDamageTwoHand"] = { + ["1218_LocalColdDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Cold Damage", @@ -71900,7 +72124,7 @@ return { ["type"] = "implicit", }, }, - ["1189_LightningDamagePercentage"] = { + ["1224_LightningDamagePercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71910,7 +72134,7 @@ return { ["type"] = "implicit", }, }, - ["1191_GlobalAddedLightningDamage"] = { + ["1226_GlobalAddedLightningDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71920,7 +72144,7 @@ return { ["type"] = "implicit", }, }, - ["1194_LocalLightningDamage"] = { + ["1229_LocalLightningDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Lightning Damage", @@ -71931,7 +72155,7 @@ return { ["type"] = "implicit", }, }, - ["1194_LocalLightningDamageTwoHand"] = { + ["1229_LocalLightningDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Lightning Damage", @@ -71942,7 +72166,7 @@ return { ["type"] = "implicit", }, }, - ["1197_IncreasedChaosDamage"] = { + ["1232_IncreasedChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71952,7 +72176,7 @@ return { ["type"] = "implicit", }, }, - ["1198_GlobalAddedChaosDamage"] = { + ["1233_GlobalAddedChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71962,7 +72186,7 @@ return { ["type"] = "implicit", }, }, - ["1201_LocalChaosDamage"] = { + ["1236_LocalChaosDamage"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Chaos Damage", @@ -71973,7 +72197,7 @@ return { ["type"] = "implicit", }, }, - ["1201_LocalChaosDamageTwoHand"] = { + ["1236_LocalChaosDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "Adds # to # Chaos Damage", @@ -71984,7 +72208,7 @@ return { ["type"] = "implicit", }, }, - ["1215_SpellAddedFireDamage"] = { + ["1250_SpellAddedFireDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -71994,7 +72218,7 @@ return { ["type"] = "implicit", }, }, - ["1215_SpellAddedFireDamageTwoHand"] = { + ["1250_SpellAddedFireDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72004,7 +72228,7 @@ return { ["type"] = "implicit", }, }, - ["1216_SpellAddedColdDamage"] = { + ["1251_SpellAddedColdDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72014,7 +72238,7 @@ return { ["type"] = "implicit", }, }, - ["1216_SpellAddedColdDamageTwoHand"] = { + ["1251_SpellAddedColdDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72024,7 +72248,7 @@ return { ["type"] = "implicit", }, }, - ["1217_SpellAddedLightningDamage"] = { + ["1252_SpellAddedLightningDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72034,7 +72258,7 @@ return { ["type"] = "implicit", }, }, - ["1217_SpellAddedLightningDamageTwoHand"] = { + ["1252_SpellAddedLightningDamageTwoHand"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72044,7 +72268,7 @@ return { ["type"] = "implicit", }, }, - ["1221_IncreasedAttackSpeed"] = { + ["1256_IncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72054,7 +72278,7 @@ return { ["type"] = "implicit", }, }, - ["1224_LocalIncreasedAttackSpeed"] = { + ["1259_LocalIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Attack Speed", @@ -72065,7 +72289,7 @@ return { ["type"] = "implicit", }, }, - ["1231_AxeIncreasedAttackSpeed"] = { + ["1266_AxeIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72075,7 +72299,7 @@ return { ["type"] = "implicit", }, }, - ["1232_StaffIncreasedAttackSpeed"] = { + ["1267_StaffIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72085,7 +72309,7 @@ return { ["type"] = "implicit", }, }, - ["1233_ClawIncreasedAttackSpeed"] = { + ["1268_ClawIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72095,7 +72319,7 @@ return { ["type"] = "implicit", }, }, - ["1234_DaggerIncreasedAttackSpeed"] = { + ["1269_DaggerIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72105,7 +72329,7 @@ return { ["type"] = "implicit", }, }, - ["1235_MaceIncreasedAttackSpeed"] = { + ["1270_MaceIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72115,7 +72339,7 @@ return { ["type"] = "implicit", }, }, - ["1236_BowIncreasedAttackSpeed"] = { + ["1271_BowIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72125,7 +72349,7 @@ return { ["type"] = "implicit", }, }, - ["1237_SwordIncreasedAttackSpeed"] = { + ["1272_SwordIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72135,7 +72359,7 @@ return { ["type"] = "implicit", }, }, - ["1238_WandIncreasedAttackSpeed"] = { + ["1273_WandIncreasedAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72145,7 +72369,7 @@ return { ["type"] = "implicit", }, }, - ["1243_IncreasedAccuracy"] = { + ["1278_IncreasedAccuracy"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72155,7 +72379,7 @@ return { ["type"] = "implicit", }, }, - ["1244_IncreasedAccuracyPercent"] = { + ["1279_IncreasedAccuracyPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72165,7 +72389,7 @@ return { ["type"] = "implicit", }, }, - ["1244_LocalAccuracyRatingIncrease"] = { + ["1279_LocalAccuracyRatingIncrease"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72175,7 +72399,7 @@ return { ["type"] = "implicit", }, }, - ["1248_AxeIncreasedAccuracyRating"] = { + ["1283_AxeIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72185,7 +72409,7 @@ return { ["type"] = "implicit", }, }, - ["1249_StaffIncreasedAccuracyRating"] = { + ["1284_StaffIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72195,7 +72419,7 @@ return { ["type"] = "implicit", }, }, - ["1250_ClawIncreasedAccuracyRating"] = { + ["1285_ClawIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72205,7 +72429,7 @@ return { ["type"] = "implicit", }, }, - ["1251_DaggerIncreasedAccuracyRating"] = { + ["1286_DaggerIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72215,7 +72439,7 @@ return { ["type"] = "implicit", }, }, - ["1252_MaceIncreasedAccuracyRating"] = { + ["1287_MaceIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72225,7 +72449,7 @@ return { ["type"] = "implicit", }, }, - ["1253_BowIncreasedAccuracyRating"] = { + ["1288_BowIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72235,7 +72459,7 @@ return { ["type"] = "implicit", }, }, - ["1254_SwordIncreasedAccuracyRating"] = { + ["1289_SwordIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72245,7 +72469,7 @@ return { ["type"] = "implicit", }, }, - ["1255_WandIncreasedAccuracyRating"] = { + ["1290_WandIncreasedAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72255,7 +72479,7 @@ return { ["type"] = "implicit", }, }, - ["1256_IncreasedCastSpeed"] = { + ["1291_IncreasedCastSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72265,7 +72489,7 @@ return { ["type"] = "implicit", }, }, - ["1257_CastSpeedWithDualWield"] = { + ["1292_CastSpeedWithDualWield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72275,7 +72499,7 @@ return { ["type"] = "implicit", }, }, - ["1258_CastSpeedWithShield"] = { + ["1293_CastSpeedWithShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72285,7 +72509,7 @@ return { ["type"] = "implicit", }, }, - ["1259_CastSpeedWithStaff"] = { + ["1294_CastSpeedWithStaff"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72295,7 +72519,7 @@ return { ["type"] = "implicit", }, }, - ["1268_SpellCriticalStrikeChance"] = { + ["1303_SpellCriticalStrikeChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72305,7 +72529,7 @@ return { ["type"] = "implicit", }, }, - ["1269_CriticalStrikeChance"] = { + ["1304_CriticalStrikeChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72315,7 +72539,7 @@ return { ["type"] = "implicit", }, }, - ["1274_LocalCriticalStrikeChance"] = { + ["1309_LocalCriticalStrikeChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72325,7 +72549,7 @@ return { ["type"] = "implicit", }, }, - ["1298_CriticalStrikeMultiplier"] = { + ["1333_CriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72335,17 +72559,7 @@ return { ["type"] = "implicit", }, }, - ["129_LocalIncreaseSocketedStrengthGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_916797432", - ["text"] = "+# to Level of Socketed Strength Gems", - ["type"] = "implicit", - }, - }, - ["1302_DaggerCriticalStrikeMultiplier"] = { + ["1337_DaggerCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72355,7 +72569,7 @@ return { ["type"] = "implicit", }, }, - ["1303_MaceCriticalStrikeMultiplier"] = { + ["1338_MaceCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72365,7 +72579,7 @@ return { ["type"] = "implicit", }, }, - ["1304_AxeCriticalStrikeMultiplier"] = { + ["1339_AxeCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72375,7 +72589,7 @@ return { ["type"] = "implicit", }, }, - ["1305_BowCriticalStrikeMultiplier"] = { + ["1340_BowCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72385,7 +72599,7 @@ return { ["type"] = "implicit", }, }, - ["1306_SwordCriticalStrikeMultiplier"] = { + ["1341_SwordCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72395,7 +72609,7 @@ return { ["type"] = "implicit", }, }, - ["1307_WandCriticalStrikeMultiplier"] = { + ["1342_WandCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72405,7 +72619,7 @@ return { ["type"] = "implicit", }, }, - ["1308_ClawCriticalStrikeMultiplier"] = { + ["1343_ClawCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72415,7 +72629,7 @@ return { ["type"] = "implicit", }, }, - ["1309_StaffCriticalStrikeMultiplier"] = { + ["1344_StaffCriticalStrikeMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72425,37 +72639,37 @@ return { ["type"] = "implicit", }, }, - ["130_LocalIncreaseSocketedDexterityGemLevel"] = { + ["134_LocalIncreaseSocketedStrengthGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2718698372", - ["text"] = "+# to Level of Socketed Dexterity Gems", + ["id"] = "implicit.stat_916797432", + ["text"] = "+# to Level of Socketed Strength Gems", ["type"] = "implicit", }, }, - ["131_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["1356_ReducedExtraDamageFromCrits"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1719423857", - ["text"] = "+# to Level of Socketed Intelligence Gems", + ["id"] = "implicit.stat_3855016469", + ["text"] = "You take #% reduced Extra Damage from Critical Strikes", ["type"] = "implicit", }, }, - ["1321_ReducedExtraDamageFromCrits"] = { + ["135_LocalIncreaseSocketedDexterityGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "You take #% reduced Extra Damage from Critical Strikes", + ["id"] = "implicit.stat_2718698372", + ["text"] = "+# to Level of Socketed Dexterity Gems", ["type"] = "implicit", }, }, - ["1326_StunThresholdReduction"] = { + ["1361_StunThresholdReduction"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72465,7 +72679,17 @@ return { ["type"] = "implicit", }, }, - ["132_LocalIncreaseSocketedGemLevel"] = { + ["136_LocalIncreaseSocketedIntelligenceGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1719423857", + ["text"] = "+# to Level of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, + ["137_LocalIncreaseSocketedGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72475,7 +72699,7 @@ return { ["type"] = "implicit", }, }, - ["1349_LocalPhysicalDamageReductionRating"] = { + ["1384_LocalPhysicalDamageReductionRating"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to Armour", @@ -72486,7 +72710,7 @@ return { ["type"] = "implicit", }, }, - ["1350_GlobalPhysicalDamageReductionRatingPercent"] = { + ["1385_GlobalPhysicalDamageReductionRatingPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72496,7 +72720,7 @@ return { ["type"] = "implicit", }, }, - ["1351_LocalPhysicalDamageReductionRatingPercent"] = { + ["1386_LocalPhysicalDamageReductionRatingPercent"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Armour", @@ -72507,7 +72731,7 @@ return { ["type"] = "implicit", }, }, - ["1357_LocalEvasionRating"] = { + ["1392_LocalEvasionRating"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to Evasion Rating", @@ -72518,7 +72742,7 @@ return { ["type"] = "implicit", }, }, - ["1358_GlobalEvasionRatingPercent"] = { + ["1393_GlobalEvasionRatingPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72528,7 +72752,7 @@ return { ["type"] = "implicit", }, }, - ["1359_LocalEvasionRatingIncreasePercent"] = { + ["1394_LocalEvasionRatingIncreasePercent"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Evasion Rating", @@ -72539,7 +72763,7 @@ return { ["type"] = "implicit", }, }, - ["1365_IncreasedEvasionRatingPerFrenzyCharge"] = { + ["1400_IncreasedEvasionRatingPerFrenzyCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72549,7 +72773,7 @@ return { ["type"] = "implicit", }, }, - ["1366_EnergyShield"] = { + ["1401_EnergyShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72559,7 +72783,7 @@ return { ["type"] = "implicit", }, }, - ["1367_LocalEnergyShield"] = { + ["1402_LocalEnergyShield"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "+# to maximum Energy Shield", @@ -72570,7 +72794,7 @@ return { ["type"] = "implicit", }, }, - ["1368_LocalEnergyShieldPercent"] = { + ["1403_LocalEnergyShieldPercent"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% increased Energy Shield", @@ -72581,7 +72805,7 @@ return { ["type"] = "implicit", }, }, - ["1369_GlobalEnergyShieldPercent"] = { + ["1404_GlobalEnergyShieldPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72591,7 +72815,7 @@ return { ["type"] = "implicit", }, }, - ["1370_EnergyShieldDelay"] = { + ["1405_EnergyShieldDelay"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72601,7 +72825,7 @@ return { ["type"] = "implicit", }, }, - ["1373_EnergyShieldRegeneration"] = { + ["1408_EnergyShieldRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72611,7 +72835,7 @@ return { ["type"] = "implicit", }, }, - ["1376_EnergyShieldRecoveryRate"] = { + ["1411_EnergyShieldRecoveryRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72621,7 +72845,7 @@ return { ["type"] = "implicit", }, }, - ["1377_IncreasedLife"] = { + ["1412_IncreasedLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72631,7 +72855,7 @@ return { ["type"] = "implicit", }, }, - ["1379_MaximumLifeIncreasePercent"] = { + ["1414_MaximumLifeIncreasePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72641,17 +72865,7 @@ return { ["type"] = "implicit", }, }, - ["137_LocalIncreaseSocketedFireGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_339179093", - ["text"] = "+# to Level of Socketed Fire Gems", - ["type"] = "implicit", - }, - }, - ["1382_LifeRegeneration"] = { + ["1417_LifeRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72661,7 +72875,7 @@ return { ["type"] = "implicit", }, }, - ["1384_LifeRegenerationPercentPerEnduranceCharge"] = { + ["1419_LifeRegenerationPercentPerEnduranceCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72671,7 +72885,7 @@ return { ["type"] = "implicit", }, }, - ["1386_LifeRecoveryRate"] = { + ["1421_LifeRecoveryRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72681,7 +72895,7 @@ return { ["type"] = "implicit", }, }, - ["1387_IncreasedMana"] = { + ["1422_IncreasedMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72691,7 +72905,7 @@ return { ["type"] = "implicit", }, }, - ["1388_MaximumManaIncreasePercent"] = { + ["1423_MaximumManaIncreasePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72701,7 +72915,7 @@ return { ["type"] = "implicit", }, }, - ["1389_BaseManaRegeneration"] = { + ["1424_BaseManaRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72711,17 +72925,7 @@ return { ["type"] = "implicit", }, }, - ["138_LocalIncreaseSocketedColdGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1645459191", - ["text"] = "+# to Level of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, - ["1390_AddedManaRegeneration"] = { + ["1425_AddedManaRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72731,7 +72935,7 @@ return { ["type"] = "implicit", }, }, - ["1392_ManaRegeneration"] = { + ["1427_ManaRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72741,7 +72945,7 @@ return { ["type"] = "implicit", }, }, - ["1394_ManaRecoveryRate"] = { + ["1429_ManaRecoveryRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72751,17 +72955,17 @@ return { ["type"] = "implicit", }, }, - ["139_LocalIncreaseSocketedLightningGemLevel"] = { + ["142_LocalIncreaseSocketedFireGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4043416969", - ["text"] = "+# to Level of Socketed Lightning Gems", + ["id"] = "implicit.stat_339179093", + ["text"] = "+# to Level of Socketed Fire Gems", ["type"] = "implicit", }, }, - ["1400_ItemFoundQuantityIncrease"] = { + ["1435_ItemFoundQuantityIncrease"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72771,7 +72975,7 @@ return { ["type"] = "implicit", }, }, - ["1404_ItemFoundRarityIncrease"] = { + ["1439_ItemFoundRarityIncrease"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72781,17 +72985,17 @@ return { ["type"] = "implicit", }, }, - ["140_LocalIncreaseSocketedChaosGemLevel"] = { + ["143_LocalIncreaseSocketedColdGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2675603254", - ["text"] = "+# to Level of Socketed Chaos Gems", + ["id"] = "implicit.stat_1645459191", + ["text"] = "+# to Level of Socketed Cold Gems", ["type"] = "implicit", }, }, - ["1411_ExperienceIncrease"] = { + ["1446_ExperienceIncrease"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72801,7 +73005,27 @@ return { ["type"] = "implicit", }, }, - ["1427_AllResistances"] = { + ["144_LocalIncreaseSocketedLightningGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4043416969", + ["text"] = "+# to Level of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["145_LocalIncreaseSocketedChaosGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2675603254", + ["text"] = "+# to Level of Socketed Chaos Gems", + ["type"] = "implicit", + }, + }, + ["1462_AllResistances"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72811,7 +73035,7 @@ return { ["type"] = "implicit", }, }, - ["1431_MaximumFireResistanceImplicit"] = { + ["1466_MaximumFireResistanceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72821,7 +73045,7 @@ return { ["type"] = "implicit", }, }, - ["1433_FireResistance"] = { + ["1468_FireResistance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72831,7 +73055,7 @@ return { ["type"] = "implicit", }, }, - ["1437_MaximumColdResistanceImplicit"] = { + ["1472_MaximumColdResistanceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72841,7 +73065,7 @@ return { ["type"] = "implicit", }, }, - ["1439_ColdResistance"] = { + ["1474_ColdResistance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72851,7 +73075,7 @@ return { ["type"] = "implicit", }, }, - ["1442_MaximumLightningResistanceImplicit"] = { + ["1477_MaximumLightningResistanceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72861,7 +73085,7 @@ return { ["type"] = "implicit", }, }, - ["1444_LightningResistance"] = { + ["1479_LightningResistance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72871,7 +73095,7 @@ return { ["type"] = "implicit", }, }, - ["1447_MaximumChaosResistanceImplicit"] = { + ["1482_MaximumChaosResistanceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72881,7 +73105,7 @@ return { ["type"] = "implicit", }, }, - ["1448_ChaosResistance"] = { + ["1483_ChaosResistance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72891,7 +73115,7 @@ return { ["type"] = "implicit", }, }, - ["1449_MaximumElementalResistanceImplicit"] = { + ["1484_MaximumElementalResistanceImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72901,17 +73125,7 @@ return { ["type"] = "implicit", }, }, - ["144_IncreasedSocketedAoEGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2551600084", - ["text"] = "+# to Level of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["1456_LifeLeechPermyriad"] = { + ["1491_LifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72921,7 +73135,7 @@ return { ["type"] = "implicit", }, }, - ["1458_LifeLeechLocalPermyriad"] = { + ["1493_LifeLeechLocalPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Life", @@ -72932,27 +73146,7 @@ return { ["type"] = "implicit", }, }, - ["145_LocalIncreaseSocketedProjectileGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2176571093", - ["text"] = "+# to Level of Socketed Projectile Gems", - ["type"] = "implicit", - }, - }, - ["146_LocalIncreaseSocketedBowGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2027269580", - ["text"] = "+# to Level of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, - ["1471_LifeLeechFromAttacksPermyriad"] = { + ["1506_LifeLeechFromAttacksPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72962,17 +73156,17 @@ return { ["type"] = "implicit", }, }, - ["1473_PhysicalDamageLifeLeechPermyriad"] = { + ["1508_PhysicalDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2508100173", + ["id"] = "implicit.stat_3764265320", ["text"] = "#% of Physical Damage Leeched as Life", ["type"] = "implicit", }, }, - ["1477_FireDamageLifeLeechPermyriad"] = { + ["1512_FireDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -72982,27 +73176,27 @@ return { ["type"] = "implicit", }, }, - ["147_LocalIncreaseSocketedMeleeGemLevel"] = { + ["1517_ColdDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_829382474", - ["text"] = "+# to Level of Socketed Melee Gems", + ["id"] = "implicit.stat_3999401129", + ["text"] = "#% of Cold Damage Leeched as Life", ["type"] = "implicit", }, }, - ["1482_ColdDamageLifeLeechPermyriad"] = { + ["151_IncreasedSocketedAoEGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3999401129", - ["text"] = "#% of Cold Damage Leeched as Life", + ["id"] = "implicit.stat_2551600084", + ["text"] = "+# to Level of Socketed AoE Gems", ["type"] = "implicit", }, }, - ["1486_LightningDamageLifeLeechPermyriad"] = { + ["1521_LightningDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73012,47 +73206,47 @@ return { ["type"] = "implicit", }, }, - ["1489_ChaosDamageLifeLeechPermyriad"] = { + ["1524_ChaosDamageLifeLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2238792070", + ["id"] = "implicit.stat_744082851", ["text"] = "#% of Chaos Damage Leeched as Life", ["type"] = "implicit", }, }, - ["148_LocalIncreaseSocketedMinionGemLevel"] = { + ["1528_ElementalDamageLeechedAsLifePermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3604946673", - ["text"] = "+# to Level of Socketed Minion Gems", + ["id"] = "implicit.stat_720395808", + ["text"] = "#% of Elemental Damage Leeched as Life", ["type"] = "implicit", }, }, - ["1493_ElementalDamageLeechedAsLifePermyriad"] = { + ["152_LocalIncreaseSocketedProjectileGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_720395808", - ["text"] = "#% of Elemental Damage Leeched as Life", + ["id"] = "implicit.stat_2176571093", + ["text"] = "+# to Level of Socketed Projectile Gems", ["type"] = "implicit", }, }, - ["149_LocalIncreaseSocketedAuraLevel"] = { + ["153_LocalIncreaseSocketedBowGemLevel"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2452998583", - ["text"] = "+# to Level of Socketed Aura Gems", + ["id"] = "implicit.stat_2027269580", + ["text"] = "+# to Level of Socketed Bow Gems", ["type"] = "implicit", }, }, - ["1506_ManaLeechPermyriad"] = { + ["1541_ManaLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73062,7 +73256,7 @@ return { ["type"] = "implicit", }, }, - ["1508_ManaLeechLocalPermyriad"] = { + ["1543_ManaLeechLocalPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% of Physical Attack Damage Leeched as Mana", @@ -73073,7 +73267,7 @@ return { ["type"] = "implicit", }, }, - ["1512_AttackDamageManaLeech"] = { + ["1547_AttackDamageManaLeech"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73083,7 +73277,27 @@ return { ["type"] = "implicit", }, }, - ["1529_EnergyShieldLeechPermyriad"] = { + ["154_LocalIncreaseSocketedMeleeGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_829382474", + ["text"] = "+# to Level of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, + ["155_LocalIncreaseSocketedMinionGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3604946673", + ["text"] = "+# to Level of Socketed Minion Gems", + ["type"] = "implicit", + }, + }, + ["1564_EnergyShieldLeechPermyriad"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73093,7 +73307,17 @@ return { ["type"] = "implicit", }, }, - ["1538_MaximumLifeLeechRate"] = { + ["156_LocalIncreaseSocketedAuraLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2452998583", + ["text"] = "+# to Level of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["1573_MaximumLifeLeechRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73103,7 +73327,7 @@ return { ["type"] = "implicit", }, }, - ["1540_MaximumManaLeechRate"] = { + ["1575_MaximumManaLeechRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73113,7 +73337,7 @@ return { ["type"] = "implicit", }, }, - ["1541_MaximumEnergyShieldLeechRate"] = { + ["1576_MaximumEnergyShieldLeechRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73123,7 +73347,7 @@ return { ["type"] = "implicit", }, }, - ["1545_LifeGainPerTargetLocal"] = { + ["1580_LifeGainPerTargetLocal"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73133,7 +73357,7 @@ return { ["type"] = "implicit", }, }, - ["1547_LifeGainPerTarget"] = { + ["1582_LifeGainPerTarget"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73143,7 +73367,7 @@ return { ["type"] = "implicit", }, }, - ["1551_ManaGainPerTarget"] = { + ["1586_ManaGainPerTarget"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73153,7 +73377,7 @@ return { ["type"] = "implicit", }, }, - ["1554_EnergyShieldGainPerTarget"] = { + ["1589_EnergyShieldGainPerTarget"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73163,7 +73387,7 @@ return { ["type"] = "implicit", }, }, - ["1555_LifeGainedFromEnemyDeath"] = { + ["1590_LifeGainedFromEnemyDeath"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73173,7 +73397,7 @@ return { ["type"] = "implicit", }, }, - ["1556_MaximumLifeOnKillPercent"] = { + ["1591_MaximumLifeOnKillPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73183,7 +73407,7 @@ return { ["type"] = "implicit", }, }, - ["1558_MaximumManaOnKillPercent"] = { + ["1593_MaximumManaOnKillPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73193,7 +73417,7 @@ return { ["type"] = "implicit", }, }, - ["1564_GainLifeOnBlock"] = { + ["1599_GainLifeOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73203,7 +73427,7 @@ return { ["type"] = "implicit", }, }, - ["1565_GainManaOnBlock"] = { + ["1600_GainManaOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73213,7 +73437,7 @@ return { ["type"] = "implicit", }, }, - ["1569_ManaGainedFromEnemyDeath"] = { + ["1604_ManaGainedFromEnemyDeath"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73223,7 +73447,7 @@ return { ["type"] = "implicit", }, }, - ["1572_MinionLife"] = { + ["1607_MinionLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73233,7 +73457,7 @@ return { ["type"] = "implicit", }, }, - ["1575_MinionMovementSpeed"] = { + ["1610_MinionMovementSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73243,17 +73467,7 @@ return { ["type"] = "implicit", }, }, - ["157_LocalIncreaseSocketedSupportGemLevel"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4154259475", - ["text"] = "+# to Level of Socketed Support Gems", - ["type"] = "implicit", - }, - }, - ["1596_AdditionalPierce"] = { + ["1631_AdditionalPierce"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73263,7 +73477,7 @@ return { ["type"] = "implicit", }, }, - ["1597_ArrowAdditionalPierce"] = { + ["1632_ArrowAdditionalPierce"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -73272,18 +73486,18 @@ return { ["type"] = "implicit", }, }, - ["1599_AdditionalArrows"] = { + ["1635_AdditionalArrows"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "implicit.stat_742529963", + ["id"] = "implicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", }, }, - ["1602_ProjectileSpeed"] = { + ["1637_ProjectileSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73293,7 +73507,7 @@ return { ["type"] = "implicit", }, }, - ["1604_MovementVelocity"] = { + ["1639_MovementVelocity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73303,7 +73517,7 @@ return { ["type"] = "implicit", }, }, - ["1609_MinimumEnduranceCharges"] = { + ["1644_MinimumEnduranceCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73313,7 +73527,7 @@ return { ["type"] = "implicit", }, }, - ["1610_MaximumEnduranceCharges"] = { + ["1645_MaximumEnduranceCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73323,7 +73537,7 @@ return { ["type"] = "implicit", }, }, - ["1614_MinimumFrenzyCharges"] = { + ["1649_MinimumFrenzyCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73333,7 +73547,17 @@ return { ["type"] = "implicit", }, }, - ["1615_MaximumFrenzyCharges"] = { + ["164_LocalIncreaseSocketedSupportGemLevel"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4154259475", + ["text"] = "+# to Level of Socketed Support Gems", + ["type"] = "implicit", + }, + }, + ["1650_MaximumFrenzyCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73343,7 +73567,7 @@ return { ["type"] = "implicit", }, }, - ["1619_MinimumPowerCharges"] = { + ["1654_MinimumPowerCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73353,7 +73577,7 @@ return { ["type"] = "implicit", }, }, - ["1620_IncreasedMaximumPowerCharges"] = { + ["1655_IncreasedMaximumPowerCharges"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73363,7 +73587,7 @@ return { ["type"] = "implicit", }, }, - ["1636_PowerChargeOnCriticalStrikeChance"] = { + ["1671_PowerChargeOnCriticalStrikeChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73373,7 +73597,7 @@ return { ["type"] = "implicit", }, }, - ["1639_FrenzyChargeOnHitChance"] = { + ["1674_FrenzyChargeOnHitChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73383,7 +73607,7 @@ return { ["type"] = "implicit", }, }, - ["1644_CannotBeFrozen"] = { + ["1679_CannotBeFrozen"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -73392,7 +73616,7 @@ return { ["type"] = "implicit", }, }, - ["1645_CannotBeIgnited"] = { + ["1680_CannotBeIgnited"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -73401,7 +73625,7 @@ return { ["type"] = "implicit", }, }, - ["1647_CannotBeShocked"] = { + ["1682_CannotBeShocked"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -73410,7 +73634,7 @@ return { ["type"] = "implicit", }, }, - ["1649_AvoidElementalStatusAilments"] = { + ["1684_AvoidElementalStatusAilments"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73420,7 +73644,7 @@ return { ["type"] = "implicit", }, }, - ["1650_AvoidChill"] = { + ["1685_AvoidChill"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73430,7 +73654,7 @@ return { ["type"] = "implicit", }, }, - ["1651_AvoidFreeze"] = { + ["1686_AvoidFreeze"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73440,7 +73664,7 @@ return { ["type"] = "implicit", }, }, - ["1652_AvoidIgnite"] = { + ["1687_AvoidIgnite"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73450,7 +73674,7 @@ return { ["type"] = "implicit", }, }, - ["1654_AvoidShock"] = { + ["1689_AvoidShock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73460,7 +73684,7 @@ return { ["type"] = "implicit", }, }, - ["1655_ChanceToAvoidPoison"] = { + ["1690_ChanceToAvoidPoison"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73470,7 +73694,7 @@ return { ["type"] = "implicit", }, }, - ["1657_AvoidStun"] = { + ["1692_AvoidStun"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73480,7 +73704,7 @@ return { ["type"] = "implicit", }, }, - ["1662_ChillAndFreezeDuration"] = { + ["1697_ChillAndFreezeDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73490,7 +73714,7 @@ return { ["type"] = "implicit", }, }, - ["1663_ShockDuration"] = { + ["1698_ShockDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73500,7 +73724,7 @@ return { ["type"] = "implicit", }, }, - ["1664_ChillAndFreezeDuration"] = { + ["1699_ChillAndFreezeDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73510,7 +73734,7 @@ return { ["type"] = "implicit", }, }, - ["1665_BurnDuration"] = { + ["1700_BurnDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73520,7 +73744,7 @@ return { ["type"] = "implicit", }, }, - ["1669_StunDurationIncreasePercent"] = { + ["1704_StunDurationIncreasePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73530,7 +73754,7 @@ return { ["type"] = "implicit", }, }, - ["1673_SelfStatusAilmentDuration"] = { + ["1708_SelfStatusAilmentDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73540,7 +73764,7 @@ return { ["type"] = "implicit", }, }, - ["1683_BurnDamage"] = { + ["1718_BurnDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73550,7 +73774,7 @@ return { ["type"] = "implicit", }, }, - ["1686_AreaOfEffect"] = { + ["1721_AreaOfEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73560,7 +73784,7 @@ return { ["type"] = "implicit", }, }, - ["1689_ManaCostReduction"] = { + ["1724_ManaCostReduction"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73570,17 +73794,7 @@ return { ["type"] = "implicit", }, }, - ["168_SocketedGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828613551", - ["text"] = "+#% to Quality of Socketed Gems", - ["type"] = "implicit", - }, - }, - ["1697_IncreaseManaCostFlat"] = { + ["1732_IncreaseManaCostFlat"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73590,17 +73804,7 @@ return { ["type"] = "implicit", }, }, - ["169_IncreaseSocketedSupportGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1328548975", - ["text"] = "+#% to Quality of Socketed Support Gems", - ["type"] = "implicit", - }, - }, - ["1704_AvoidInterruptionWhileCasting"] = { + ["1739_AvoidInterruptionWhileCasting"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73610,7 +73814,7 @@ return { ["type"] = "implicit", }, }, - ["1706_StunRecovery"] = { + ["1741_StunRecovery"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73620,27 +73824,7 @@ return { ["type"] = "implicit", }, }, - ["171_SocketedAoEGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_768982451", - ["text"] = "+#% to Quality of Socketed AoE Gems", - ["type"] = "implicit", - }, - }, - ["172_SocketedAuraGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2276941637", - ["text"] = "+#% to Quality of Socketed Aura Gems", - ["type"] = "implicit", - }, - }, - ["1731_TrapThrowSpeed"] = { + ["1766_TrapThrowSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73650,7 +73834,7 @@ return { ["type"] = "implicit", }, }, - ["1732_MineLayingSpeed"] = { + ["1767_MineLayingSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73660,7 +73844,7 @@ return { ["type"] = "implicit", }, }, - ["1736_PhysicalAddedAsFire"] = { + ["1771_PhysicalAddedAsFire"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73670,7 +73854,7 @@ return { ["type"] = "implicit", }, }, - ["1738_PhysicalAddedAsLightning"] = { + ["1773_PhysicalAddedAsLightning"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73680,7 +73864,7 @@ return { ["type"] = "implicit", }, }, - ["1739_PhysicalAddedAsChaos"] = { + ["1774_PhysicalAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73690,17 +73874,7 @@ return { ["type"] = "implicit", }, }, - ["173_SocketedBowGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3280600715", - ["text"] = "+#% to Quality of Socketed Bow Gems", - ["type"] = "implicit", - }, - }, - ["1742_LightningAddedAsChaos"] = { + ["1777_LightningAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73710,7 +73884,7 @@ return { ["type"] = "implicit", }, }, - ["1744_ColdAddedAsChaos"] = { + ["1779_ColdAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73720,7 +73894,7 @@ return { ["type"] = "implicit", }, }, - ["1745_FireAddedAsChaos"] = { + ["1780_FireAddedAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73730,7 +73904,7 @@ return { ["type"] = "implicit", }, }, - ["1748_LifeRegenerationRatePercentage"] = { + ["1783_LifeRegenerationRatePercentage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73740,17 +73914,17 @@ return { ["type"] = "implicit", }, }, - ["174_SocketedChaosGemQuality"] = { + ["178_SocketedGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2062835769", - ["text"] = "+#% to Quality of Socketed Chaos Gems", + ["id"] = "implicit.stat_3828613551", + ["text"] = "+#% to Quality of Socketed Gems", ["type"] = "implicit", }, }, - ["1759_ConvertPhysicalToFireImplicit"] = { + ["1794_ConvertPhysicalToFireImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73760,17 +73934,7 @@ return { ["type"] = "implicit", }, }, - ["175_SocketedColdGemQuality"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1164882313", - ["text"] = "+#% to Quality of Socketed Cold Gems", - ["type"] = "implicit", - }, - }, - ["1761_ConvertPhysicalToColdImplicit"] = { + ["1796_ConvertPhysicalToColdImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73780,7 +73944,7 @@ return { ["type"] = "implicit", }, }, - ["1763_ConvertPhysicalToLightningImplicit"] = { + ["1798_ConvertPhysicalToLightningImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73790,27 +73954,27 @@ return { ["type"] = "implicit", }, }, - ["1766_PhysicalDamageConvertToChaosImplicit"] = { + ["179_IncreaseSocketedSupportGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_490098963", - ["text"] = "#% of Physical Damage Converted to Chaos Damage", + ["id"] = "implicit.stat_1328548975", + ["text"] = "+#% to Quality of Socketed Support Gems", ["type"] = "implicit", }, }, - ["176_SocketedDexterityGemQuality"] = { + ["1801_PhysicalDamageConvertToChaosImplicit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2877754099", - ["text"] = "+#% to Quality of Socketed Dexterity Gems", + ["id"] = "implicit.stat_490098963", + ["text"] = "#% of Physical Damage Converted to Chaos Damage", ["type"] = "implicit", }, }, - ["1777_MinionDamage"] = { + ["1812_MinionDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73820,7 +73984,7 @@ return { ["type"] = "implicit", }, }, - ["1782_ElementalDamagePercent"] = { + ["1817_ElementalDamagePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73830,17 +73994,17 @@ return { ["type"] = "implicit", }, }, - ["178_SocketedFireGemQuality"] = { + ["181_SocketedAoEGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3422008440", - ["text"] = "+#% to Quality of Socketed Fire Gems", + ["id"] = "implicit.stat_768982451", + ["text"] = "+#% to Quality of Socketed AoE Gems", ["type"] = "implicit", }, }, - ["1790_MaximumBlockChance"] = { + ["1825_MaximumBlockChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73850,7 +74014,7 @@ return { ["type"] = "implicit", }, }, - ["1791_MaximumSpellBlockChance"] = { + ["1826_MaximumSpellBlockChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73860,7 +74024,17 @@ return { ["type"] = "implicit", }, }, - ["1796_GlobalKnockbackChance"] = { + ["182_SocketedAuraGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2276941637", + ["text"] = "+#% to Quality of Socketed Aura Gems", + ["type"] = "implicit", + }, + }, + ["1831_GlobalKnockbackChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73870,7 +74044,7 @@ return { ["type"] = "implicit", }, }, - ["1797_ProjectileDamage"] = { + ["1832_ProjectileDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73880,37 +74054,37 @@ return { ["type"] = "implicit", }, }, - ["179_SocketedIntelligenceGemQuality"] = { + ["183_SocketedBowGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3174776455", - ["text"] = "+#% to Quality of Socketed Intelligence Gems", + ["id"] = "implicit.stat_3280600715", + ["text"] = "+#% to Quality of Socketed Bow Gems", ["type"] = "implicit", }, }, - ["180_SocketedLightningGemQuality"] = { + ["184_SocketedChaosGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1065580342", - ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["id"] = "implicit.stat_2062835769", + ["text"] = "+#% to Quality of Socketed Chaos Gems", ["type"] = "implicit", }, }, - ["181_SocketedMeleeGemQuality"] = { + ["185_SocketedColdGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1396421504", - ["text"] = "+#% to Quality of Socketed Melee Gems", + ["id"] = "implicit.stat_1164882313", + ["text"] = "+#% to Quality of Socketed Cold Gems", ["type"] = "implicit", }, }, - ["1827_ChanceToIgnite"] = { + ["1862_ChanceToIgnite"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73920,7 +74094,7 @@ return { ["type"] = "implicit", }, }, - ["1830_ChanceToFreeze"] = { + ["1865_ChanceToFreeze"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73930,7 +74104,7 @@ return { ["type"] = "implicit", }, }, - ["1834_ChanceToShock"] = { + ["1869_ChanceToShock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73940,27 +74114,27 @@ return { ["type"] = "implicit", }, }, - ["1836_AreaDamage"] = { + ["186_SocketedDexterityGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4251717817", - ["text"] = "#% increased Area Damage", + ["id"] = "implicit.stat_2877754099", + ["text"] = "+#% to Quality of Socketed Dexterity Gems", ["type"] = "implicit", }, }, - ["183_SocketedProjectileGemQuality"] = { + ["1871_AreaDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2428621158", - ["text"] = "+#% to Quality of Socketed Projectile Gems", + ["id"] = "implicit.stat_4251717817", + ["text"] = "#% increased Area Damage", ["type"] = "implicit", }, }, - ["1848_AttackAndCastSpeed"] = { + ["1883_AttackAndCastSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -73970,37 +74144,87 @@ return { ["type"] = "implicit", }, }, - ["184_SocketedStrengthGemQuality"] = { + ["188_SocketedFireGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_122841557", - ["text"] = "+#% to Quality of Socketed Strength Gems", + ["id"] = "implicit.stat_3422008440", + ["text"] = "+#% to Quality of Socketed Fire Gems", ["type"] = "implicit", }, }, - ["185_AbyssJewelEffect"] = { + ["1896_GlobalFlaskLifeRecovery"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1482572705", - ["text"] = "#% increased Effect of Socketed Abyss Jewels", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "implicit", }, }, - ["1861_GlobalFlaskLifeRecovery"] = { + ["189_SocketedIntelligenceGemQuality"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "implicit.stat_3174776455", + ["text"] = "+#% to Quality of Socketed Intelligence Gems", + ["type"] = "implicit", + }, + }, + ["190_SocketedLightningGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1065580342", + ["text"] = "+#% to Quality of Socketed Lightning Gems", + ["type"] = "implicit", + }, + }, + ["191_SocketedMeleeGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1396421504", + ["text"] = "+#% to Quality of Socketed Melee Gems", + ["type"] = "implicit", + }, + }, + ["193_SocketedProjectileGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2428621158", + ["text"] = "+#% to Quality of Socketed Projectile Gems", + ["type"] = "implicit", + }, + }, + ["194_SocketedStrengthGemQuality"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_122841557", + ["text"] = "+#% to Quality of Socketed Strength Gems", + ["type"] = "implicit", + }, + }, + ["195_AbyssJewelEffect"] = { + ["sign"] = "", + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1482572705", + ["text"] = "#% increased Effect of Socketed Abyss Jewels", ["type"] = "implicit", }, }, - ["1927_EnduranceChargeDuration"] = { + ["1962_EnduranceChargeDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74010,7 +74234,7 @@ return { ["type"] = "implicit", }, }, - ["1929_FrenzyChargeDuration"] = { + ["1964_FrenzyChargeDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74020,7 +74244,7 @@ return { ["type"] = "implicit", }, }, - ["1942_IncreasedSpellDamagePerPowerCharge"] = { + ["1977_IncreasedSpellDamagePerPowerCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74030,7 +74254,7 @@ return { ["type"] = "implicit", }, }, - ["1944_IncreasedPowerChargeDuration"] = { + ["1979_IncreasedPowerChargeDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74040,7 +74264,7 @@ return { ["type"] = "implicit", }, }, - ["1959_IncreasedLifeLeechRate"] = { + ["1994_IncreasedLifeLeechRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74050,7 +74274,7 @@ return { ["type"] = "implicit", }, }, - ["1960_IncreasedManaLeechRate"] = { + ["1995_IncreasedManaLeechRate"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74060,7 +74284,7 @@ return { ["type"] = "implicit", }, }, - ["1984_BeltIncreasedFlaskChargesGained"] = { + ["2020_BeltIncreasedFlaskChargesGained"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74070,7 +74294,7 @@ return { ["type"] = "implicit", }, }, - ["1985_BeltReducedFlaskChargesUsed"] = { + ["2021_BeltReducedFlaskChargesUsed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74080,7 +74304,7 @@ return { ["type"] = "implicit", }, }, - ["1988_BeltIncreasedFlaskDuration"] = { + ["2024_BeltIncreasedFlaskDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74090,7 +74314,7 @@ return { ["type"] = "implicit", }, }, - ["2003_AttackerTakesDamageNoRange"] = { + ["2039_AttackerTakesDamageNoRange"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74100,7 +74324,7 @@ return { ["type"] = "implicit", }, }, - ["2028_ManaReservationEfficiency"] = { + ["2064_ManaReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74110,7 +74334,7 @@ return { ["type"] = "implicit", }, }, - ["2032_ReducedReservation"] = { + ["2068_ReducedReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74120,7 +74344,7 @@ return { ["type"] = "implicit", }, }, - ["2034_PhysicalAttackDamageTaken"] = { + ["2070_PhysicalAttackDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74130,7 +74354,7 @@ return { ["type"] = "implicit", }, }, - ["2037_FlatFireDamageTaken"] = { + ["2073_FlatFireDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74140,7 +74364,7 @@ return { ["type"] = "implicit", }, }, - ["2045_DegenDamageTaken"] = { + ["2081_DegenDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74150,7 +74374,7 @@ return { ["type"] = "implicit", }, }, - ["2072_ReducedPhysicalDamageTaken"] = { + ["2108_ReducedPhysicalDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74160,7 +74384,7 @@ return { ["type"] = "implicit", }, }, - ["2238_PhysicalDamageTakenAsFirePercent"] = { + ["2280_PhysicalDamageTakenAsFirePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74170,7 +74394,7 @@ return { ["type"] = "implicit", }, }, - ["2239_PhysicalDamageTakenAsCold"] = { + ["2281_PhysicalDamageTakenAsCold"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74180,7 +74404,7 @@ return { ["type"] = "implicit", }, }, - ["2240_PhysicalDamageTakenAsLightningPercent"] = { + ["2282_PhysicalDamageTakenAsLightningPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74190,7 +74414,7 @@ return { ["type"] = "implicit", }, }, - ["2242_PhysicalDamageTakenAsChaos"] = { + ["2284_PhysicalDamageTakenAsChaos"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74200,7 +74424,7 @@ return { ["type"] = "implicit", }, }, - ["2249_AdditionalBlock"] = { + ["2291_AdditionalBlock"] = { ["sign"] = "+", ["specialCaseData"] = { }, @@ -74210,7 +74434,7 @@ return { ["type"] = "implicit", }, }, - ["2274_LocalChanceToBleed"] = { + ["2316_LocalChanceToBleed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74220,7 +74444,7 @@ return { ["type"] = "implicit", }, }, - ["2280_ChanceToBleed"] = { + ["2322_ChanceToBleed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74230,7 +74454,7 @@ return { ["type"] = "implicit", }, }, - ["2291_LightRadius"] = { + ["2333_LightRadius"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74240,7 +74464,7 @@ return { ["type"] = "implicit", }, }, - ["2314_CurseOnHitLevelVulnerability"] = { + ["2356_CurseOnHitLevelVulnerability"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74249,7 +74473,7 @@ return { ["type"] = "implicit", }, }, - ["2316_CurseOnHitLevelElementalWeakness"] = { + ["2358_CurseOnHitLevelElementalWeakness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74258,7 +74482,7 @@ return { ["type"] = "implicit", }, }, - ["2318_ConductivityOnHitLevel"] = { + ["2360_ConductivityOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74267,7 +74491,7 @@ return { ["type"] = "implicit", }, }, - ["2319_CurseOnHitDespair"] = { + ["2361_CurseOnHitDespair"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74276,7 +74500,7 @@ return { ["type"] = "implicit", }, }, - ["2321_FlammabilityOnHitLevel"] = { + ["2363_FlammabilityOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74285,7 +74509,7 @@ return { ["type"] = "implicit", }, }, - ["2322_FrostbiteOnHitLevel"] = { + ["2364_FrostbiteOnHitLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74294,7 +74518,7 @@ return { ["type"] = "implicit", }, }, - ["2325_MeleeWeaponAndUnarmedRange"] = { + ["2367_MeleeWeaponAndUnarmedRange"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74304,7 +74528,7 @@ return { ["type"] = "implicit", }, }, - ["2350_ItemDropsOnGuardianDeath"] = { + ["2392_ItemDropsOnGuardianDeath"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74313,7 +74537,7 @@ return { ["type"] = "implicit", }, }, - ["2355_FasterIgniteDamage"] = { + ["2397_FasterIgniteDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74323,7 +74547,7 @@ return { ["type"] = "implicit", }, }, - ["2369_SummonTotemCastSpeed"] = { + ["2411_SummonTotemCastSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74333,7 +74557,7 @@ return { ["type"] = "implicit", }, }, - ["2387_CurseEffectiveness"] = { + ["2429_CurseEffectiveness"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74343,7 +74567,7 @@ return { ["type"] = "implicit", }, }, - ["2400_MovementSpeedWhilePhased"] = { + ["2442_MovementSpeedWhilePhased"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74353,7 +74577,7 @@ return { ["type"] = "implicit", }, }, - ["2414_EnduranceChargeOnKillChance"] = { + ["2460_EnduranceChargeOnKillChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74363,7 +74587,7 @@ return { ["type"] = "implicit", }, }, - ["2416_FrenzyChargeOnKillChance"] = { + ["2462_FrenzyChargeOnKillChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74373,7 +74597,7 @@ return { ["type"] = "implicit", }, }, - ["2418_PowerChargeOnKillChance"] = { + ["2464_PowerChargeOnKillChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74383,7 +74607,7 @@ return { ["type"] = "implicit", }, }, - ["2431_EnergyShieldRegenerationPerMinute"] = { + ["2477_EnergyShieldRegenerationPerMinute"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74393,7 +74617,7 @@ return { ["type"] = "implicit", }, }, - ["2473_VaalSkillDamageAffectsSkillDamage"] = { + ["2519_VaalSkillDamageAffectsSkillDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74402,7 +74626,7 @@ return { ["type"] = "implicit", }, }, - ["2523_SpellDamagePer10Intelligence"] = { + ["2569_SpellDamagePer10Intelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74412,7 +74636,7 @@ return { ["type"] = "implicit", }, }, - ["2530_LocalMeleeWeaponRange"] = { + ["2576_LocalMeleeWeaponRange"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74422,7 +74646,7 @@ return { ["type"] = "implicit", }, }, - ["2572_TotemElementalResistances"] = { + ["2618_TotemElementalResistances"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74432,7 +74656,7 @@ return { ["type"] = "implicit", }, }, - ["2622_ChaosDamageTaken"] = { + ["2668_ChaosDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74442,7 +74666,7 @@ return { ["type"] = "implicit", }, }, - ["2691_MinionAttackSpeed"] = { + ["2737_MinionAttackSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74452,7 +74676,7 @@ return { ["type"] = "implicit", }, }, - ["2692_MinionCastSpeed"] = { + ["2738_MinionCastSpeed"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74462,7 +74686,7 @@ return { ["type"] = "implicit", }, }, - ["2695_MinionLifeRegeneration"] = { + ["2741_MinionLifeRegeneration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74472,7 +74696,7 @@ return { ["type"] = "implicit", }, }, - ["2696_MinionElementalResistancesForJewel"] = { + ["2742_MinionElementalResistancesForJewel"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74482,7 +74706,7 @@ return { ["type"] = "implicit", }, }, - ["2719_PhysicalDamageAddedAsRandomElement"] = { + ["2765_PhysicalDamageAddedAsRandomElement"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74492,7 +74716,7 @@ return { ["type"] = "implicit", }, }, - ["2740_GlobalChanceToBlindOnHit"] = { + ["2786_GlobalChanceToBlindOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74502,7 +74726,7 @@ return { ["type"] = "implicit", }, }, - ["2762_ElementalPenetration"] = { + ["2808_ElementalPenetration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74512,7 +74736,7 @@ return { ["type"] = "implicit", }, }, - ["2763_FireResistancePenetration"] = { + ["2809_FireResistancePenetration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74522,7 +74746,7 @@ return { ["type"] = "implicit", }, }, - ["2764_ColdResistancePenetration"] = { + ["2810_ColdResistancePenetration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74532,7 +74756,7 @@ return { ["type"] = "implicit", }, }, - ["2765_LightningResistancePenetration"] = { + ["2811_LightningResistancePenetration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74542,7 +74766,7 @@ return { ["type"] = "implicit", }, }, - ["2774_ChanceToGainOnslaughtOnKill"] = { + ["2820_ChanceToGainOnslaughtOnKill"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74552,7 +74776,7 @@ return { ["type"] = "implicit", }, }, - ["2810_AttackAndCastSpeedWithOnslaught"] = { + ["2856_AttackAndCastSpeedWithOnslaught"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74562,7 +74786,7 @@ return { ["type"] = "implicit", }, }, - ["2839_RecoverLifePercentOnBlock"] = { + ["2885_RecoverLifePercentOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74572,7 +74796,7 @@ return { ["type"] = "implicit", }, }, - ["2842_DamageWhileLeeching"] = { + ["2888_DamageWhileLeeching"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74582,7 +74806,7 @@ return { ["type"] = "implicit", }, }, - ["2871_VaalSkillDamage"] = { + ["2917_VaalSkillDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74592,7 +74816,7 @@ return { ["type"] = "implicit", }, }, - ["2880_AdditionalVaalSoulOnKill"] = { + ["2926_AdditionalVaalSoulOnKill"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74602,7 +74826,7 @@ return { ["type"] = "implicit", }, }, - ["2881_VaalSkillDuration"] = { + ["2927_VaalSkillDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74612,7 +74836,7 @@ return { ["type"] = "implicit", }, }, - ["2883_VaalSkillCriticalStrikeChance"] = { + ["2929_VaalSkillCriticalStrikeChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74622,7 +74846,7 @@ return { ["type"] = "implicit", }, }, - ["2945_BleedingDamage"] = { + ["2991_BleedingDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74632,7 +74856,7 @@ return { ["type"] = "implicit", }, }, - ["2946_PoisonDuration"] = { + ["2992_PoisonDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74642,7 +74866,7 @@ return { ["type"] = "implicit", }, }, - ["2949_PoisonOnHit"] = { + ["2995_PoisonOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74652,7 +74876,7 @@ return { ["type"] = "implicit", }, }, - ["2957_PoisonDamage"] = { + ["3003_PoisonDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74662,7 +74886,7 @@ return { ["type"] = "implicit", }, }, - ["2975_DamagePerEnduranceCharge"] = { + ["3021_DamagePerEnduranceCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74672,7 +74896,7 @@ return { ["type"] = "implicit", }, }, - ["3064_DamagePerFrenzyCharge"] = { + ["3110_DamagePerFrenzyCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74682,7 +74906,7 @@ return { ["type"] = "implicit", }, }, - ["3082_EnemiesExplodeOnDeathPhysicalChance"] = { + ["3128_EnemiesExplodeOnDeathPhysicalChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74692,7 +74916,7 @@ return { ["type"] = "implicit", }, }, - ["3140_IncreasedAuraEffectGraceCorrupted"] = { + ["3186_IncreasedAuraEffectGraceCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74702,7 +74926,7 @@ return { ["type"] = "implicit", }, }, - ["3144_IncreasedAuraEffectDeterminationCorrupted"] = { + ["3190_IncreasedAuraEffectDeterminationCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74712,7 +74936,7 @@ return { ["type"] = "implicit", }, }, - ["3145_IncreasedAuraEffectDisciplineCorrupted"] = { + ["3191_IncreasedAuraEffectDisciplineCorrupted"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74722,7 +74946,7 @@ return { ["type"] = "implicit", }, }, - ["3146_CannotBePoisoned"] = { + ["3192_CannotBePoisoned"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74731,7 +74955,7 @@ return { ["type"] = "implicit", }, }, - ["3150_FireDamageAvoidance"] = { + ["3196_FireDamageAvoidance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74741,7 +74965,7 @@ return { ["type"] = "implicit", }, }, - ["3151_ColdDamageAvoidance"] = { + ["3197_ColdDamageAvoidance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74751,7 +74975,7 @@ return { ["type"] = "implicit", }, }, - ["3152_LightningDamageAvoidance"] = { + ["3198_LightningDamageAvoidance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74761,7 +74985,7 @@ return { ["type"] = "implicit", }, }, - ["3154_UnholyMightOnKillPercentChance"] = { + ["3200_UnholyMightOnKillPercentChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74771,7 +74995,7 @@ return { ["type"] = "implicit", }, }, - ["3231_SpectreDamage"] = { + ["3277_SpectreDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74781,7 +75005,7 @@ return { ["type"] = "implicit", }, }, - ["3339_AuraEffect"] = { + ["3385_AuraEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74791,37 +75015,7 @@ return { ["type"] = "implicit", }, }, - ["3362_ColdPenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1211769158", - ["text"] = "Damage with Weapons Penetrates #% Cold Resistance", - ["type"] = "implicit", - }, - }, - ["3363_FirePenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1123291426", - ["text"] = "Damage with Weapons Penetrates #% Fire Resistance", - ["type"] = "implicit", - }, - }, - ["3364_LightningPenetrationWeapon"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3301510262", - ["text"] = "Damage with Weapons Penetrates #% Lightning Resistance", - ["type"] = "implicit", - }, - }, - ["3370_HasOnslaught"] = { + ["3416_HasOnslaught"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74830,7 +75024,7 @@ return { ["type"] = "implicit", }, }, - ["3416_ZombieIncreasedDamage"] = { + ["3462_ZombieIncreasedDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74840,7 +75034,7 @@ return { ["type"] = "implicit", }, }, - ["3432_SkeletonDamage"] = { + ["3478_SkeletonDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74850,7 +75044,7 @@ return { ["type"] = "implicit", }, }, - ["3531_LocalAttackReduceEnemyElementalResistance"] = { + ["3577_LocalAttackReduceEnemyElementalResistance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74860,7 +75054,7 @@ return { ["type"] = "implicit", }, }, - ["3757_AnimateGuardianResistances"] = { + ["3803_AnimateGuardianResistances"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74870,7 +75064,7 @@ return { ["type"] = "implicit", }, }, - ["3778_CurseEffectConductivity"] = { + ["3824_CurseEffectConductivity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74880,7 +75074,7 @@ return { ["type"] = "implicit", }, }, - ["3779_CurseEffectElementalWeakness"] = { + ["3825_CurseEffectElementalWeakness"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74890,7 +75084,7 @@ return { ["type"] = "implicit", }, }, - ["3781_CurseEffectFlammability"] = { + ["3827_CurseEffectFlammability"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74900,7 +75094,7 @@ return { ["type"] = "implicit", }, }, - ["3782_CurseEffectFrostbite"] = { + ["3828_CurseEffectFrostbite"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74910,7 +75104,7 @@ return { ["type"] = "implicit", }, }, - ["3784_CurseEffectVulnerability"] = { + ["3830_CurseEffectVulnerability"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74920,7 +75114,7 @@ return { ["type"] = "implicit", }, }, - ["3836_DamageAffectedByAuras"] = { + ["3882_DamageAffectedByAuras"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74930,7 +75124,7 @@ return { ["type"] = "implicit", }, }, - ["3849_DamageDuringFlaskEffect"] = { + ["3895_DamageDuringFlaskEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74940,7 +75134,7 @@ return { ["type"] = "implicit", }, }, - ["3936_PhysicalDamageRemovedFromManaBeforeLife"] = { + ["3982_PhysicalDamageRemovedFromManaBeforeLife"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74950,7 +75144,7 @@ return { ["type"] = "implicit", }, }, - ["3982_BleedingImmunity"] = { + ["4028_BleedingImmunity"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -74959,7 +75153,7 @@ return { ["type"] = "implicit", }, }, - ["3983_ChanceToAvoidBleeding"] = { + ["4029_ChanceToAvoidBleeding"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74969,7 +75163,7 @@ return { ["type"] = "implicit", }, }, - ["4040_AddedColdDamagePerFrenzyCharge"] = { + ["4086_AddedColdDamagePerFrenzyCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -74979,47 +75173,47 @@ return { ["type"] = "implicit", }, }, - ["412_DisplaySocketedGemsGetReducedReservation"] = { + ["4321_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3289633055", - ["text"] = "Socketed Gems have #% increased Reservation Efficiency", + ["id"] = "implicit.stat_287491423", + ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", ["type"] = "implicit", }, }, - ["414_SocketedSkillsManaMultiplier"] = { + ["4322_DeterminationPhysicalDamageReduction"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2865550257", - ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", + ["id"] = "implicit.stat_1873457881", + ["text"] = "#% additional Physical Damage Reduction while affected by Determination", ["type"] = "implicit", }, }, - ["4268_ReducedPhysicalDamageTakenVsAbyssMonsters"] = { + ["435_DisplaySocketedGemsGetReducedReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_287491423", - ["text"] = "#% additional Physical Damage Reduction against Abyssal Monsters", + ["id"] = "implicit.stat_3289633055", + ["text"] = "Socketed Gems have #% increased Reservation Efficiency", ["type"] = "implicit", }, }, - ["4269_DeterminationPhysicalDamageReduction"] = { + ["437_SocketedSkillsManaMultiplier"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1873457881", - ["text"] = "#% additional Physical Damage Reduction while affected by Determination", + ["id"] = "implicit.stat_2865550257", + ["text"] = "Socketed Skill Gems get a #% Cost & Reservation Multiplier", ["type"] = "implicit", }, }, - ["4364_AreaOfEffectIfStunnedEnemyRecently"] = { + ["4419_AreaOfEffectIfStunnedEnemyRecently"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75029,7 +75223,7 @@ return { ["type"] = "implicit", }, }, - ["4391_ArmourEvasionWithFortify"] = { + ["4446_ArmourEvasionWithFortify"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75039,7 +75233,7 @@ return { ["type"] = "implicit", }, }, - ["4423_AdditionalCriticalStrikeChanceWithAttacks"] = { + ["4478_AdditionalCriticalStrikeChanceWithAttacks"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75049,7 +75243,7 @@ return { ["type"] = "implicit", }, }, - ["4473_AttackDamagePerMana"] = { + ["4528_AttackDamagePerMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75059,7 +75253,7 @@ return { ["type"] = "implicit", }, }, - ["4492_AddedFireDamagePerStrength"] = { + ["4547_AddedFireDamagePerStrength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75069,7 +75263,7 @@ return { ["type"] = "implicit", }, }, - ["4495_AddedLightningDamagePerIntelligence"] = { + ["4550_AddedLightningDamagePerIntelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75079,7 +75273,7 @@ return { ["type"] = "implicit", }, }, - ["4532_AttacksBlindOnHitChance"] = { + ["4587_AttacksBlindOnHitChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75089,7 +75283,7 @@ return { ["type"] = "implicit", }, }, - ["4533_AttacksTauntOnHitChance"] = { + ["4588_AttacksTauntOnHitChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75099,7 +75293,7 @@ return { ["type"] = "implicit", }, }, - ["4535_AttackImpaleChance"] = { + ["4590_AttackImpaleChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75109,7 +75303,7 @@ return { ["type"] = "implicit", }, }, - ["4538_AddedColdDamagePerDexterity"] = { + ["4593_AddedColdDamagePerDexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75119,7 +75313,7 @@ return { ["type"] = "implicit", }, }, - ["4577_AilmentDamage"] = { + ["4636_AilmentDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75129,7 +75323,7 @@ return { ["type"] = "implicit", }, }, - ["4586_BleedDuration"] = { + ["4645_BleedDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75148,7 +75342,7 @@ return { ["type"] = "implicit", }, }, - ["5082_DoubleDamageChance"] = { + ["5135_DoubleDamageChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75158,7 +75352,7 @@ return { ["type"] = "implicit", }, }, - ["5093_ChanceWhenHitForArmourToBeDoubled"] = { + ["5146_ChanceWhenHitForArmourToBeDoubled"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75168,7 +75362,7 @@ return { ["type"] = "implicit", }, }, - ["5094_AdditionalChanceToEvade"] = { + ["5147_AdditionalChanceToEvade"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75178,7 +75372,7 @@ return { ["type"] = "implicit", }, }, - ["5096_GraceAdditionalChanceToEvade"] = { + ["5149_GraceAdditionalChanceToEvade"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75188,7 +75382,7 @@ return { ["type"] = "implicit", }, }, - ["5162_ChaosDamageAttackSkills"] = { + ["5216_ChaosDamageAttackSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75198,7 +75392,7 @@ return { ["type"] = "implicit", }, }, - ["5163_ChaosDamageSpellSkills"] = { + ["5217_ChaosDamageSpellSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75208,7 +75402,7 @@ return { ["type"] = "implicit", }, }, - ["5211_ChillEffect"] = { + ["5265_ChillEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75218,7 +75412,7 @@ return { ["type"] = "implicit", }, }, - ["5230_FlatColdDamageTaken"] = { + ["5284_FlatColdDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75228,7 +75422,7 @@ return { ["type"] = "implicit", }, }, - ["5232_ColdDamageAttackSkills"] = { + ["5286_ColdDamageAttackSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75238,7 +75432,7 @@ return { ["type"] = "implicit", }, }, - ["5233_ColdDamageSpellSkills"] = { + ["5287_ColdDamageSpellSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75248,7 +75442,7 @@ return { ["type"] = "implicit", }, }, - ["5342_SpellCriticalChanceWithDualWield"] = { + ["5398_SpellCriticalChanceWithDualWield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75258,7 +75452,7 @@ return { ["type"] = "implicit", }, }, - ["5343_SpellCriticalChanceWithShield"] = { + ["5399_SpellCriticalChanceWithShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75268,7 +75462,7 @@ return { ["type"] = "implicit", }, }, - ["5344_SpellCriticalChanceWithStaff"] = { + ["5400_SpellCriticalChanceWithStaff"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75278,7 +75472,7 @@ return { ["type"] = "implicit", }, }, - ["5368_SpellCriticalMultiplierWithDualWield"] = { + ["5424_SpellCriticalMultiplierWithDualWield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75288,7 +75482,7 @@ return { ["type"] = "implicit", }, }, - ["5369_SpellCriticalMultiplierWithShield"] = { + ["5425_SpellCriticalMultiplierWithShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75298,7 +75492,7 @@ return { ["type"] = "implicit", }, }, - ["5370_SpellCriticalMultiplierWithStaff"] = { + ["5426_SpellCriticalMultiplierWithStaff"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75308,7 +75502,7 @@ return { ["type"] = "implicit", }, }, - ["5397_CurseDuration"] = { + ["5454_CurseDuration"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75318,7 +75512,7 @@ return { ["type"] = "implicit", }, }, - ["5449_DamagePer15Dexterity"] = { + ["5506_DamagePer15Dexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75328,7 +75522,7 @@ return { ["type"] = "implicit", }, }, - ["5450_DamagePer15Intelligence"] = { + ["5507_DamagePer15Intelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75338,7 +75532,7 @@ return { ["type"] = "implicit", }, }, - ["5451_DamagePer15Strength"] = { + ["5508_DamagePer15Strength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75348,7 +75542,7 @@ return { ["type"] = "implicit", }, }, - ["5459_IncreasedDamagePerPowerCharge"] = { + ["5516_IncreasedDamagePerPowerCharge"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75358,7 +75552,7 @@ return { ["type"] = "implicit", }, }, - ["5462_DamageVSAbyssMonsters"] = { + ["5519_DamageVSAbyssMonsters"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75368,7 +75562,7 @@ return { ["type"] = "implicit", }, }, - ["5494_DamageTakenPer250Dexterity"] = { + ["5551_DamageTakenPer250Dexterity"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -75378,7 +75572,7 @@ return { ["type"] = "implicit", }, }, - ["5495_DamageTakenPer250Intelligence"] = { + ["5552_DamageTakenPer250Intelligence"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -75388,7 +75582,7 @@ return { ["type"] = "implicit", }, }, - ["5496_DamageTakenPer250Strength"] = { + ["5553_DamageTakenPer250Strength"] = { ["inverseKey"] = "reduced", ["specialCaseData"] = { }, @@ -75398,7 +75592,7 @@ return { ["type"] = "implicit", }, }, - ["5553_DeterminationReservation"] = { + ["5610_DeterminationReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75408,7 +75602,7 @@ return { ["type"] = "implicit", }, }, - ["5554_DeterminationReservationEfficiency"] = { + ["5611_DeterminationReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75418,7 +75612,7 @@ return { ["type"] = "implicit", }, }, - ["5565_DisciplineReservation"] = { + ["5622_DisciplineReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75428,7 +75622,7 @@ return { ["type"] = "implicit", }, }, - ["5566_DisciplineReservationEfficiency"] = { + ["5623_DisciplineReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75438,7 +75632,7 @@ return { ["type"] = "implicit", }, }, - ["5685_IncreasedWeaponElementalDamagePercent"] = { + ["5745_IncreasedWeaponElementalDamagePercent"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75448,7 +75642,7 @@ return { ["type"] = "implicit", }, }, - ["5726_EnemiesExplodeOnDeathPhysical"] = { + ["5788_EnemiesExplodeOnDeathPhysical"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75458,7 +75652,7 @@ return { ["type"] = "implicit", }, }, - ["5800_DisciplineEnergyShieldRegen"] = { + ["5864_DisciplineEnergyShieldRegen"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75468,7 +75662,7 @@ return { ["type"] = "implicit", }, }, - ["5873_FasterBleedDamage"] = { + ["5937_FasterBleedDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75478,7 +75672,7 @@ return { ["type"] = "implicit", }, }, - ["5874_FasterPoisonDamage"] = { + ["5938_FasterPoisonDamage"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75488,7 +75682,7 @@ return { ["type"] = "implicit", }, }, - ["5891_FireDamagePerStrength"] = { + ["5955_FireDamagePerStrength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75498,7 +75692,7 @@ return { ["type"] = "implicit", }, }, - ["5903_FireDamageAttackSkills"] = { + ["5967_FireDamageAttackSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75508,7 +75702,7 @@ return { ["type"] = "implicit", }, }, - ["5904_FireDamageSpellSkills"] = { + ["5968_FireDamageSpellSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75518,7 +75712,7 @@ return { ["type"] = "implicit", }, }, - ["6051_EnduranceChargeIfHitRecently"] = { + ["6120_EnduranceChargeIfHitRecently"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75528,7 +75722,7 @@ return { ["type"] = "implicit", }, }, - ["6087_OnslaughtOnHit"] = { + ["6157_OnslaughtOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75538,7 +75732,7 @@ return { ["type"] = "implicit", }, }, - ["6164_GraceReservation"] = { + ["6234_GraceReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75548,7 +75742,7 @@ return { ["type"] = "implicit", }, }, - ["6165_GraceReservationEfficiency"] = { + ["6235_GraceReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75558,7 +75752,7 @@ return { ["type"] = "implicit", }, }, - ["6657_FlatLightningDamageTaken"] = { + ["6731_FlatLightningDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75568,7 +75762,7 @@ return { ["type"] = "implicit", }, }, - ["6658_LightningDamageAttackSkills"] = { + ["6732_LightningDamageAttackSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75578,7 +75772,7 @@ return { ["type"] = "implicit", }, }, - ["6659_LightningDamageSpellSkills"] = { + ["6733_LightningDamageSpellSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75588,7 +75782,7 @@ return { ["type"] = "implicit", }, }, - ["7053_AttackAndCastSpeedCorruptedItem"] = { + ["7127_AttackAndCastSpeedCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75598,7 +75792,7 @@ return { ["type"] = "implicit", }, }, - ["7054_AttackDamageCorruptedItem"] = { + ["7128_AttackDamageCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75608,17 +75802,17 @@ return { ["type"] = "implicit", }, }, - ["7068_LocalChanceToIntimidateOnHit"] = { + ["7142_LocalChanceToIntimidateOnHit"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_78985352", + ["id"] = "implicit.stat_2089652545", ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", ["type"] = "implicit", }, }, - ["7073_GlobalCriticalStrikeChanceCorruptedItem"] = { + ["7147_GlobalCriticalStrikeChanceCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75628,7 +75822,7 @@ return { ["type"] = "implicit", }, }, - ["7078_AllDamageCorruptedItem"] = { + ["7152_AllDamageCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75638,7 +75832,7 @@ return { ["type"] = "implicit", }, }, - ["7079_DamageTakenCorruptedItem"] = { + ["7153_DamageTakenCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75648,7 +75842,7 @@ return { ["type"] = "implicit", }, }, - ["7121_ImmuneToCursesCorruptedItem"] = { + ["7196_ImmuneToCursesCorruptedItem"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -75657,7 +75851,7 @@ return { ["type"] = "implicit", }, }, - ["7161_IncreasedEnergyShieldCorruptedItem"] = { + ["7236_IncreasedEnergyShieldCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75667,7 +75861,7 @@ return { ["type"] = "implicit", }, }, - ["7163_IncreasedLifeCorruptedItem"] = { + ["7238_IncreasedLifeCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75677,7 +75871,7 @@ return { ["type"] = "implicit", }, }, - ["7167_MovementVelocityCorruptedItem"] = { + ["7243_MovementVelocityCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75687,7 +75881,7 @@ return { ["type"] = "implicit", }, }, - ["7169_LocalChanceToPoisonOnHit"] = { + ["7245_LocalChanceToPoisonOnHit"] = { ["sign"] = "", ["specialCaseData"] = { ["overrideModLine"] = "#% chance to Poison on Hit", @@ -75698,7 +75892,7 @@ return { ["type"] = "implicit", }, }, - ["7170_AllElementalResistanceCorruptedItem"] = { + ["7247_AllElementalResistanceCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75708,7 +75902,7 @@ return { ["type"] = "implicit", }, }, - ["7179_SpellDamageCorruptedItem"] = { + ["7257_SpellDamageCorruptedItem"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75718,7 +75912,7 @@ return { ["type"] = "implicit", }, }, - ["7311_RecoverManaPercentOnBlock"] = { + ["7391_RecoverManaPercentOnBlock"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75728,7 +75922,7 @@ return { ["type"] = "implicit", }, }, - ["7326_AddedManaRegenWithDualWield"] = { + ["7406_AddedManaRegenWithDualWield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75738,7 +75932,7 @@ return { ["type"] = "implicit", }, }, - ["7327_AddedManaRegenWithShield"] = { + ["7407_AddedManaRegenWithShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75748,7 +75942,7 @@ return { ["type"] = "implicit", }, }, - ["7329_AddedManaRegenWithStaff"] = { + ["7409_AddedManaRegenWithStaff"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75758,7 +75952,7 @@ return { ["type"] = "implicit", }, }, - ["8024_FortifyEffect"] = { + ["8196_FortifyEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75768,7 +75962,7 @@ return { ["type"] = "implicit", }, }, - ["8051_LifeAddedAsEnergyShield"] = { + ["8224_LifeAddedAsEnergyShield"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75778,7 +75972,7 @@ return { ["type"] = "implicit", }, }, - ["8145_MinionAccuracyRating"] = { + ["8312_MinionAccuracyRating"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75788,7 +75982,7 @@ return { ["type"] = "implicit", }, }, - ["8315_IncreasedAilmentEffectOnEnemies"] = { + ["8490_IncreasedAilmentEffectOnEnemies"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75798,7 +75992,7 @@ return { ["type"] = "implicit", }, }, - ["8427_PhysicalDamageWithUnholyMight"] = { + ["8610_PhysicalDamageWithUnholyMight"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75808,7 +76002,7 @@ return { ["type"] = "implicit", }, }, - ["8446_PhysicalDamageAttackSkills"] = { + ["8629_PhysicalDamageAttackSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75818,7 +76012,7 @@ return { ["type"] = "implicit", }, }, - ["8447_PhysicalDamageSpellSkills"] = { + ["8630_PhysicalDamageSpellSkills"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75828,7 +76022,7 @@ return { ["type"] = "implicit", }, }, - ["8538_PurityOfFireReservation"] = { + ["8722_PurityOfFireReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75838,7 +76032,7 @@ return { ["type"] = "implicit", }, }, - ["8539_PurityOfFireReservationEfficiency"] = { + ["8723_PurityOfFireReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75848,7 +76042,7 @@ return { ["type"] = "implicit", }, }, - ["8541_PurityOfIceReservation"] = { + ["8725_PurityOfIceReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75858,7 +76052,7 @@ return { ["type"] = "implicit", }, }, - ["8542_PurityOfIceReservationEfficiency"] = { + ["8726_PurityOfIceReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75868,7 +76062,7 @@ return { ["type"] = "implicit", }, }, - ["8544_PurityOfLightningReservation"] = { + ["8728_PurityOfLightningReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75878,7 +76072,7 @@ return { ["type"] = "implicit", }, }, - ["8545_PurityOfLightningReservationEfficiency"] = { + ["8729_PurityOfLightningReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75888,7 +76082,7 @@ return { ["type"] = "implicit", }, }, - ["8636_ReflectDamageTaken"] = { + ["8820_ReflectDamageTaken"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75898,7 +76092,7 @@ return { ["type"] = "implicit", }, }, - ["8658_RemoveFreezeOnFlaskUse"] = { + ["8842_RemoveFreezeOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -75907,7 +76101,7 @@ return { ["type"] = "implicit", }, }, - ["8662_RemoveIgniteOnFlaskUse"] = { + ["8846_RemoveIgniteOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -75916,7 +76110,7 @@ return { ["type"] = "implicit", }, }, - ["8670_RemoveShockOnFlaskUse"] = { + ["8854_RemoveShockOnFlaskUse"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -75925,7 +76119,7 @@ return { ["type"] = "implicit", }, }, - ["8736_ShockEffect"] = { + ["8922_ShockEffect"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75935,7 +76129,7 @@ return { ["type"] = "implicit", }, }, - ["8771_BrandAttachmentRange"] = { + ["8957_BrandAttachmentRange"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75945,7 +76139,7 @@ return { ["type"] = "implicit", }, }, - ["8842_AdditionalCriticalStrikeChanceWithSpells"] = { + ["9028_AdditionalCriticalStrikeChanceWithSpells"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75955,7 +76149,7 @@ return { ["type"] = "implicit", }, }, - ["8849_SpellsDoubleDamageChance"] = { + ["9036_SpellsDoubleDamageChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75965,7 +76159,7 @@ return { ["type"] = "implicit", }, }, - ["8857_SpellDamagePerMana"] = { + ["9044_SpellDamagePerMana"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75975,7 +76169,7 @@ return { ["type"] = "implicit", }, }, - ["8863_SpellDamagePer10Strength"] = { + ["9050_SpellDamagePer10Strength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75985,7 +76179,7 @@ return { ["type"] = "implicit", }, }, - ["8864_SpellDamagePer16Dexterity"] = { + ["9051_SpellDamagePer16Dexterity"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -75995,7 +76189,7 @@ return { ["type"] = "implicit", }, }, - ["8865_SpellDamagePer16Intelligence"] = { + ["9052_SpellDamagePer16Intelligence"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76005,7 +76199,7 @@ return { ["type"] = "implicit", }, }, - ["8866_SpellDamagePer16Strength"] = { + ["9053_SpellDamagePer16Strength"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76015,7 +76209,7 @@ return { ["type"] = "implicit", }, }, - ["8895_SpellsHinderOnHitChance"] = { + ["9082_SpellsHinderOnHitChance"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76025,7 +76219,7 @@ return { ["type"] = "implicit", }, }, - ["9108_DamageWithTriggeredSpells"] = { + ["9298_DamageWithTriggeredSpells"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76035,7 +76229,7 @@ return { ["type"] = "implicit", }, }, - ["9129_BurningGroundEffectEffectiveness"] = { + ["9319_BurningGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -76044,7 +76238,7 @@ return { ["type"] = "implicit", }, }, - ["9134_ChilledGroundEffectEffectiveness"] = { + ["9324_ChilledGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -76053,7 +76247,7 @@ return { ["type"] = "implicit", }, }, - ["9154_ShockedGroundEffectEffectiveness"] = { + ["9344_ShockedGroundEffectEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -76062,7 +76256,7 @@ return { ["type"] = "implicit", }, }, - ["9199_VitalityReservation"] = { + ["9388_VitalityReservation"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76072,7 +76266,7 @@ return { ["type"] = "implicit", }, }, - ["9200_VitalityReservationEfficiency"] = { + ["9389_VitalityReservationEfficiency"] = { ["sign"] = "", ["specialCaseData"] = { }, @@ -76082,7 +76276,7 @@ return { ["type"] = "implicit", }, }, - ["9415_UnwaveringStance"] = { + ["9606_UnwaveringStance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -76091,103 +76285,63 @@ return { ["type"] = "implicit", }, }, - ["957_BlockPercent"] = { + ["9670_ColdPenetrationWeapon"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2530372417", - ["text"] = "#% Chance to Block Attack Damage", - ["type"] = "implicit", - }, - }, - ["960_SpellDamageSuppressed"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4116705863", - ["text"] = "Prevent +#% of Suppressed Spell Damage", - ["type"] = "implicit", - }, - }, - ["961_ChanceToSuppressSpellsOld"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3680664274", - ["text"] = "+#% chance to Suppress Spell Damage", - ["type"] = "implicit", - }, - }, - ["976_SpellBlockPercentage"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_561307714", - ["text"] = "#% Chance to Block Spell Damage", - ["type"] = "implicit", - }, - }, - ["991_AllAttributes"] = { - ["sign"] = "", - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "+# to all Attributes", + ["id"] = "implicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "implicit", }, }, - ["992_StrengthImplicit"] = { + ["9671_FirePenetrationWeapon"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "+# to Strength", + ["id"] = "implicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "implicit", }, }, - ["993_DexterityImplicit"] = { + ["9672_LightningPenetrationWeapon"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "+# to Dexterity", + ["id"] = "implicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "implicit", }, }, - ["994_IntelligenceImplicit"] = { + ["992_BlockPercent"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "+# to Intelligence", + ["id"] = "implicit.stat_2530372417", + ["text"] = "#% Chance to Block Attack Damage", ["type"] = "implicit", }, }, - ["998_PercentageAllAttributes"] = { + ["995_SpellDamageSuppressed"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["id"] = "implicit.stat_4116705863", + ["text"] = "Prevent +#% of Suppressed Spell Damage", ["type"] = "implicit", }, }, - ["999_PercentageStrength"] = { + ["996_ChanceToSuppressSpellsOld"] = { ["sign"] = "", ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "implicit.stat_3680664274", + ["text"] = "+#% chance to Suppress Spell Damage", ["type"] = "implicit", }, }, From fd307c9b09d51185de9174edba18300b451e36a1 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:27:55 +1100 Subject: [PATCH 28/31] Fix Necromancer Offering charm not working (#7014) Co-authored-by: LocalIdentity --- src/Modules/ModParser.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 8c1987c70d..a72aecca7c 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -2473,6 +2473,7 @@ local specialModList = { -- Necromancer ["your offering skills also affect you"] = { mod("ExtraSkillMod", "LIST", { mod = mod("SkillData", "LIST", { key = "buffNotPlayer", value = false }) }, { type = "SkillName", skillNameList = { "Bone Offering", "Flesh Offering", "Spirit Offering", "Blood Offering" } }) }, ["your offerings have (%d+)%% reduced effect on you"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("BuffEffectOnPlayer", "INC", -num) }, { type = "SkillName", skillNameList = { "Bone Offering", "Flesh Offering", "Spirit Offering", "Blood Offering" } }) } end, + ["your offerings have (%d+)%% increased effect on you"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("BuffEffectOnPlayer", "INC", num) }, { type = "SkillName", skillNameList = { "Bone Offering", "Flesh Offering", "Spirit Offering", "Blood Offering" } }) } end, ["if you've consumed a corpse recently, you and your minions have (%d+)%% increased area of effect"] = function(num) return { mod("AreaOfEffect", "INC", num, { type = "Condition", var = "ConsumedCorpseRecently" }), mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", num) }, { type = "Condition", var = "ConsumedCorpseRecently" }) } end, ["with at least one nearby corpse, you and nearby allies deal (%d+)%% more damage"] = function(num) return { mod("ExtraAura", "LIST", { mod = mod("Damage", "MORE", num) }, { type = "MultiplierThreshold", var = "NearbyCorpse", threshold = 1 }) } end, ["with at least one nearby corpse, nearby enemies deal (%d+)%% reduced damage"] = function(num) return { mod("EnemyModifier", "LIST", { mod = mod("Damage", "INC", -num) }, { type = "MultiplierThreshold", var = "NearbyCorpse", threshold = 1 }) } end, From e75a632a390e3ea5c311d2290dc8e22620541399 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:34:56 +1100 Subject: [PATCH 29/31] Fix ES from Tricksters Escape Artist when using Oath of the Maji (#7018) The calculation for Escape Artist use the final doubled value after Maji has affected the armour Co-authored-by: LocalIdentity --- src/Modules/CalcDefence.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Modules/CalcDefence.lua b/src/Modules/CalcDefence.lua index 241372e3b8..e74d17fe29 100644 --- a/src/Modules/CalcDefence.lua +++ b/src/Modules/CalcDefence.lua @@ -275,18 +275,30 @@ function calcs.defence(env, actor) if armourData then wardBase = armourData.Ward or 0 if wardBase > 0 then + if slot == "Body Armour" and modDB:Flag(nil, "DoubleBodyArmourDefence") then + wardBase = wardBase * 2 + end output["WardOn"..slot] = wardBase end energyShieldBase = armourData.EnergyShield or 0 if energyShieldBase > 0 then + if slot == "Body Armour" and modDB:Flag(nil, "DoubleBodyArmourDefence") then + energyShieldBase = energyShieldBase * 2 + end output["EnergyShieldOn"..slot] = energyShieldBase end armourBase = armourData.Armour or 0 if armourBase > 0 then + if slot == "Body Armour" and (modDB:Flag(nil, "Unbreakable") or modDB:Flag(nil, "DoubleBodyArmourDefence")) then + armourBase = armourBase * 2 + end output["ArmourOn"..slot] = armourBase end evasionBase = armourData.Evasion or 0 if evasionBase > 0 then + if slot == "Body Armour" and ((modDB:Flag(nil, "Unbreakable") and modDB:Flag(nil, "IronReflexes")) or modDB:Flag(nil, "DoubleBodyArmourDefence")) then + evasionBase = evasionBase * 2 + end output["EvasionOn"..slot] = evasionBase end end From 5634e0fda06dcdf7d0d21763a9dd0d01b2db28f2 Mon Sep 17 00:00:00 2001 From: LocalIdentity <31035929+LocalIdentity@users.noreply.github.com> Date: Wed, 13 Dec 2023 07:40:24 +1100 Subject: [PATCH 30/31] Add support for new Uniques + fix parsing for changed mod names (#7016) * Update wording and mod parsing Updates the wording + parsing for: Bound Fate Umbilicus Immortalis Replica Infractem Dead Reckoning Storm Secret * Update new Uniques with mod ranges * Add parsing + support for some existing mods * Add support for Nametaker Adds parsing for the mods and adds a new stat for Enemy Power on enemies * Add support for The Burden of Shadows * Add support for The Adorned --------- Co-authored-by: LocalIdentity --- src/Data/ModCache.lua | 42 +++++++++++------------ src/Data/Uniques/Special/New.lua | 58 ++++++++++++++++---------------- src/Data/Uniques/belt.lua | 4 +-- src/Data/Uniques/bow.lua | 2 +- src/Data/Uniques/jewel.lua | 2 +- src/Data/Uniques/ring.lua | 2 +- src/Modules/CalcDefence.lua | 6 +++- src/Modules/CalcSetup.lua | 6 ++++ src/Modules/ConfigOptions.lua | 3 ++ src/Modules/ModParser.lua | 33 +++++++++++++++--- 10 files changed, 95 insertions(+), 63 deletions(-) diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index f56ececcd6..a4b9a9c1ca 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -2363,6 +2363,7 @@ c["100% increased Duration of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0 c["100% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["100% increased Effect of Buffs your Ancestor Totems grant while Active"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector",[3]="Earthbreaker"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["100% increased Effect of Chill you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=100}},nil} +c["100% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffectFromNonClusterSocket",value=100}}},nil} c["100% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=100}},nil} c["100% increased Effect of Onslaught on you"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil} c["100% increased Effect of Shocks you inflict while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=100}},nil} @@ -2990,7 +2991,7 @@ c["150% increased Critical Strike Chance against Enemies on Consecrated Ground d c["150% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=150}},nil} -c["150% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=150}}," of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels "} +c["150% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels, if not from Cluster Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffectFromNonClusterSocket",value=150}}},nil} c["150% increased Elemental Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil} c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil} c["150% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=150},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=150},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=150}},nil} @@ -5026,7 +5027,7 @@ c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="I c["5% more Damage per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=5}},nil} c["5% more chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=5}},nil} c["5% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=5}},nil} -c["5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{}," Leech is Instant per Enemy Power "} +c["5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=5}},nil} c["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil} c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil} c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil} @@ -6879,11 +6880,9 @@ c["Attacks Cost Life instead of Mana"]={{[1]={flags=1,keywordFlags=0,name="CostL c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "} c["Attacks Maim on Hit against Bleeding Enemies 25% chance to Blind with Hits against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies 25% chance to Blind with Hits against Bleeding Enemies "} c["Attacks Maim on Hit against Bleeding Enemies 25% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={nil,"Attacks Maim on Hit against Bleeding Enemies 25% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage "} -c["Attacks against you always Hit"]={nil,"Attacks always Hit "} -c["Attacks against you always Hit Your Damage with Hits is Lucky"]={nil,"Attacks always Hit Your Damage with Hits is Lucky "} +c["Attacks against you always Hit"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil} c["Attacks always inflict Bleeding while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} -c["Attacks cannot Hit you"]={nil,"Attacks cannot Hit you "} -c["Attacks cannot Hit you Attacks against you always Hit"]={nil,"Attacks cannot Hit you Attacks always Hit "} +c["Attacks cannot Hit you"]={{[1]={flags=0,keywordFlags=0,name="AlwaysEvade",type="FLAG",value=true}},nil} c["Attacks fire an additional Projectile"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Attacks fire an additional Projectile when in Off Hand"]={nil,"Attacks fire an additional Projectile when in Off Hand "} c["Attacks fire an additional Projectile when in Off Hand 55% increased Elemental Damage with Attack Skills"]={nil,"Attacks fire an additional Projectile when in Off Hand 55% increased Elemental Damage with Attack Skills "} @@ -7697,7 +7696,6 @@ c["Flasks applied to you have 20% reduced Effect"]={{[1]={[1]={actor="player",ty c["Flasks applied to you have 30% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}},nil} c["Flasks applied to you have 5% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil} c["Flasks applied to you have 8% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil} -c["Flasks apply to your Raised Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil} c["Flasks do not apply to you"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil} c["Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=1}},nil} c["Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second"]={nil,"Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second "} @@ -7705,6 +7703,7 @@ c["Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per c["Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=1}},nil} c["Flasks gain 3 Charges every 3 seconds while they are inactive"]={nil,"Flasks gain 3 Charges every 3 seconds while they are inactive "} c["Flasks gain 3 Charges every 3 seconds while they are inactive Survival"]={nil,"Flasks gain 3 Charges every 3 seconds while they are inactive Survival "} +c["Flasks you Use apply to your Raised Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil} c["Flesh and Stone has no Reservation"]={{[1]={[1]={skillId="BloodSandArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="BloodSandArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="BloodSandArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="BloodSandArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Focus has 25% increased Cooldown Recovery Rate"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="FocusCooldownRecovery",type="INC",value=25}},nil} c["Focus has 40% increased Cooldown Recovery Rate"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="FocusCooldownRecovery",type="INC",value=40}},nil} @@ -8279,14 +8278,12 @@ c["Herald of Purity has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={ c["Herald of Purity has 60% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} c["Herald of Purity has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} c["Herald of Thunder also creates a storm when you Shock an Enemy"]={nil,"also creates a storm when you Shock an Enemy "} -c["Herald of Thunder also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency"]={nil,"also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency "} +c["Herald of Thunder also creates a storm when you Shock an Enemy Storms Hit Enemies with 50% increased Frequency"]={nil,"also creates a storm when you Shock an Enemy Storms Hit Enemies with 50% increased Frequency "} c["Herald of Thunder has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Thunder has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Thunder has 50% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} c["Herald of Thunder has 60% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} c["Herald of Thunder has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} -c["Herald of Thunder's Storms Hit Enemies with 40% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=40}},nil} -c["Herald of Thunder's Storms Hit Enemies with 50% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=50}},nil} c["Hex Master"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Hex Master"}},nil} c["Hex Reflection"]={nil,"Hex Reflection "} c["Hex Reflection +10% Chance to Block Attack Damage while not Cursed"]={nil,"Hex Reflection +10% Chance to Block Attack Damage while not Cursed "} @@ -8303,8 +8300,7 @@ c["Hits Stun as though dealing 50% more Melee Fire Damage Ignites from Stunning c["Hits against Nearby Enemies have 50% increased Critical Strike Chance"]={nil,"Hits against Nearby Enemies have 50% increased Critical Strike Chance "} c["Hits against Nearby Enemies have 50% increased Critical Strike Chance 20% increased Global Defences"]={nil,"Hits against Nearby Enemies have 50% increased Critical Strike Chance 20% increased Global Defences "} c["Hits against you Cannot be Critical Strikes if you've been Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}}},[2]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}}}},nil} -c["Hits against you always are Critical Strikes"]={nil,"always are Critical Strikes "} -c["Hits against you always are Critical Strikes Attacks cannot Hit you"]={nil,"always are Critical Strikes Attacks cannot Hit you "} +c["Hits against you are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AlwaysCrit",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:AlwaysCrit",type="FLAG",value=true}}}},nil} c["Hits always Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["Hits always Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100}},nil} c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil} @@ -8337,8 +8333,7 @@ c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[ c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["Hits with this Weapon gain 100% of Physical Damage as Extra Cold or Lightning Damage"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=50},[2]={[1]={neg=true,type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=100}},nil} c["Hits with this Weapon gain 88% of Physical Damage as Extra Cold or Lightning Damage"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=44},[2]={[1]={neg=true,type="Condition",var="DualWielding"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsColdOrLightning",type="BASE",value=88}},nil} -c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}," per Enemy Power "} -c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power 5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Condition",var="{Hand}Attack"},[4]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}," per Enemy Power 5% of Leech is Instant per Enemy Power "} +c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["Hollow Palm Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Hollow Palm Technique"}},nil} c["If Amethyst Flask Charges are consumed, 25% of Physical Damage as Extra Chaos Damage"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="UsingAmethystFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil} c["If Bismuth Flask Charges are consumed, Penetrate 20% Elemental Resistances"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="UsingBismuthFlask"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=20}},nil} @@ -9214,9 +9209,8 @@ c["Projectiles deal 20% increased Damage with Hits and Ailments for each time th c["Projectiles deal 35% increased Damage with Hits against nearby Enemies"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=35}},nil} c["Projectiles deal 40% increased Damage with Hits to targets at the start"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=40}}," to targets at the start "} c["Projectiles deal 40% increased Damage with Hits to targets at the start of their movement, reducing to 0% as they travel farther"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=1},[2]={[1]=70,[2]=0}},type="DistanceRamp"},flags=1028,keywordFlags=0,name="Damage",type="INC",value=40}},nil} -c["Projectiles from Attacks Fork"]={nil,"Projectiles from Attacks Fork "} -c["Projectiles from Attacks Fork Projectiles from Attacks Fork an additional time"]={nil,"Projectiles from Attacks Fork Projectiles from Attacks Fork an additional time "} -c["Projectiles from Attacks Fork an additional time"]={nil,"Projectiles from Attacks Fork an additional time "} +c["Projectiles from Attacks Fork"]={{[1]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} +c["Projectiles from Attacks can Fork 1 additional time"]={{[1]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkTwice",type="FLAG",value=true},[2]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim "} c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},[3]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim from Attacks have 20% chance to Poison on Hit "} c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} @@ -10012,6 +10006,8 @@ c["Shocks you when you reach Maximum Power Charges"]={nil,"Shocks you when you r c["Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength"]={{[1]={[1]={div=200,stat="Str",type="PerStat"},[2]={skillName="Shrapnel Ballista",type="SkillName"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil} c["Siren Worm Bait"]={nil,"Siren Worm Bait "} c["Siren Worm Bait 40% reduced Quantity of Fish Caught"]={nil,"Siren Worm Bait 40% reduced Quantity of Fish Caught "} +c["Skeletons gain Added Chaos Damage equal to 25% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} +c["Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} c["Skill while a Unique Enemy is in your Presence"]={nil,"Skill while a Unique Enemy is in your Presence "} c["Skill while a Unique Enemy is in your Presence Limited to 1 Loyalty Tattoo"]={nil,"Skill while a Unique Enemy is in your Presence Limited to 1 Loyalty Tattoo "} c["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} @@ -10553,7 +10549,8 @@ c["Spells Triggered this way have 150% more Cost +28% to Fire Damage over Time M c["Spells Triggered this way have 150% more Cost Attacks with this Weapon deal Double Damage"]={nil,"Spells Triggered this way have 150% more Cost Attacks with this Weapon deal Double Damage "} c["Spells cast by Totems deal 25% increased Damage"]={{[1]={flags=2,keywordFlags=16384,name="Damage",type="INC",value=25}},nil} c["Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it"]={nil,"Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it "} -c["Spells deal added Chaos Damage equal to 20% of your maximum Life"]={nil,"dded Chaos Damage equal to 20% of your maximum Life "} +c["Spells deal added Chaos Damage equal to 18% of your maximum Life"]={{[1]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} +c["Spells deal added Chaos Damage equal to 20% of your maximum Life"]={{[1]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} c["Spells fire an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Spells have 10% reduced Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil} c["Spells have 30% increased Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} @@ -10576,6 +10573,8 @@ c["Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags c["Stance Skills have +6 seconds to Cooldown"]={{[1]={[2]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=6}},nil} c["Steal Power, Frenzy, and Endurance Charges on Hit"]={nil,"Steal Power, Frenzy, and Endurance Charges on Hit "} c["Steal Power, Frenzy, and Endurance Charges on Hit Total Recovery per second from Life Leech is Doubled"]={nil,"Steal Power, Frenzy, and Endurance Charges on Hit Total Recovery per second from Life Leech is Doubled "} +c["Storms Hit Enemies with 40% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=40}},nil} +c["Storms Hit Enemies with 50% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=50}},nil} c["Strength provides no bonus to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil} c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={{[1]={flags=0,keywordFlags=0,name="StrDmgBonusRatioOverride",type="BASE",value=0.3}},nil} c["Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil} @@ -10665,8 +10664,6 @@ c["Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main c["Summoned Skeleton Warriors are Permanent and Follow you"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="RaisedSkeletonPermanentDuration",type="FLAG",value=true}},nil} c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit "} c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage "} -c["Summoned Skeletons gain Added Chaos Damage equal to 25% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} -c["Summoned Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} c["Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}}}},nil} c["Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=30}}}},nil} c["Summoned Skeletons have Avatar of Fire"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}}}},nil} @@ -11064,7 +11061,7 @@ c["With at least 40 Intelligence in Radius, Rolling Magma"]={nil,"With at least c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova "} c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration "} c["With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons "} -c["With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Summoned Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={nil,"With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Summoned Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield "} +c["With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={nil,"With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield "} c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons "} c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "} c["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "} @@ -11338,8 +11335,7 @@ c["Your Hits Intimidate Enemies for 4 seconds while you are using Pride"]={nil," c["Your Hits Intimidate Enemies for 4 seconds while you are using Pride +50% to Chaos Resistance while affected by Purity of Elements"]={nil,"Your Hits Intimidate Enemies for 4 seconds while you are using Pride +50% to Chaos Resistance while affected by Purity of Elements "} c["Your Hits against Marked Enemy cannot be Blocked or Suppressed"]={nil,"Your Hits against Marked Enemy cannot be Blocked or Suppressed "} c["Your Hits against Marked Enemy cannot be Blocked or Suppressed Rare and Unique Enemies within 120 metres have Minimap Icons"]={nil,"Your Hits against Marked Enemy cannot be Blocked or Suppressed Rare and Unique Enemies within 120 metres have Minimap Icons "} -c["Your Hits are always Critical Strikes"]={nil,"Your Hits are always Critical Strikes "} -c["Your Hits are always Critical Strikes Hits against you always are Critical Strikes"]={nil,"Your Hits are always Critical Strikes Hits always are Critical Strikes "} +c["Your Hits are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "} c["Your Hits can't be Evaded by Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil} c["Your Hits cannot Penetrate or ignore Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="CannotElePenIgnore",type="FLAG",value=true}},nil} diff --git a/src/Data/Uniques/Special/New.lua b/src/Data/Uniques/Special/New.lua index 4579f4cc4c..cbf299ba57 100644 --- a/src/Data/Uniques/Special/New.lua +++ b/src/Data/Uniques/Special/New.lua @@ -10,7 +10,6 @@ Replica Covenant Spidersilk Robe League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist -Implicits: 0 Socketed Gems are Supported by Level 29 Added Cold Damage +(20-30) to Intelligence (210-250)% increased Energy Shield @@ -25,9 +24,9 @@ Requires Level: 60 Implicits: 1 {tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges -+1 to Maximum Fortification per Endurance Charge -(7-10)% increased Cooldown Recovery of Travel Skills per Frenzy Charge (20-25)% chance to lose a Frenzy Charge when you use a Travel Skill +(7-10)% increased Cooldown Recovery of Travel Skills per Frenzy Charge ++1 to Maximum Fortification per Endurance Charge (20-25)% chance to lose an Endurance Charge when you gain Fortification ]],[[ Ixchel's Temptation @@ -36,16 +35,17 @@ League: Affliction Requires Level 20 Implicits: 1 (6-15)% increased Rarity of Items found -{tags:jewellery_attribute}+(13-13) to all Attributes -{tags:attack,chaos_damage}Adds (9-9) to (18-18) Chaos Damage to Attacks -{tags:caster,jewellery_elemental}Adds (10-10) to (20-20) Fire Damage to Spells -{tags:critical}+(17-17)% to Global Critical Strike Multiplier -{tags:jewellery_defense}+(86-86) to Armour -{tags:jewellery_defense}+(93-93) to Evasion Rating -{tags:jewellery_defense}+(34-34) to maximum Energy Shield -{tags:life}+(26-26) to maximum Life -{tags:jewellery_resistance}+(10-10)% to all Elemental Resistances -{tags:attack,caster,speed}(6-6)% increased Attack and Cast Speed +{tags:jewellery_attribute}+(10-15) to all Attributes +{tags:attack,chaos_damage}Adds (7-10) to (15-18) Chaos Damage to Attacks +{tags:caster,jewellery_elemental}Adds (9-12) to (19-22) Fire Damage to Spells +{tags:jewellery_defense}+(80-100) to Armour +{tags:jewellery_defense}+(80-100) to Evasion Rating +{tags:jewellery_defense}+(30-35) to maximum Energy Shield +{tags:life}+(25-30) to maximum Life +{tags:critical}+(15-20)% to Global Critical Strike Multiplier +{tags:mana}+(20-25) to maximum Mana +{tags:jewellery_resistance}+(8-10)% to all Elemental Resistances +{tags:attack,caster,speed}(6-8)% increased Attack and Cast Speed Maximum Quality is 200% Corrupted ]],[[ @@ -53,18 +53,18 @@ Gamblesprint Hydrascale Boots League: Affliction Requires Level 59, 56 Str, 56 Dex -+(34-34) to Dexterity -(140-140)% increased Armour and Evasion -+(31-31)% to Lightning Resistance ++(30-40) to Dexterity +(100-150)% increased Armour and Evasion ++(20-40)% to Lightning Resistance When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased until Hit again ]],[[ Pragmatism Colosseum Plate League: Affliction -Implicits: 0 +Requires Level 49, 134 Str +12 to Level of Socketed Skill Gems -(100-100)% increased Armour -+(84-84) to maximum Mana +(80-120)% increased Armour ++(60-100) to maximum Mana -2 to Level of Socketed Skill Gems per Socketed Gem ]],[[ The Untouched Soul @@ -73,16 +73,16 @@ League: Affliction Requires Level 48 Implicits: 1 (12-20)% increased Rarity of Items found -+40 to maximum Life for each Empty Red Socket on any Equipped Item -+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item -+40 to maximum Mana for each Empty Blue Socket on any Equipped Item -+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item +{tags:life}+40 to maximum Life for each Empty Red Socket on any Equipped Item +{tags:attack}+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item +{tags:mana}+40 to maximum Mana for each Empty Blue Socket on any Equipped Item +{tags:jewellery_resistance}+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item ]],[[ The Trickster's Smile Visored Sallet League: Affliction -Implicits: 0 -(75-75)% increased Armour and Evasion +Requires Level 23, 28 Str, 28 Dex +(60-100)% increased Armour and Evasion Reflects 100 Cold Damage to Melee Attackers Reflects 100 Fire Damage to Melee Attackers Reflects 100 Lightning Damage to Melee Attackers @@ -162,10 +162,10 @@ Replica Hinekora's Sight Onyx Amulet League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist -+(10–16) to all Attributes -+(600–1000) to Accuracy Rating -+(600–1000) to Armour -+1% to all maximum Elemental Resistances +{tags:jewellery_attribute}+(10–16) to all Attributes +{tags:attack}+(600–1000) to Accuracy Rating +{tags:jewellery_defense}+(600–1000) to Armour +{tags:jewellery_resistance}+1% to all maximum Elemental Resistances You cannot be Maimed ]],[[ Replica Hyrri's Ire diff --git a/src/Data/Uniques/belt.lua b/src/Data/Uniques/belt.lua index 4298f0d530..42bb086fe0 100644 --- a/src/Data/Uniques/belt.lua +++ b/src/Data/Uniques/belt.lua @@ -144,7 +144,7 @@ Implicits: 1 {tags:life}+(60-80) to Maximum Life Every 5 seconds, gain one of the following for 5 seconds: Your Hits are always Critical Strikes -Hits against you always are Critical Strikes +Hits against you are always Critical Strikes Attacks cannot Hit you Attacks against you always Hit Your Damage with Hits is Lucky @@ -878,7 +878,7 @@ Implicits: 1 {tags:life}(8-12)% increased maximum Life {tags:life}Regenerate 2% of Life per second Flasks do not apply to you -Flasks apply to your Raised Zombies and Spectres +Flasks you Use apply to your Raised Zombies and Spectres ]],[[ Wurm's Molt Leather Belt diff --git a/src/Data/Uniques/bow.lua b/src/Data/Uniques/bow.lua index 05739420b1..74638e7d27 100644 --- a/src/Data/Uniques/bow.lua +++ b/src/Data/Uniques/bow.lua @@ -316,7 +316,7 @@ Adds (25-35) to (36-45) Physical Damage +(350-400) to Accuracy Rating Cannot Leech Mana Projectiles from Attacks Fork -Projectiles from Attacks Fork an additional time +Projectiles from Attacks can Fork 1 additional time ]],[[ Iron Commander Death Bow diff --git a/src/Data/Uniques/jewel.lua b/src/Data/Uniques/jewel.lua index a447ef916b..324db02e50 100644 --- a/src/Data/Uniques/jewel.lua +++ b/src/Data/Uniques/jewel.lua @@ -860,7 +860,7 @@ Radius: Medium {variant:1}With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons {variant:2}With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons {variant:3}With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons -{variant:4}Summoned Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield +{variant:4}Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield ]],[[ Fight for Survival Viridian Jewel diff --git a/src/Data/Uniques/ring.lua b/src/Data/Uniques/ring.lua index 03de42d65a..33d304b48c 100644 --- a/src/Data/Uniques/ring.lua +++ b/src/Data/Uniques/ring.lua @@ -1073,7 +1073,7 @@ Implicits: 1 {tags:jewellery_elemental}(20-30)% increased Lightning Damage (10-15)% chance to Shock Herald of Thunder also creates a storm when you Shock an Enemy -Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency +Storms Hit Enemies with (30-50)% increased Frequency {tags:jewellery_elemental}Take 250 Lightning Damage when Herald of Thunder Hits an Enemy ]],[[ The Taming diff --git a/src/Modules/CalcDefence.lua b/src/Modules/CalcDefence.lua index e74d17fe29..2c42372ca6 100644 --- a/src/Modules/CalcDefence.lua +++ b/src/Modules/CalcDefence.lua @@ -784,6 +784,10 @@ function calcs.defence(env, actor) output.EvadeChance = 0 output.MeleeEvadeChance = 0 output.ProjectileEvadeChance = 0 + elseif modDB:Flag(nil, "AlwaysEvade") then + output.EvadeChance = 100 + output.MeleeEvadeChance = 100 + output.ProjectileEvadeChance = 100 else local enemyAccuracy = round(calcLib.val(enemyDB, "Accuracy")) local evadeChance = modDB:Sum("BASE", nil, "EvadeChance") @@ -1311,7 +1315,7 @@ function calcs.buildDefenceEstimations(env, actor) }, } end - local enemyCritChance = enemyDB:Flag(nil, "NeverCrit") and 0 or (m_max(m_min((modDB:Override(nil, "enemyCritChance") or env.configInput["enemyCritChance"] or env.configPlaceholder["enemyCritChance"] or 0) * (1 + modDB:Sum("INC", nil, "EnemyCritChance") / 100 + enemyDB:Sum("INC", nil, "CritChance") / 100) * (1 - output["ConfiguredEvadeChance"] / 100), 100), 0)) + local enemyCritChance = enemyDB:Flag(nil, "NeverCrit") and 0 or enemyDB:Flag(nil, "AlwaysCrit") and 100 or (m_max(m_min((modDB:Override(nil, "enemyCritChance") or env.configInput["enemyCritChance"] or env.configPlaceholder["enemyCritChance"] or 0) * (1 + modDB:Sum("INC", nil, "EnemyCritChance") / 100 + enemyDB:Sum("INC", nil, "CritChance") / 100) * (1 - output["ConfiguredEvadeChance"] / 100), 100), 0)) local enemyCritDamage = m_max((env.configInput["enemyCritDamage"] or env.configPlaceholder["enemyCritDamage"] or 0) + enemyDB:Sum("BASE", nil, "CritMultiplier"), 0) output["EnemyCritEffect"] = 1 + enemyCritChance / 100 * (enemyCritDamage / 100) * (1 - output.CritExtraDamageReduction / 100) local enemyCfg = {keywordFlags = bit.bnot(KeywordFlag.MatchAll)} -- Match all keywordFlags parameter for enemy min-max damage mods diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index 8dcbca74b3..e36942e32e 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -645,6 +645,9 @@ function calcs.initEnv(build, mode, override, specEnv) if item.jewelData then item.jewelData.limitDisabled = nil end + if item and item.type == "Jewel" and item.name:match("The Adorned, Crimson Jewel") then + env.modDB.multipliers["CorruptedMagicJewelEffect"] = item.jewelData.corruptedMagicJewelIncEffectFromNonClusterSocket / 100 + end if item.limit and not env.configInput.ignoreJewelLimits then local limitKey = item.base.subType == "Timeless" and "Historic" or item.title if jewelLimits[limitKey] and jewelLimits[limitKey] >= item.limit then @@ -945,6 +948,9 @@ function calcs.initEnv(build, mode, override, specEnv) combinedList:MergeMod(mod) end env.itemModDB:ScaleAddList(combinedList, scale) + elseif item.type == "Jewel" and item.rarity == "MAGIC" and item.corrupted and env.modDB.multipliers["CorruptedMagicJewelEffect"] and not (item.base.subType == "Charm" or env.build.spec.nodes[tonumber(slot.nodeId)].expansionJewel) then + scale = scale + env.modDB.multipliers["CorruptedMagicJewelEffect"] + env.itemModDB:ScaleAddList(srcList, scale) else env.itemModDB:ScaleAddList(srcList, scale) end diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index 9abb562825..b7d8b77c11 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -1725,6 +1725,7 @@ Huge sets the radius to 11. enemyModList:NewMod("Condition:RareOrUnique", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) enemyModList:NewMod("AilmentThreshold", "MORE", 488, "Boss") modList:NewMod("WarcryPower", "BASE", 20, "Boss") + modList:NewMod("Multiplier:EnemyPower", "BASE", 20, "Boss") local defaultEleResist = 40 build.configTab.varControls['enemyLightningResist']:SetPlaceholder(defaultEleResist, true) @@ -1759,6 +1760,7 @@ Huge sets the radius to 11. enemyModList:NewMod("Condition:PinnacleBoss", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) enemyModList:NewMod("AilmentThreshold", "MORE", 404, "Boss") modList:NewMod("WarcryPower", "BASE", 20, "Boss") + modList:NewMod("Multiplier:EnemyPower", "BASE", 20, "Boss") local defaultEleResist = 50 build.configTab.varControls['enemyLightningResist']:SetPlaceholder(defaultEleResist, true) @@ -1792,6 +1794,7 @@ Huge sets the radius to 11. enemyModList:NewMod("DamageTaken", "MORE", -70, "Boss") enemyModList:NewMod("AilmentThreshold", "MORE", 404, "Boss") modList:NewMod("WarcryPower", "BASE", 20, "Boss") + modList:NewMod("Multiplier:EnemyPower", "BASE", 20, "Boss") local defaultEleResist = 50 build.configTab.varControls['enemyLightningResist']:SetPlaceholder(defaultEleResist, true) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index a72aecca7c..6a74977aa1 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -1997,6 +1997,7 @@ local specialModList = { ["spend life instead of mana for effects of skills"] = { }, ["skills cost %+(%d+) rage"] = function(num) return { mod("RageCostBase", "BASE", num) } end, ["non%-aura vaal skills require (%d+)%% reduced souls per use during effect"] = function(num) return { mod("SoulCost", "INC", -num, { type = "Condition", var = "UsingFlask" }, { type = "SkillType", skillType = SkillType.Aura, neg = true }, { type = "SkillType", skillType = SkillType.Vaal }) } end, + ["non%-aura vaal skills require (%d+)%% reduced souls per use"] = function(num) return { mod("SoulCost", "INC", -num, { type = "SkillType", skillType = SkillType.Aura, neg = true }, { type = "SkillType", skillType = SkillType.Vaal }) } end, ["vaal skills used during effect have (%d+)%% reduced soul gain prevention duration"] = function(num) return { mod("SoulGainPreventionDuration", "INC", -num, { type = "Condition", var = "UsingFlask" }, { type = "SkillType", skillType = SkillType.Vaal }) } end, ["vaal volcanic fissure and vaal molten strike have (%d+)%% reduced soul gain prevention duration"] = function(num) return { mod("SoulGainPreventionDuration", "INC", -num, { type = "SkillName", skillNameList = { "Volcanic Fissure", "Molten Strike" } }, { type = "SkillType", skillType = SkillType.Vaal }) } end, ["vaal attack skills cost rage instead of requiring souls to use"] = { flag("CostRageInsteadOfSouls", nil, ModFlag.Attack, { type = "SkillType", skillType = SkillType.Vaal }) }, @@ -2617,6 +2618,7 @@ local specialModList = { ["life leech from hits with this weapon applies instantly"] = { mod("InstantLifeLeech", "BASE", 100, { type = "Condition", var = "{Hand}Attack" }) }, ["life leech from hits with this weapon is instant"] = { mod("InstantLifeLeech", "BASE", 100, { type = "Condition", var = "{Hand}Attack" }) }, ["gain life from leech instantly from hits with this weapon"] = { mod("InstantLifeLeech", "BASE", 100, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }) }, + ["(%d+)%% of leech from hits with this weapon is instant per enemy power"] = function(num) return { mod("InstantLifeLeech", "BASE", num, nil, ModFlag.Hit, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }, { type = "Multiplier", var = "EnemyPower"}) } end, ["instant recovery"] = { mod("FlaskInstantRecovery", "BASE", 100) }, ["life flasks used while on low life apply recovery instantly"] = { mod("LifeFlaskInstantRecovery", "BASE", 100, { type = "Condition", var = "LowMana" }) }, ["mana flasks used while on low mana apply recovery instantly"] = { mod("ManaFlaskInstantRecovery", "BASE", 100, { type = "Condition", var = "LowMana" }) }, @@ -2936,6 +2938,8 @@ local specialModList = { ["marked enemy cannot deal critical strikes"] = { mod("EnemyModifier", "LIST", { mod = flag("NeverCrit", { type = "Condition", var = "Marked" }) }), mod("EnemyModifier", "LIST", { mod = flag("Condition:NeverCrit", { type = "Condition", var = "Marked" })}) }, ["hits against you cannot be critical strikes if you've been stunned recently"] = { mod("EnemyModifier", "LIST", { mod = flag("NeverCrit") }, {type = "Condition", var = "StunnedRecently" }), mod("EnemyModifier", "LIST", { mod = flag("Condition:NeverCrit")}, {type = "Condition", var = "StunnedRecently" })}, ["nearby enemies cannot deal critical strikes"] = { mod("EnemyModifier", "LIST", { mod = flag("NeverCrit") }), mod("EnemyModifier", "LIST", { mod = flag("Condition:NeverCrit") }) }, + ["hits against you are always critical strikes"] = { mod("EnemyModifier", "LIST", { mod = flag("AlwaysCrit") }), mod("EnemyModifier", "LIST", { mod = flag("Condition:AlwaysCrit") }) }, + ["your hits are always critical strikes"] = { mod("CritChance", "OVERRIDE", 100) }, ["hits have (%d+)%% increased critical strike chance against you"] = function(num) return { mod("EnemyCritChance", "INC", num) } end, ["stuns from critical strikes have (%d+)%% increased duration"] = function(num) return { mod("EnemyStunDurationOnCrit", "INC", num) } end, -- Generic Ailments @@ -3711,7 +3715,10 @@ local specialModList = { ["summoned skeletons gain added chaos damage equal to (%d+)%% of maximum energy shield on your equipped shield"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "EnergyShieldOnWeapon 2", actor = "parent", percent = num }) }), mod("MinionModifier", "LIST", { mod = mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "EnergyShieldOnWeapon 2", actor = "parent", percent = num }) }), - + } end, + ["skeletons gain added chaos damage equal to (%d+)%% of maximum energy shield on your equipped shield"] = function(num) return { + mod("MinionModifier", "LIST", { mod = mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "EnergyShieldOnWeapon 2", actor = "parent", percent = num }) }), + mod("MinionModifier", "LIST", { mod = mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "EnergyShieldOnWeapon 2", actor = "parent", percent = num }) }), } end, ["minions convert (%d+)%% of physical damage to fire damage per red socket"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("PhysicalDamageConvertToFire", "BASE", num) }, { type = "Multiplier", var = "RedSocketIn{SlotName}" }) } end, ["minions convert (%d+)%% of physical damage to cold damage per green socket"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("PhysicalDamageConvertToCold", "BASE", num) }, { type = "Multiplier", var = "GreenSocketIn{SlotName}" }) } end, @@ -3803,6 +3810,12 @@ local specialModList = { ["right ring slot: your shocking skitterbot's aura applies socketed h?e?x? ?curse instead"] = { flag("SkitterbotsCannotShock", { type = "SlotNumber", num = 2 }) }, ["projectiles from spells cannot pierce"] = { flag("CannotPierce", nil, ModFlag.Spell) }, ["projectiles fork"] = { flag("ForkOnce", nil, ModFlag.Projectile), mod("ForkCountMax", "BASE", 1, nil, ModFlag.Projectile) }, + ["projectiles from attacks fork"] = { flag("ForkOnce", nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }), mod("ForkCountMax", "BASE", 1, nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }) }, + ["projectiles from attacks fork an additional time"] = { flag("ForkTwice", nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }), mod("ForkCountMax", "BASE", 1, nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }) }, + ["projectiles from attacks can fork (%d+) additional times?"] = function(num) return { + flag("ForkTwice", nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }), + mod("ForkCountMax", "BASE", num, nil, ModFlag.Projectile, { type = "SkillType", skillType = SkillType.RangedAttack }) + } end, ["(%d+)%% increased critical strike chance with arrows that fork"] = function(num) return { mod("CritChance", "INC", num, nil, ModFlag.Bow, { type = "StatThreshold", stat = "ForkRemaining", threshold = 1 }, { type = "StatThreshold", stat = "PierceCount", threshold = 0, upper = true }) } end, @@ -3916,6 +3929,8 @@ local specialModList = { } end, ["you have mind over matter while at maximum power charges"] = { mod("Keystone", "LIST", "Mind Over Matter", { type = "StatThreshold", stat = "PowerCharges", thresholdStat = "PowerChargesMax" }) }, ["cannot evade enemy attacks"] = { flag("CannotEvade") }, + ["attacks cannot hit you"] = { flag("AlwaysEvade") }, + ["attacks against you always hit"] = { flag("CannotEvade") }, ["cannot block"] = { flag("CannotBlockAttacks"), flag("CannotBlockSpells") }, ["cannot block while you have no energy shield"] = { flag("CannotBlockAttacks", { type = "Condition", var = "HaveEnergyShield", neg = true }), flag("CannotBlockSpells", { type = "Condition", var = "HaveEnergyShield", neg = true }) }, ["cannot block attacks"] = { flag("CannotBlockAttacks") }, @@ -4183,6 +4198,7 @@ local specialModList = { ["flasks do not apply to you"] = { flag("FlasksDoNotApplyToPlayer") }, ["flasks apply to your zombies and spectres"] = { flag("FlasksApplyToMinion", { type = "SkillName", skillNameList = { "Raise Zombie", "Raise Spectre" } }) }, ["flasks apply to your raised zombies and spectres"] = { flag("FlasksApplyToMinion", { type = "SkillName", skillNameList = { "Raise Zombie", "Raise Spectre" } }) }, + ["flasks you use apply to your raised zombies and spectres"] = { flag("FlasksApplyToMinion", { type = "SkillName", skillNameList = { "Raise Zombie", "Raise Spectre" } }) }, ["your minions use your flasks when summoned"] = { flag("FlasksApplyToMinion") }, ["recover an additional (%d+)%% of flask's life recovery amount over 10 seconds if used while not on full life"] = function(num) return { mod("FlaskAdditionalLifeRecovery", "BASE", num) @@ -4299,6 +4315,7 @@ local specialModList = { ["added small passive skills grant nothing"] = { mod("JewelData", "LIST", { key = "clusterJewelSmallsAreNothingness", value = true }) }, ["added small passive skills have (%d+)%% increased effect"] = function(num) return { mod("JewelData", "LIST", { key = "clusterJewelIncEffect", value = num }) } end, ["this jewel's socket has (%d+)%% increased effect per allocated passive skill between it and your class' starting location"] = function(num) return { mod("JewelData", "LIST", { key = "jewelIncEffectFromClassStart", value = num }) } end, + ["(%d+)%% increased effect of jewel socket passive skills containing corrupted magic jewels, if not from cluster jewels"] = function(num) return { mod("JewelData", "LIST", { key = "corruptedMagicJewelIncEffectFromNonClusterSocket", value = num }) } end, -- Misc ["can't use chest armour"] = { mod("CanNotUseBody", "Flag", 1, { type = "DisablesItem", slotName = "Body Armour" }) }, --["can't use helmets"] = { mod("CanNotUseHelmet", "Flag", 1, { type = "DisablesItem", slotName = "Helmet" }) }, -- this one does not work due to being on a passive? @@ -4442,13 +4459,17 @@ local specialModList = { ["attacks with this weapon have added maximum lightning damage equal to (%d+)%% of your maximum energy shield"] = function(num) return { mod("LightningMax", "BASE", 1, { type = "PercentStat", stat = "EnergyShield" , percent = num }, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }), } end, - ["attacks with this weapon have added maximum lightning damage equal to (%d+)%% of player maximum energy shield"] = function(num) return { + ["attacks with this weapon have added maximum lightning damage equal to (%d+)%% of player'?s? maximum energy shield"] = function(num) return { mod("LightningMax", "BASE", 1, { type = "PercentStat", stat = "EnergyShield" , percent = num, actor = "parent" }, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }), } end, ["gain added chaos damage equal to (%d+)%% of ward"] = function(num) return { mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "Ward", percent = num }), mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "Ward", percent = num }), - } end, + } end, + ["spells deal added chaos damage equal to (%d+)%% of your maximum life"] = function(num) return { + mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "Life", percent = num }, { type = "SkillType", skillType = SkillType.Spell }), + mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "Life", percent = num }, { type = "SkillType", skillType = SkillType.Spell }), + } end, ["every 16 seconds you gain iron reflexes for 8 seconds"] = { flag("Condition:HaveArborix"), }, @@ -4505,7 +4526,8 @@ local specialModList = { ["base critical strike chance for attacks with weapons is ([%d%.]+)%%"] = function(num) return { mod("WeaponBaseCritChance", "OVERRIDE", num) } end, ["base critical strike chance of spells is the critical strike chance of y?o?u?r? ?main hand weapon"] = { flag("BaseCritFromMainHand", nil, ModFlag.Spell) }, -- old wordings ["base spell critical strike chance of spells is equal to that of main hand weapon"] = { flag("BaseCritFromMainHand", nil, ModFlag.Spell) }, - ["critical strike chance is (%d+)%% for hits with this weapon"] = function(num) return { mod("CritChance", "OVERRIDE", num, nil, ModFlag.Hit, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }) } end, + ["critical strike chance is (%d+)%% for hits with this weapon"] = function(num) return { mod("CritChance", "OVERRIDE", num, nil, ModFlag.Hit, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }) } end, + ["hits with this weapon have %+(%d+)%% to critical strike multiplier per enemy power"] = function(num) return { mod("CritMultiplier", "BASE", num, nil, ModFlag.Hit, { type = "Condition", var = "{Hand}Attack" }, { type = "SkillType", skillType = SkillType.Attack }, { type = "Multiplier", var = "EnemyPower"}) } end, ["maximum critical strike chance is (%d+)%%"] = function(num) return { mod("CritChanceCap", "OVERRIDE", num), } end, @@ -4590,6 +4612,7 @@ local specialModList = { mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Forbidden Rite", "Dark Pact" } }), } end, ["herald of thunder's storms hit enemies with (%d+)%% increased frequency"] = function(num) return { mod("HeraldStormFrequency", "INC", num), } end, + ["storms hit enemies with (%d+)%% increased frequency"] = function(num) return { mod("HeraldStormFrequency", "INC", num), } end, ["your critical strikes have a (%d+)%% chance to deal double damage"] = function(num) return { mod("DoubleDamageChanceOnCrit", "BASE", num) } end, ["elemental skills deal triple damage"] = { mod("TripleDamageChance", "BASE", 100, { type = "SkillType", skillTypeList = { SkillType.Cold, SkillType.Fire, SkillType.Lightning } }), }, ["deal triple damage with elemental skills"] = { mod("TripleDamageChance", "BASE", 100, { type = "SkillType", skillTypeList = { SkillType.Cold, SkillType.Fire, SkillType.Lightning } }), }, @@ -4659,7 +4682,7 @@ local specialModList = { ["volatile dead and cremation penetrate (%d+)%% fire resistance per (%d+) dexterity"] = function(inc, _, num) return { mod("FirePenetration", "BASE", inc, { type = "PerStat", stat = "Dex", div = num }, { type = "SkillName", skillNameList = { "Volatile Dead", "Cremation" } }) } end, ["regenerate (%d+) mana per second while any enemy is in your righteous fire or scorching ray"] = function( num) return { mod("ManaRegen", "BASE", num, { type = "Condition", var = "InRFOrScorchingRay" }) } end, ["%+(%d+)%% to wave of conviction damage over time multiplier per ([%d%.]+) seconds of duration expired"] = function(num) return { mod("WaveOfConvictionDurationDotMulti", "INC", num) } end, - ["when an enemy hit deals elemental damage to you, their resistance to those elements becomes zero for 4 seconds"] = { flag("Condition:HaveTrickstersSmile"), }, + ["when an enemy hit deals elemental damage to you, their resistance to those elements becomes zero for (%d+) seconds"] = { flag("Condition:HaveTrickstersSmile"), }, -- Pantheon: Soul of Tukohama support ["while stationary, gain ([%d%.]+)%% of life regenerated per second every second, up to a maximum of (%d+)%%"] = function(num, _, limit) return { mod("LifeRegenPercent", "BASE", num, { type = "Multiplier", var = "StationarySeconds", limit = tonumber(limit), limitTotal = true }, { type = "Condition", var = "Stationary" }), From 164d7c4b36f195e6e3efe763eb663424462c2b1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 08:00:18 +1100 Subject: [PATCH 31/31] Release 2.37.0 (#7019) * Prepare release 2.37.0 * Fix changelogs --------- Co-authored-by: LocalIdentity Co-authored-by: LocalIdentity --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ changelog.txt | 26 ++++++++++++++++++++++++++ manifest.xml | 2 +- 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e95aefb598..79ddd52c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## [v2.37.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.37.0) (2023/12/13) + +[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.36.1...v2.37.0) + + + +## What's Changed +### New to Path of Building +- Add support for new Uniques [\#7016](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7016) ([LocalIdentity](https://github.com/LocalIdentity)) + - The Adorned + - The Burden of Shadows + - Nametaker + +### User Interface +- Change Manastorm config option to not overrun options box [\#7008](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7008) ([Ivniinvi](https://github.com/Ivniinvi)) + +### Fixed Bugs +- Fix parsing for changed mod names [\#7016](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7016) ([LocalIdentity](https://github.com/LocalIdentity)) + - Storm Secret + - Umbilicus Immortalis + - Replica Infractem + - Dead Reckoning +- Fix Projectile count being 1 higher on all skills [\#7006](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7006) ([LocalIdentity](https://github.com/LocalIdentity)) +- Fix Ascendant nodes counting towards allocated passive skill total [\#7002](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7002) ([Regisle](https://github.com/Regisle)) +- Fix Pyroclast Mine Aura Effect scaling Maximum Added Flat Damage [\#7005](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7005) ([LocalIdentity](https://github.com/LocalIdentity)) +- Fix Herald of Agony quality not working [\#7017](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7017) ([LocalIdentity](https://github.com/LocalIdentity)) +- Fix error when using Trader making you unable to search for item [\#7011](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7011) ([LocalIdentity](https://github.com/LocalIdentity)) +- Fix parsing for Necromancer Offering charm not working [\#7014](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7014) ([LocalIdentity](https://github.com/LocalIdentity)) +- Fix ES from Tricksters Escape Artist when using Oath of the Maji [\#7018](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7018) ([LocalIdentity](https://github.com/LocalIdentity)) + + ## [v2.36.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.36.1) (2023/12/11) [Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.36.0...v2.36.1) diff --git a/changelog.txt b/changelog.txt index f1742b78c4..85202f6e2e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,29 @@ +VERSION[2.37.0][2023/12/13] + +--- New to Path of Building --- +* Add support for new Uniques (LocalIdentity) + * The Adorned + * The Burden of Shadows + * Nametaker + +--- User Interface --- +* Change Manastorm config option to not overrun options box (Ivniinvi) + +--- Fixed Bugs --- +* Fix parsing for changed mod names (LocalIdentity) + * Storm Secret + * Umbilicus Immortalis + * Replica Infractem + * Dead Reckoning +* Fix Projectile count being 1 higher on all skills (LocalIdentity) +* Fix Ascendant nodes counting towards allocated passive skill total (Regisle) +* Fix Pyroclast Mine Aura Effect scaling Maximum Added Flat Damage (LocalIdentity) +* Fix Herald of Agony quality not working (LocalIdentity) +* Fix error when using Trader making you unable to search for item (LocalIdentity) +* Fix parsing for Necromancer Offering charm not working (LocalIdentity) +* Fix ES from Tricksters Escape Artist when using Oath of the Maji (LocalIdentity) + + VERSION[2.36.1][2023/12/11] --- Fixed Crashes --- diff --git a/manifest.xml b/manifest.xml index 14808bba2e..02efbfce73 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,6 +1,6 @@ - +