diff --git a/spec/System/TestPassiveSpec_spec.lua b/spec/System/TestPassiveSpec_spec.lua index 73e32a6b06..2a6a248db4 100644 --- a/spec/System/TestPassiveSpec_spec.lua +++ b/spec/System/TestPassiveSpec_spec.lua @@ -44,6 +44,27 @@ describe("TestPassiveSpec", function() assert.is_true(ok, err) end) + it("remaps legacy class ids only for trees before 0.4", function() + local function loadClass(treeVersion, classId) + local spec = new("PassiveSpec", build, latestTreeVersion) + spec.treeVersion = treeVersion + spec:Load({ + attrib = { + title = "Legacy Class Test", + classId = tostring(classId), + ascendClassId = "0", + nodes = "", + } + }, "legacy_class.xml") + return spec.curClassName + end + + assert.are.equals("Witch", loadClass("0_1", 3)) + assert.are.equals("Huntress", loadClass("0_2", 1)) + assert.are.equals("Monk", loadClass("0_3", 6)) + assert.are.equals("Witch", loadClass("0_4", 1)) + end) + local function allocNode(spec, nodeId, allocMode) local node = spec.nodes[nodeId] spec.allocMode = allocMode diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index 87ebb7c8e6..3b2d0ce207 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -16,6 +16,12 @@ local b_rshift = bit.rshift local band = AND64 -- bit.band local bor = OR64 -- bit.bor +local legacyClassIdMap = { + ["0_1"] = { [0] = 2, [1] = 6, [2] = 9, [3] = 1, [4] = 7, [5] = 10 }, + ["0_2"] = { [0] = 2, [1] = 8, [2] = 6, [3] = 9, [4] = 1, [5] = 7, [6] = 10 }, + ["0_3"] = { [0] = 2, [1] = 8, [2] = 6, [3] = 9, [4] = 1, [5] = 7, [6] = 10 }, +} + local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler", function(self, build, treeVersion, convert) self.UndoHandler() @@ -24,7 +30,7 @@ local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler", function(self, b -- Initialise and build all tables self:Init(treeVersion, convert) - self:SelectClass(0) + self:SelectClass(self.tree.constants.classes.DexClass) end) function PassiveSpecClass:Init(treeVersion, convert) @@ -157,6 +163,8 @@ function PassiveSpecClass:Load(xml, dbFileName) if self.tree.classIntegerIdMap[classInternalId] then classId = self.tree.classIntegerIdMap[classInternalId] end + elseif classId ~= -1 and legacyClassIdMap[self.treeVersion] then + classId = legacyClassIdMap[self.treeVersion][classId] or classId end if xml.attrib.ascendancyInternalId then local ascendancyInternalId = tostring(xml.attrib.ascendancyInternalId) diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 82c064f3ed..991d4cd753 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -78,10 +78,11 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) self.size = m_min(self.max_x - self.min_x, self.max_y - self.min_y) * self.scaleImage * 1.1 - for i = 0, 6 do - self.classes[i] = self.classes[i + 1] - self.classes[i + 1] = nil + local classes = { } + for _, class in pairs(self.classes) do + classes[class.integerId] = class end + self.classes = classes -- Build maps of class name -> class table self.classNameMap = { } @@ -119,6 +120,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) self.orbitAnglesByOrbit = self.constants.orbitAnglesByOrbit ConPrintf("Loading passive tree assets...") + self.assets = self.assets or {} for name, data in pairs(self.assets) do self:LoadImage(data[1], data, "MIPMAP") end @@ -139,6 +141,25 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) end end + self.spriteMap = { } + self.spriteCoords = self.spriteCoords or {} + for file, fileInfo in pairs(self.spriteCoords) do + local data = { } + self:LoadImage(file, data, "CLAMP") + for name, coords in pairs(fileInfo) do + self.spriteMap[name] = { + found = data.width > 0, + handle = data.handle, + width = coords.w, + height = coords.h, + [1] = coords.x / data.width, + [2] = coords.y / data.height, + [3] = (coords.x + coords.w) / data.width, + [4] = (coords.y + coords.h) / data.height + } + end + end + for type, data in pairs(self.nodeOverlay) do local asset = self:GetAssetByName(data.alloc) local artWidth = asset.width * self.scaleImage @@ -172,7 +193,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) node.o = node.orbit node.oidx = node.orbitIndex node.dn = node.name - node.sd = node.stats + node.sd = node.stats or {} node.__index = node node.linkedId = { } @@ -241,6 +262,14 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) end end + if node.aliasPassiveSocket then + local aliasPassiveSocket = node.aliasPassiveSocket:lower() + if self.notableMap[aliasPassiveSocket] then + ConPrintf("Warning: aliasPassiveSocket '"..node.aliasPassiveSocket.."' for node '"..node.dn.."' is already used by notable '"..self.notableMap[aliasPassiveSocket].dn.."'.") + end + self.notableMap[aliasPassiveSocket] = node + end + -- Find the node group local group = self.groups[node.g] if group then @@ -304,7 +333,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) for nodeId, socket in pairs(self.sockets) do if socket.name == "Charm Socket" then socket.charmSocket = true - elseif not socket.containJewelSocket then + elseif not socket.containJewelSocket and not socket.noRadius then socket.nodesInRadius = { } socket.attributesInRadius = { } for radiusIndex, _ in ipairs(data.jewelRadius) do @@ -741,8 +770,14 @@ function PassiveTreeClass:CalcOrbitAngles(nodesInOrbit) return orbitAngles end +local alreadyAlertMissingAssetName = {} function PassiveTreeClass:GetAssetByName(name, type) - return self.ddsMap[name] or self.assets[name] + local assetData = self.ddsMap[name] or self.assets[name] or self.spriteMap[name] + if not assetData and not alreadyAlertMissingAssetName[name] then + alreadyAlertMissingAssetName[name] = true + ConPrintf("missing asset with name " .. name) + end + return assetData end function PassiveTreeClass:GetNodeTargetSize(node) diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index b2ba280c1d..ab9ad88501 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -1262,7 +1262,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 node.name ~= "Charm Socket" and node.containJewelSocket ~= true and (not node.expansionJewel or node.expansionJewel.size == 2) then + if node and node.name ~= "Charm Socket" and node.containJewelSocket ~= true and (not node.expansionJewel or node.expansionJewel.size == 2) and (not node.noRadius) then local scrX, scrY = treeToScreen(node.x, node.y) local socket, jewel = build.itemsTab:GetSocketAndJewelForNodeID(nodeId) local compareNode = self.compareSpec and self.compareSpec.nodes[nodeId] or nil @@ -1391,7 +1391,20 @@ function PassiveTreeViewClass:DrawQuadAndRotate(data, xTree, yTree, angleRad, tr vertActive[3], vertActive[4] = xActive + widthActive, yActive - heightActive vertActive[5], vertActive[6] = xActive + widthActive, yActive + heightActive vertActive[7], vertActive[8] = xActive - widthActive, yActive + heightActive - vertActive[9] = data[1] -- s1 + + local lengthData = #data + if lengthData == 1 then + vertActive[9] = data[1] -- s1 (stack) + elseif lengthData == 4 then + vertActive[9], vertActive[10] = data[1], data[2] -- top-left + vertActive[11], vertActive[12] = data[3], data[2] -- top-right + vertActive[13], vertActive[14] = data[3], data[4] -- bottom-right + vertActive[15], vertActive[16] = data[1], data[4] -- bottom-left + else + for iData, vData in ipairs(data) do + vertActive[9 + (iData - 1)] = vData + end + end -- rotate the quad vertActive[1], vertActive[2] = treeToScreen(rotate(vertActive[1], vertActive[2], xActive, yActive, angleRad)) @@ -1499,7 +1512,7 @@ function PassiveTreeViewClass:DoesNodeMatchSearchParams(node) end -- Check unlock ascendancy - if node.unlockConstraint then + if node.unlockConstraint and node.unlockConstraint.ascendancy then err, needMatches = PCall(search, node.unlockConstraint.ascendancy:lower(), needMatches) if err then return false end if #needMatches == 0 then diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 9b06027582..ad97b45530 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -77,8 +77,11 @@ c["+(8-10)% to all Elemental Resistances"]={nil,"+(8-10)% to all Elemental Resis c["+(9-14)% to Cold Resistance"]={nil,"+(9-14)% to Cold Resistance "} c["+(9-14)% to Fire Resistance"]={nil,"+(9-14)% to Fire Resistance "} c["+(9-14)% to Lightning Resistance"]={nil,"+(9-14)% to Lightning Resistance "} +c["+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={{[1]={[1]={div=10,stat="EnergyShieldOnAllArmourItems",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil} c["+0.15% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.15}}," Thorns "} c["+0.15% to Thorns Critical Hit Chance +25% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.15}}," Thorns +25% to Thorns Critical Hit Chance "} +c["+0.2 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.2},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.2}},nil} +c["+0.4 metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.5 metres to Dodge Roll distance while Surrounded"]={{}," metres to Dodge Roll distance "} c["+0.5 metres to Dodge Roll distance while Surrounded 10% increased Movement Speed while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},[2]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=0.5}}," metres to Dodge Roll distance 10% increased "} c["+0.5% to Thorns Critical Hit Chance per 50 Tribute"]={{[1]={[1]={actor="parent",div=50,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.5}}," Thorns "} @@ -87,9 +90,11 @@ c["+0.6% to Unarmed Melee Attack Critical Hit Chance"]={{[1]={flags=16777477,key c["+1 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=1}},nil} c["+1 Life per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil} c["+1 Ring Slot"]={{[1]={flags=0,keywordFlags=0,name="AdditionalRingSlot",type="FLAG",value=true}},nil} +c["+1 maximum stacks of Puppet Master"]={{}," maximum stacks of Puppet Master "} c["+1 metre to Dodge Roll distance"]={{}," metre to Dodge Roll distance "} c["+1 metre to Dodge Roll distance 50% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={type="Condition",var="DodgeRolledRecently"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1}}," metre to Dodge Roll distance 50% increased "} c["+1 to Evasion Rating per 1 Item Armour on Equipped Gloves"]={{[1]={[1]={div=1,stat="ArmourOnGloves",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1}},nil} +c["+1 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1}},nil} c["+1 to Level of all Chaos Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="chaos",value=1}}},nil} c["+1 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=1}}},nil} c["+1 to Level of all Corrupted Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="corrupted",value=1}}},nil} @@ -97,7 +102,7 @@ c["+1 to Level of all Fire Skills"]={{[1]={flags=0,keywordFlags=0,name="GemPrope c["+1 to Level of all Lightning Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning",value=1}}},nil} c["+1 to Level of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="all",value=1}}},nil} c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil} -c["+1 to Maximum Energy Shield per 12 Item Evasion Rating on Equipped Body Armour"]={{[1]={[1]={div=12,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} +c["+1 to Maximum Energy Shield per 12 Item Evasion on Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," per 12 Item Evasion on Equipped Body Armour "} c["+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet"]={{[1]={[1]={div=8,stat="ArmourOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} c["+1 to Maximum Energy Shield per 8 Maximum Life"]={{[1]={[1]={div=8,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil} @@ -152,6 +157,7 @@ c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil} c["+10% Surpassing chance to fire an additional Arrow"]={{[1]={flags=0,keywordFlags=2048,name="SurpassingProjectileChance",type="BASE",value=10}},nil} c["+10% of Armour also applies to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=10}},nil} +c["+10% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=10}},nil} c["+10% of Armour also applies to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=10}},nil} c["+10% of Armour also applies to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=10}},nil} c["+10% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} @@ -163,7 +169,6 @@ c["+10% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance" c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil} c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil} c["+10% to Maximum Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=10}},nil} -c["+10% to Quality of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyOfScaledMod="value",keyword="all",value=10}}},nil} c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil} c["+10% to all Elemental Resistances per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil} c["+10% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=10}},nil} @@ -193,6 +198,7 @@ c["+12 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type=" c["+12 to Spirit per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=12}},nil} c["+12 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=12}},nil} c["+12 to maximum Rage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=12}},nil} +c["+12% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=12},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=12}},nil} c["+12% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=12}},nil} c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=120}},nil} c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},nil} @@ -223,6 +229,7 @@ c["+14 to Spirit per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSoc c["+140 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=140}},nil} c["+140 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=140}},nil} c["+144 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=144}},nil} +c["+15 maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=15}}," if you've used a Skill that Requires Glory in the past 20 seconds "} c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},nil} c["+15 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=15}},nil} c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil} @@ -272,8 +279,8 @@ c["+2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",v c["+2 Charm Slots"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=2}},nil} c["+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently"]={{}," metres to Dodge Roll distance if you haven't Dodge Rolled Recently "} c["+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently -1 metre to Dodge Roll distance if you've Dodge Rolled Recently"]={{}," metres to Dodge Roll distance if you haven't Dodge Rolled Recently -1 metre to Dodge Roll distance "} +c["+2 to Armour per 1 Item Energy Shield on Equipped Boots"]={{[1]={[1]={div=1,stat="EnergyShieldOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}},nil} c["+2 to Dexterity per 25 Tribute"]={{[1]={[1]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=2}},nil} -c["+2 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=2}},nil} c["+2 to Intelligence per 25 Tribute"]={{[1]={[1]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Int",type="BASE",value=2}},nil} c["+2 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=2}}},nil} c["+2 to Level of all Fire Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fire",value=2}}},nil} @@ -290,8 +297,9 @@ c["+2 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="Enduran c["+2 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=2}},nil} c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=2}},nil} c["+2 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=2}},nil} -c["+2 to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil} c["+2 to Strength per 25 Tribute"]={{[1]={[1]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Str",type="BASE",value=2}},nil} +c["+2% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=2}},nil} +c["+2% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=2}},nil} c["+2% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil} c["+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="BlueSupportGems"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil} c["+2% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil} @@ -312,6 +320,8 @@ c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil} c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil} c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil} +c["+20% of Armour also applies to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToChaosDamageTaken",type="BASE",value=20}},nil} +c["+20% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=20}},nil} c["+20% of Armour also applies to Elemental Damage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=20},[2]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=20},[3]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=20}},nil} c["+20% to Block Chance while holding a Focus"]={{[1]={[1]={type="Condition",varList={[1]="UsingFocus"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} @@ -375,7 +385,6 @@ c["+28% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil} c["+29 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=29}},nil} c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil} -c["+3 to Armour per 1 Item Energy Shield on Equipped Boots"]={{[1]={[1]={div=1,stat="EnergyShieldOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=3}},nil} c["+3 to Level of all Alchemist's Boon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="alchemist's boon",value=3}}},nil} c["+3 to Level of all Ancestral Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral cry",value=3}}},nil} c["+3 to Level of all Ancestral Warrior Totem Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral warrior totem",value=3}}},nil} @@ -627,6 +636,7 @@ c["+3 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="B c["+3 to Stun Threshold per Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=3}},nil} c["+3 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=3}},nil} c["+3 to maximum Rage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=3}},nil} +c["+3% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=3}},nil} c["+3% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=3}},nil} c["+3% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=3}},nil} c["+3% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3}},nil} @@ -692,8 +702,8 @@ c["+4 to Level of all Physical Spell Skills"]={{[1]={flags=0,keywordFlags=0,name c["+4 to Level of all Projectile Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="projectile",value=4}}},nil} c["+4 to Level of all Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spell",value=4}}},nil} c["+4 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=4}},nil} -c["+4 to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=4},[2]={[1]={type="Condition",var="HitProjectileRecently"},flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=4}},nil} c["+4 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=4}},nil} +c["+4% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=4},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=4}},nil} c["+4% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=4}},nil} c["+4% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4}},nil} c["+4% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4}},nil} @@ -752,7 +762,6 @@ c["+5% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningRe c["+5% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil} c["+5% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil} c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil} -c["+5% to Quality of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyOfScaledMod="value",keyword="all",value=5}}},nil} c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil} c["+5% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5}},nil} c["+5% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=5}},nil} @@ -787,6 +796,7 @@ c["+6 to Level of all Melee Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProp c["+6 to Level of all Projectile Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="projectile",value=6}}},nil} c["+6 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=6},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=6}},nil} c["+6 to all Attributes per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Str",type="BASE",value=6},[2]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=6},[3]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Int",type="BASE",value=6},[4]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="All",type="BASE",value=6}},nil} +c["+6% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=6},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=6}},nil} c["+6% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6}},nil} c["+6% to Thorns Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=6}}," Thorns "} c["+6% to all Elemental Resistances per socketed Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil} @@ -832,7 +842,6 @@ c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",typ c["+75% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=75}},nil} c["+76 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=76}},nil} c["+77 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=77}},nil} -c["+8 maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=8}}," for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times "} c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil} c["+8 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=8}},nil} c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil} @@ -841,13 +850,16 @@ c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8 c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=8}},nil} c["+8% Surpassing chance to fire an additional Arrow"]={{[1]={flags=0,keywordFlags=2048,name="SurpassingProjectileChance",type="BASE",value=8}},nil} c["+8% Surpassing chance to fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="SurpassingProjectileChance",type="BASE",value=8}},nil} +c["+8% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=8}},nil} c["+8% of Armour also applies to Elemental Damage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=8},[2]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=8},[3]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=8}},nil} c["+8% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil} +c["+8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}},nil} c["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil} c["+8% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil} c["+8% to Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=8}},nil} c["+8% to Critical Hit Chance of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=8}},nil} c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil} +c["+8% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=8}},nil} c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil} c["+8% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=8}},nil} c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil} @@ -865,6 +877,7 @@ c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",v c["+92 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=92}},nil} c["+93 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=93}},nil} c["+94 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=94}},nil} +c["-0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=-0.2}}," seconds to current Recharge delay per Combo expended when using Skills "} c["-1 metre to Dodge Roll distance if you've Dodge Rolled Recently"]={{}," metre to Dodge Roll distance "} c["-1 metre to Dodge Roll distance if you've Dodge Rolled Recently Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence"]={{}," metre to Dodge Roll distance Barrageable Attacks with this Bow Repeat +1 time if no enemies are in your Presence "} c["-1 second to base Energy Shield Recharge delay"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="BASE",value=-1}},nil} @@ -899,6 +912,7 @@ c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningR c["-30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-30}},nil} c["-35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-35}},nil} c["-4 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-4}},nil} +c["-4% to all Elemental Resistances per non-Idol Augment in your Equipment"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4}}," per non-Idol Augment in your Equipment "} c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil} c["-5% to amount of Damage Prevented by Deflection"]={{[1]={flags=0,keywordFlags=0,name="DeflectEffect",type="BASE",value=-5}},nil} c["-6% to amount of Damage Prevented by Deflection"]={{[1]={flags=0,keywordFlags=0,name="DeflectEffect",type="BASE",value=-6}},nil} @@ -918,6 +932,13 @@ c["0% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type= c["0% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=0}},"% to "} c["0.1 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=0.1}},nil} c["0.5% of maximum Life Regenerated per second per Fragile Regrowth"]={{[1]={[1]={type="Multiplier",var="FragileRegrowthCount"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil} +c["1 Boots socket"]={{}," Boots socket "} +c["1 Gloves socket"]={{}," Gloves socket "} +c["1 Gloves socket 1 Boots socket"]={{}," Gloves socket 1 Boots socket "} +c["1 Helmet socket"]={{}," Helmet socket "} +c["1 Helmet socket 2 Body Armour sockets"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}}," Helmet socket 2 Body sockets "} +c["1 Helmet socket 2 Body Armour sockets 1 Gloves socket"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}}," Helmet socket 2 Body sockets 1 Gloves socket "} +c["1 Helmet socket 2 Body Armour sockets 1 Gloves socket 1 Boots socket"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}}," Helmet socket 2 Body sockets 1 Gloves socket 1 Boots socket "} c["1 Rage Regenerated for every 25 Mana Regeneration per Second"]={{[1]={[1]={div=25,stat="ManaRegen",type="PerStat"},flags=0,keywordFlags=0,name="RageRegen",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["1% chance when you gain a Charge to gain an additional Charge per 10 Tribute"]={{}," when you gain a Charge to gain an additional Charge "} c["1% increased Area of Effect for Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil} @@ -931,7 +952,6 @@ c["1% increased Cooldown Recovery Rate per 10 Tribute"]={{[1]={[1]={actor="paren c["1% increased Critical Damage Bonus per 50 current Life"]={{[1]={[1]={div=50,stat="LifeUnreserved",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=1}},nil} c["1% increased Damage per 1% Chance to Block"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil} c["1% increased Damage per 15 Strength"]={{[1]={[1]={div=15,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil} -c["1% increased Energy Shield Recharge Rate per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=1}},nil} c["1% increased Energy Shield per 2 Strength"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1}},nil} c["1% increased Evasion Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil} c["1% increased Life and Mana Recovery from Flasks per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=1},[2]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=1}},nil} @@ -941,6 +961,9 @@ c["1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Lif c["1% increased Spirit Reservation Efficiency of Skills per 20 Tribute"]={{[1]={[1]={actor="parent",div=20,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=1}},nil} c["1% increased damage taken per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}},nil} c["1% increased maximum Darkness per 1% Chaos Resistance"]={{[1]={[1]={div=1,stat="ChaosResist",type="PerStat"},flags=0,keywordFlags=0,name="Darkness",type="INC",value=1}},nil} +c["1% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=1}},nil} +c["1% more Attack Speed per 75 Item Evasion on Equipped Armour Items"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=1}}," per 75 Item Evasion on Equipped Armour Items "} +c["1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={{[1]={[1]={div=10,stat="EnergyShieldOnAllArmourItems",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=1}}," per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance "} c["1% of Maximum Life Converted to Energy Shield per 20 Tribute"]={{[1]={[1]={actor="parent",div=20,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=1}},nil} c["1% of damage taken Recouped as Life per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=1}},nil} c["1% of damage taken Recouped as Mana per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=1}},nil} @@ -984,6 +1007,7 @@ c["10% chance when you gain an Endurance Charge to gain an additional Endurance c["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=10}}," when you gain an Endurance Charge to gain an additional Endurance Charge +1 to "} c["10% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=10}},nil} c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil} +c["10% faster start of Energy Shield Recharge while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil} c["10% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Accuracy Rating while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} @@ -999,10 +1023,13 @@ c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC" c["10% increased Armour and Evasion Rating per Summoned Totem in your Presence"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}},nil} c["10% increased Armour if you've consumed an Endurance Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableEnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} c["10% increased Armour while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} +c["10% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil} +c["10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil} c["10% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Attack Damage per Summoned Totem in your Presence"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil} +c["10% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil} c["10% increased Attack Speed with Spears"]={{[1]={flags=268435461,keywordFlags=0,name="Speed",type="INC",value=10}},nil} c["10% increased Ballista Critical Damage Bonus"]={{[1]={[1]={type="Condition",var="BallistaSkill"},flags=0,keywordFlags=16384,name="CritMultiplier",type="INC",value=10}},nil} c["10% increased Ballista Critical Hit Chance"]={{[1]={[1]={type="Condition",var="BallistaSkill"},flags=0,keywordFlags=16384,name="CritChance",type="INC",value=10}},nil} @@ -1011,6 +1038,8 @@ c["10% increased Blind Effect"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifie c["10% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=10}},nil} c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} c["10% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} +c["10% increased Cast Speed if you've used a Mana Flask Recently"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've used a Mana Flask Recently "} +c["10% increased Cast Speed if you've used a Mana Flask Recently Mana Flasks gain 0.1 charges per Second"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've used a Mana Flask Recently Mana Flasks gain 0.1 charges per Second "} c["10% increased Cast Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil} c["10% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=10}},nil} @@ -1041,6 +1070,7 @@ c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC" c["10% increased Damage against Demons"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," against Demons "} c["10% increased Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage for each Hazard triggered Recently, up to 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="DmgPerHazardRecently",type="Multiplier",var="HazardsTriggeredRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} +c["10% increased Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} @@ -1054,8 +1084,6 @@ c["10% increased Damage with One Handed Weapons"]={{[1]={flags=17179869188,keywo c["10% increased Damage with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=10}},nil} -c["10% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil} -c["10% increased Defences while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil} c["10% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=10}},nil} c["10% increased Deflection Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=10}},nil} c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil} @@ -1069,7 +1097,6 @@ c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="Elementa c["10% increased Elemental Infusion duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}}," Elemental Infusion "} c["10% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=10}},nil} c["10% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=10}},nil} -c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil} c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="FireExposureEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="ColdExposureEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=10}},nil} c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil} @@ -1092,6 +1119,7 @@ c["10% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRe c["10% increased Life Recovery rate per 5% missing Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=10}}," per 5% missing Unreserved Life "} c["10% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=10}},nil} c["10% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil} +c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil} c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil} c["10% increased Lightning Exposure Effect"]={{[1]={flags=0,keywordFlags=0,name="LightningExposureEffect",type="INC",value=10}},nil} c["10% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=10}},nil} @@ -1122,6 +1150,7 @@ c["10% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Dama c["10% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil} c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil} c["10% increased Rarity of Items found per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil} +c["10% increased Reservation Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=10}},nil} c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil} c["10% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil} c["10% increased Skill Speed if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10},[2]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=10},[3]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil} @@ -1179,6 +1208,7 @@ c["10% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",v c["10% reduced Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=-10}},nil} c["10% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-10}},nil} c["10% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-10}},nil} +c["10% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-10}},nil} c["10% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesUsed",type="INC",value=-10}},nil} c["10% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-10}},nil} c["10% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-10}},nil} @@ -1200,6 +1230,8 @@ c["10% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Cur c["10% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-10}},nil} c["10% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-10}},nil} c["100 Passive Skill Points become Weapon Set Skill Points"]={{[1]={flags=0,keywordFlags=0,name="PassivePointsToWeaponSetPoints",type="BASE",value=100}},nil} +c["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30"]={{},"% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30 "} +c["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30 Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"]={{},"% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30 Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings "} c["100% chance to Daze Enemies whose Hits you Block with a raised Shield"]={{[1]={flags=0,keywordFlags=0,name="DazeChance",type="BASE",value=100}}," Enemies whose Hits you Block with a raised Shield "} c["100% chance to Pierce an Enemy"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=100}},nil} c["100% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=100}},nil} @@ -1208,6 +1240,7 @@ c["100% increased Armour Break Duration"]={{[1]={flags=0,keywordFlags=0,name="Ar c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil} c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil} c["100% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil} +c["100% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil} c["100% increased Arrow Speed"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileSpeed",type="INC",value=100}},nil} c["100% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=100}},nil} c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil} @@ -1219,10 +1252,10 @@ c["100% increased Chance to be afflicted by Ailments when Hit 20% increased Move c["100% increased Critical Damage Bonus against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=100}},nil} c["100% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Culling Strike Threshold"]={{[1]={flags=0,keywordFlags=0,name="CullPercent",type="INC",value=100}},nil} -c["100% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil} c["100% increased Effect of Jewel Socket Passive Skills"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=100}}," of Jewel Socket Passive Skills "} c["100% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=100}}},nil} -c["100% increased Effect of the Socketed Jewel"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=100}},nil} +c["100% increased Effect of bonuses gained from Socketed Jewel"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=100}}," of bonuses gained from Socketed Jewel "} +c["100% increased Effect of bonuses gained from Socketed Jewel 50% more Mana Cost of Skills if you have no Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=100}}," of bonuses gained from Socketed Jewel 50% more Mana Cost of Skills "} c["100% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=100}},nil} c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil} c["100% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=100}},nil} @@ -1326,6 +1359,7 @@ c["12% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,nam c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil} c["12% increased Elemental Damage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil} c["12% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=12}},nil} +c["12% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=12}},nil} c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil} c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil} c["12% increased Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=12}},nil} @@ -1363,11 +1397,11 @@ c["12% increased Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamag c["12% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=12}},nil} c["12% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=12}},nil} c["12% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil} +c["12% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "} c["12.5 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12.5}},nil} c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil} c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil} c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil} -c["120% increased Armour and Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil} c["120% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=120}},nil} c["120% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=120}},nil} c["120% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=120}},nil} @@ -1424,6 +1458,7 @@ c["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["15 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil} c["15 to 25 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=15}}," to 25 Physical "} c["15 to 25 Physical Thorns damage Thorns can Retaliate against all Hits"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=15}}," to 25 Physical Thorns can Retaliate against all Hits "} +c["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"]={{},"% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill "} c["15% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}},nil} c["15% chance for Remnants you create to grant their effects twice"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="BASE",value=15}}," for Remnants you create to grant their s twice "} c["15% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"]={{}," for Shapeshift Slam Skills you use yourself to cause an additional Aftershock "} @@ -1433,6 +1468,7 @@ c["15% chance to Impale on Spell Hit"]={{[1]={flags=2,keywordFlags=0,name="Impal c["15% chance to Pierce an Enemy"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=15}},nil} c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil} c["15% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} +c["15% chance to gain Archon of Undeath when you use a Command skill"]={nil,"Archon of Undeath when you use a Command skill "} c["15% chance to gain a Power Charge on Critical Hit"]={nil,"a Power Charge "} c["15% chance to inflict Bleeding on Critical Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} c["15% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} @@ -1440,7 +1476,6 @@ c["15% chance to not destroy Corpses when Consuming Corpses"]={{}," to not destr c["15% chance when a Charm is used to use another Charm without consuming Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}}," when a Charm is used to use another Charm without consuming "} c["15% chance when a Charm is used to use another Charm without consuming Charges Charms applied to you have 25% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}}," when a Charm is used to use another Charm without consuming Charms applied to you have 25% increased Effect "} c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil} -c["15% faster start of Energy Shield Recharge while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil} c["15% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}}," Archon Buff "} @@ -1452,12 +1487,14 @@ c["15% increased Area of Effect while you have a Totem"]={{[1]={[1]={type="Condi c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil} c["15% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil} c["15% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil} +c["15% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=15}},nil} c["15% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Attack Critical Hit Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=15}},nil} c["15% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"]={{[1]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=1,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["15% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil} +c["15% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["15% increased Attack Speed while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["15% increased Ballista damage"]={{[1]={[1]={type="Condition",var="BallistaSkill"},flags=0,keywordFlags=16384,name="Damage",type="INC",value=15}},nil} c["15% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=15}},nil} @@ -1484,20 +1521,20 @@ c["15% increased Crossbow Reload Speed"]={{[1]={flags=67108865,keywordFlags=0,na c["15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage against Dazed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Dazed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage if you have Consumed a Corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} +c["15% increased Damage if you've dealt a Critical Hit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Flails"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Hits against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=15}},nil} -c["15% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=15}},nil} c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} c["15% increased Duration of Ailments against Enemies with Exposure"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HasExposure"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=15}},nil} c["15% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=15}},nil} c["15% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=15}},nil} c["15% increased Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil} +c["15% increased Effect of Puppet Master"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=15}}," of Puppet Master "} c["15% increased Electrocute Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyElectrocuteBuildup",type="INC",value=15}},nil} c["15% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=15}},nil} c["15% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil} -c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil} c["15% increased Energy Shield Recharge Rate while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil} c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil} c["15% increased Evasion Rating while Sprinting"]={{[1]={[1]={type="Condition",var="Sprinting"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil} @@ -1532,6 +1569,8 @@ c["15% increased Magnitude of Daze"]={{}," Magnitude of Daze "} c["15% increased Magnitude of Jagged Ground you create"]={{[1]={flags=0,keywordFlags=0,name="EnemyJaggedGroundMagnitude",type="INC",value=15}},nil} c["15% increased Magnitude of Shock you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=15}},nil} c["15% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=15}},nil} +c["15% increased Mana Cost Efficiency of Command Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=15}}," of Command Skills "} +c["15% increased Mana Cost Efficiency of Command Skills +1 maximum stacks of Puppet Master"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=15}}," of Command Skills +1 maximum stacks of Puppet Master "} c["15% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=15}},nil} c["15% increased Mana Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGained",type="INC",value=15}},nil} c["15% increased Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=15}},nil} @@ -1561,7 +1600,6 @@ c["15% increased Shock Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyShock c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} c["15% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=15}},nil} c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil} -c["15% increased Spell Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Spell damage for each 200 total Mana you have Spent Recently"]={{[1]={[1]={div=200,type="Multiplier",var="ManaSpentRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil} @@ -1592,6 +1630,7 @@ c["15% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE" c["15% of Damage from Hits is taken from your Damageable Companion's Life before you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," from Hits is taken from your Damageable Companion's Life before you "} c["15% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=15}},nil} c["15% of Damage taken from Deflected Hits Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=15}}," from Deflected Hits Recouped as Life "} +c["15% of Damage taken from Deflected Hits Recouped as Life 20% faster start of Energy Shield Recharge when not on Full Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=15}}," from Deflected Hits Recouped as Life 20% faster start of Energy Shield Recharge "} c["15% of Elemental Damage taken Recouped as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningEnergyShieldRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdEnergyShieldRecoup",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="FireEnergyShieldRecoup",type="BASE",value=15}},nil} c["15% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=15}},nil} c["15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=15}},nil} @@ -1606,7 +1645,6 @@ c["15% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharge c["15% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesUsed",type="INC",value=-15}},nil} c["15% reduced Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=-15}},nil} c["15% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-15}},nil} -c["15% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-15}},nil} c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} c["15% reduced Grenade Detonation Time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=-15}},nil} c["15% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-15}},nil} @@ -1631,7 +1669,6 @@ c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Glo c["150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=150}},nil} c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil} c["150% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=150}},nil} -c["150% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"]={{[1]={[1]={percent=150,stat="StrRequirementsOnBoots",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[2]={[1]={percent=150,stat="StrRequirementsOnGloves",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1},[3]={[1]={percent=150,stat="StrRequirementsOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},nil} c["16% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=16}},nil} c["16% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil} c["16% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=38654705668,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil} @@ -1712,6 +1749,9 @@ c["18% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags c["18% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-18}},nil} c["19% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=19}},nil} c["195% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=195}},nil} +c["2 Body Armour sockets"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}}," Body sockets "} +c["2 Body Armour sockets 1 Gloves socket"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}}," Body sockets 1 Gloves socket "} +c["2 Body Armour sockets 1 Gloves socket 1 Boots socket"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}}," Body sockets 1 Gloves socket 1 Boots socket "} c["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=2}}," that if you would gain Endurance , you instead gain up to maximum Endurance Charges "} c["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=2}}," that if you would gain Endurance , you instead gain up to maximum Endurance Charges +1 to Maximum Endurance Charges "} c["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=2}}," that if you would gain Frenzy , you instead gain up to your maximum number of Frenzy Charges "} @@ -1723,7 +1763,8 @@ c["2% chance to Recover all Life when you Kill an Enemy"]={{[1]={[1]={percent=2, c["2% increased Accuracy Rating per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=2}},nil} c["2% increased Area of Effect for Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}},nil} c["2% increased Armour per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=2}},nil} -c["2% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},[2]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}},nil} +c["2% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Item Armour and Evasion on Equipped Shield "} +c["2% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield 50% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Item Armour and Evasion on Equipped Shield 50% increased Armour, Evasion and Energy Shield "} c["2% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil} c["2% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil} c["2% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil} @@ -1739,6 +1780,8 @@ c["2% increased Maximum Life per socketed Grand Spectrum"]={{[1]={[1]={type="Mul c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil} c["2% increased Movement Speed while Sprinting"]={{[1]={[1]={type="Condition",var="Sprinting"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil} c["2% increased Parried Debuff Duration per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}," Parried Debuff "} +c["2% increased Reservation Efficiency of Skills per Idol in your Equipment"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=2}}," per Idol in your Equipment "} +c["2% increased Reservation Efficiency of Skills per Idol in your Equipment -4% to all Elemental Resistances per non-Idol Augment in your Equipment"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=2}}," per Idol in your Equipment -4% to all Elemental Resistances per non-Idol Augment in your Equipment "} c["2% increased Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=2},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=2},[3]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=2}},nil} c["2% increased Skill Speed with Channelling Skills"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2},[2]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=2},[3]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=2}},nil} c["2% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil} @@ -1786,9 +1829,9 @@ c["20% chance to load a bolt into all Crossbow skills on Kill"]={{}," to load a c["20% chance to load a bolt into all Crossbow skills on Kill Sacrifice 300 Life to not consume the last bolt when firing"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=67108864,keywordFlags=0,name="Life",type="BASE",value=20}}," to load a bolt into all skills 300 to not consume the last bolt when firing "} c["20% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=20}},nil} c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil} +c["20% faster start of Energy Shield Recharge when not on Full Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil} c["20% faster start of Energy Shield Recharge while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil} c["20% faster start of Energy Shield Recharge while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}}," while affected by an Archon Buff "} -c["20% faster start of Energy Shield Recharge while affected by an Archon Buff 40% increased Energy Shield Recharge Rate while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}}," while affected by an Archon Buff 40% increased Energy Shield Recharge Rate while affected by an Archon Buff "} c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Accuracy Rating against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} @@ -1804,6 +1847,8 @@ c["20% increased Armour if you have been Hit Recently"]={{[1]={[1]={type="Condit c["20% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} c["20% increased Armour if you've consumed an Endurance Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableEnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} c["20% increased Armour while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} +c["20% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} +c["20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Attack Damage if you have been Heavy Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Attack Damage while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil} @@ -1843,18 +1888,19 @@ c["20% increased Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy", c["20% increased Damage against Immobilised Enemies while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},[2]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage for each different Warcry you've used Recently"]={{[1]={flags=0,keywordFlags=4,name="Damage",type="INC",value=20}}," for each different you've used Recently "} c["20% increased Damage for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[3]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[4]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20},[5]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["20% increased Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} +c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Crossbows"]={{[1]={flags=67108868,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Hits against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil} -c["20% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} -c["20% increased Defences while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=20}},nil} +c["20% increased Deflection Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=20}},nil} c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["20% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil} c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=20}},nil} c["20% increased Effect of Arcane Surge on you per ten percent missing Mana"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=20}}," per ten percent missing Mana "} +c["20% increased Effect of Puppet Master"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=20}}," of Puppet Master "} c["20% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=20}},nil} +c["20% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"]={{}," Elemental Ailment Application "} c["20% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=20}},nil} c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil} c["20% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil} @@ -1863,12 +1909,12 @@ c["20% increased Elemental Infusion duration Remnants can be collected from 30% c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil} c["20% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=20}},nil} c["20% increased Energy Shield Recharge Rate while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=20}},nil} -c["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil} -c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil} c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Evasion Rating if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} +c["20% increased Evasion Rating if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Evasion Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} +c["20% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Evasion Rating while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil} c["20% increased Flammability Magnitude"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=20}},nil} @@ -1908,6 +1954,7 @@ c["20% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="Mana c["20% increased Mana Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGained",type="INC",value=20}},nil} c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} c["20% increased Mana Regeneration Rate while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} +c["20% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Melee Damage against Heavy Stunned enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} @@ -1962,17 +2009,18 @@ c["20% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name c["20% increased chance to inflict Ailments against Enemies with Exposure"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HasExposure"},flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil} c["20% increased chance to inflict Ailments against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil} c["20% increased chance to inflict Ailments with Projectiles"]={{[1]={flags=1024,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil} -c["20% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"]={{[1]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=20},[2]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=20}},nil} c["20% increased duration of Ailments you inflict against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=20}},nil} c["20% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil} c["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovablePowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil} c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil} c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil} +c["20% increased speed of Recoup Effects"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=20}}," speed of Recoup s "} c["20% less Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="MORE",value=-20},[2]={flags=0,keywordFlags=0,name="Dex",type="MORE",value=-20},[3]={flags=0,keywordFlags=0,name="Int",type="MORE",value=-20},[4]={flags=0,keywordFlags=0,name="All",type="MORE",value=-20}},nil} c["20% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-20}},nil} c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-20}},nil} c["20% less Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="MORE",value=-20}},nil} c["20% less Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="MORE",value=-20}},nil} +c["20% less Reservation Efficiency of non-Companion Skills"]={{[1]={[1]={neg=true,skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="MORE",value=-20}},nil} c["20% less Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="MORE",value=-20}},nil} c["20% less maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=-20}},nil} c["20% less maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-20}},nil} @@ -1989,12 +2037,13 @@ c["20% of Elemental Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags= c["20% of Elemental damage from Hits taken as Chaos damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsChaos",type="BASE",value=20}},nil} c["20% of Flask Recovery applied Instantly"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryLowLife",type="BASE",value=20}}," Flask applied Instantly "} c["20% of Flask Recovery applied Instantly +2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryLowLife",type="BASE",value=20}}," Flask applied Instantly +2 Charm Slot "} -c["20% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=20}},nil} c["20% of Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=20}},nil} c["20% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=20}},nil} c["20% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=20}},nil} +c["20% of Spell Damage Leeched as Life"]={{[1]={flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}},nil} c["20% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-20}},nil} c["20% reduced Accuracy Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-20}},nil} +c["20% reduced Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=-20}},nil} c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil} c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil} c["20% reduced Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=-20}},nil} @@ -2017,6 +2066,7 @@ c["20% reduced Slowing Potency of Debuffs on You 8% reduced Movement Speed Penal c["20% reduced Slowing Potency of Debuffs on You Buffs on you expire 10% slower"]={{}," Slowing Potency of Debuffs on You Buffs on you expire 10% slower "} c["20% reduced Spirit Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=-20}},nil} c["20% reduced Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=-20}},nil} +c["20% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-20}},nil} c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil} c["20% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-20}},nil} c["200% faster start of inherent Rage loss"]={{}," start of inherent Rage loss "} @@ -2101,7 +2151,9 @@ c["25% increased Area of Effect of Curses"]={{[1]={flags=0,keywordFlags=2,name=" c["25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil} c["25% increased Armour Break Duration"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}}," Break Duration "} c["25% increased Armour Break Duration 25% increased Attack Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Armour",type="INC",value=25}}," Break Duration 25% increased Attack Damage "} +c["25% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=25}},nil} c["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil} +c["25% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil} c["25% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Attack Damage if you have been Heavy Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil} @@ -2118,7 +2170,7 @@ c["25% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance" c["25% increased Bolt Speed"]={{[1]={flags=67108864,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} c["25% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=25}},nil} c["25% increased Chance to Block if you've Blocked with a raised Shield Recently"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=25}}," if you've Blocked with a raised Shield Recently "} -c["25% increased Chance to Block if you've Blocked with a raised Shield Recently 50% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="INC",value=25}}," if you've Blocked with a raised Shield Recently 50% increased Defences "} +c["25% increased Chance to Block if you've Blocked with a raised Shield Recently 50% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="INC",value=25}}," if you've Blocked with a raised Shield Recently 50% increased Armour, Evasion and Energy Shield "} c["25% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=25}},nil} c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil} c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil} @@ -2150,12 +2202,11 @@ c["25% increased Damage with One Handed Weapons"]={{[1]={flags=17179869188,keywo c["25% increased Damage with Spears"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Daze Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}}," Daze "} -c["25% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil} c["25% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil} +c["25% increased Duration of each Puppet Master stack"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}}," of each Puppet Master stack "} c["25% increased Electrocute Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyElectrocuteBuildup",type="INC",value=25}},nil} c["25% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=25}},nil} c["25% increased Elemental Damage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil} -c["25% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=25}},nil} c["25% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil} c["25% increased Evasion Rating while Parrying"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}}," while Parrying "} c["25% increased Evasion Rating while Sprinting"]={{[1]={[1]={type="Condition",var="Sprinting"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil} @@ -2232,11 +2283,13 @@ c["25% of Infernal Flame lost per second if none was gained in the past 2 second c["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"]={{[1]={flags=0,keywordFlags=0,name="LifeLossPrevented",type="BASE",value=25}},nil} c["25% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=25}},nil} c["25% of Spell Mana Cost Converted to Life Cost"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=25}},nil} +c["25% reduced Armour Break taken"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=-25}}," Break taken "} +c["25% reduced Armour Break taken Defend with 120% of Armour while not on Low Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=-25}}," Break taken Defend with 120% of Armour while not on Low Energy Shield "} +c["25% reduced Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=-25}},nil} c["25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-25},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=-25},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=-25}},nil} c["25% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-25}},nil} c["25% reduced Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=-25}},nil} c["25% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}},nil} -c["25% reduced Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=-25}},nil} c["25% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-25}},nil} c["25% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-25}},nil} c["25% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-25}},nil} @@ -2275,8 +2328,10 @@ c["3 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRege c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=3}},nil} c["3% chance to gain Volatility on Kill"]={nil,"Volatility "} c["3% faster Curse Activation per 20 Tribute"]={{[1]={[1]={actor="parent",div=20,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=3}},nil} +c["3% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=3}},nil} c["3% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil} c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil} +c["3% increased Attack Speed if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil} c["3% increased Attack Speed per 20 Dexterity"]={{[1]={[1]={div=20,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil} c["3% increased Attack Speed per Enemy in Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},[2]={type="Multiplier",var="NearbyEnemies"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil} c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil} @@ -2293,6 +2348,7 @@ c["3% increased Attack and Cast Speed with Elemental Skills"]={{[1]={flags=0,key c["3% increased Attack and Cast Speed with Lightning Skills"]={{[1]={flags=0,keywordFlags=128,name="Speed",type="INC",value=3}},nil} c["3% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=3},[4]={flags=0,keywordFlags=0,name="All",type="INC",value=3}},nil} c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil} +c["3% increased Cast Speed if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil} c["3% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=64,name="Speed",type="INC",value=3}},nil} c["3% increased Charm Effect Duration per 25 Tribute"]={{[1]={[1]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=3}},nil} c["3% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=3}},nil} @@ -2326,7 +2382,6 @@ c["3% reduced Accuracy Rating per 25 Tribute"]={{[1]={[1]={actor="parent",div=25 c["3% reduced Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-3}},nil} c["3% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedPenalty",type="INC",value=-3}},nil} c["3% reduced Skill Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=-3},[2]={flags=0,keywordFlags=0,name="WarcrySpeed",type="INC",value=-3},[3]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=-3}},nil} -c["3% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-3}},nil} c["30 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil} c["30 to 40 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=30}}," to 40 Physical "} c["30% chance for Lightning Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=0,name="LightningLuckyHitsChance",type="BASE",value=30}},nil} @@ -2343,18 +2398,19 @@ c["30% chance to Poison on Hit against Enemies that are not Poisoned"]={{[1]={[1 c["30% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=30}},nil} c["30% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil} c["30% chance when you Reload a Crossbow to be immediate"]={{[1]={flags=0,keywordFlags=0,name="InstantReloadChance",type="BASE",value=30}},nil} -c["30% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=30}},nil} -c["30% faster start of Energy Shield Recharge when not on Full Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=30}},nil} c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Accuracy Rating against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="INC",value=30}},nil} c["30% increased Accuracy Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Archon Buff "} +c["30% increased Archon Buff duration 20% faster start of Energy Shield Recharge while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Archon Buff 20% faster start of Energy Shield Recharge while affected by an Archon Buff "} c["30% increased Area of Effect of Ancestrally Boosted Attacks"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostAreaOfEffect",type="INC",value=30}},nil} c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} +c["30% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil} c["30% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} c["30% increased Armour while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} c["30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} +c["30% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil} c["30% increased Attack Damage against Rare or Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil} c["30% increased Attack Damage if you have Shapeshifted to an Animal form Recently"]={{[1]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil} c["30% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil} @@ -2389,17 +2445,14 @@ c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={ c["30% increased Damage with Hits against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil} c["30% increased Damage with Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil} c["30% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil} -c["30% increased Defences while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil} c["30% increased Electrocute Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyElectrocuteBuildup",type="INC",value=30}},nil} c["30% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=30}},nil} c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil} c["30% increased Elemental Damage if you've Chilled an Enemy Recently"]={{[1]={[1]={type="Condition",var="ChilledEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil} c["30% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil} c["30% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil} -c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=30}},nil} c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating if you have Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} -c["30% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating while Parrying"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}}," while Parrying "} c["30% increased Evasion Rating while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} @@ -2465,14 +2518,12 @@ c["30% increased Stun Buildup with Melee Damage"]={{[1]={flags=256,keywordFlags= c["30% increased Stun Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=30}},nil} c["30% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=30}},nil} c["30% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=30}},nil} -c["30% increased Stun Threshold if you haven't been Stunned Recently"]={{[1]={[1]={neg=true,type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=30}},nil} c["30% increased Stun Threshold while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=30}},nil} c["30% increased Thorns Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=30}}," Thorns "} c["30% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=30}},nil} c["30% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=30}},nil} c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil} c["30% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=30}},nil} -c["30% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=30}},nil} c["30% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=30}},nil} c["30% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=30}},nil} c["30% increased bonuses gained from left Equipped Ring"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromRing 1",type="INC",value=30}},nil} @@ -2487,8 +2538,10 @@ c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type=" c["30% increased penalty to Accuracy Rating at range"]={{[1]={flags=0,keywordFlags=0,name="AccuracyPenalty",type="INC",value=30}},nil} c["30% less Critical Damage Bonus when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="MORE",value=-30}},nil} c["30% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-30}},nil} +c["30% less Movement Speed Penalty from using Skills while moving"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedPenalty",type="MORE",value=-30}},nil} c["30% more Critical Damage Bonus when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="MORE",value=30}},nil} c["30% more Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=30},[2]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="MORE",value=30}},nil} +c["30% more Reservation Efficiency of Companion Skills"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="MORE",value=30}},nil} c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil} c["30% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=30}},nil} c["30% of Damage taken Recouped as Life while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=30}},nil} @@ -2540,6 +2593,7 @@ c["33% of Elemental Damage Converted to Lightning Damage"]={{[1]={flags=0,keywor c["333% increased effect of Socketed Soul Cores"]={{[1]={flags=0,keywordFlags=0,name="SocketedSoulCoreEffect",type="INC",value=333}},nil} c["35 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=35}},nil} c["35 to 53 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="BASE",value=35}}," to 53 Physical "} +c["35% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"]={{},"% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill "} c["35% increased Attack Damage while you have an Ally in your Presence"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=1,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["35% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=35}},nil} c["35% increased Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="INC",value=35}},nil} @@ -2564,43 +2618,43 @@ c["35% increased Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damag c["35% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=35}},nil} c["35% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=35}},nil} c["35% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=35}},nil} -c["35% less Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="MORE",value=-35}},nil} c["35% less Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="MORE",value=-35}},nil} -c["35% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-35}},nil} c["35% less minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-35}},nil} c["35% more maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MaxPhysicalDamage",type="MORE",value=35}},nil} c["35% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=35}},nil} c["35% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-35}},nil} c["35% reduced Duration of Ignite, Shock and Chill on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-35},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-35},[3]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-35}},nil} +c["35% reduced Effect of Non-Damaging Ailments on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockMagnitude",type="INC",value=-35},[2]={flags=0,keywordFlags=0,name="EnemyChillMagnitude",type="INC",value=-35},[3]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=-35}}," on you "} c["35% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-35}},nil} c["35% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-35}},nil} c["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil} c["350% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=350}},nil} c["350% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=350}},nil} -c["36% increased Damage if you've dealt a Critical Hit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=36}},nil} c["36% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=36}},nil} c["37% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=37}},nil} c["375% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=375}},nil} c["38% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=38}},nil} c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil} c["4 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil} +c["4 seconds after being Damaged by an Enemy Hit, take Damage equal to 30% of that Hit's Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=4}}," seconds after being d by an Enemy Hit, take Damage equal to 30% of that Hit's Damage "} c["4% chance for Spell Skills to fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="TwoAdditionalProjectilesChance",type="BASE",value=4}},nil} c["4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"]={{[1]={flags=4,keywordFlags=0,name="MaximumRage",type="BASE",value=4}}," that if you would gain Rage , you instead gain up to your "} +c["4% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=4}},nil} c["4% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}},nil} c["4% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}},nil} c["4% increased Area of Effect for Attacks per Enemy you've Ignited in the last 8 seconds, up to 40%"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}}," per Enemy you've Ignited in the last 8 seconds, up to 40% "} c["4% increased Area of Effect of Ancestrally Boosted Attacks"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostAreaOfEffect",type="INC",value=4}},nil} -c["4% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"]={{[1]={[1]={div=75,statList={[1]="ArmourOnWeapon 2",[2]="EvasionOnWeapon 2"},type="PerStat"},[2]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=4}},nil} +c["4% increased Armour, Evasion and Energy Shield while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Defences",type="INC",value=4}},nil} +c["4% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=4}}," per 75 Item Armour and Evasion on Equipped Shield "} c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil} c["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil} c["4% increased Attack Speed while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil} c["4% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=4}},nil} c["4% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=4}},nil} c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil} -c["4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"]={{[1]={[1]={type="Multiplier",var="NonInstantSpellCastRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil} +c["4% increased Cast Speed for each different Spell you've Cast in the last eight seconds"]={{[1]={flags=18,keywordFlags=0,name="Speed",type="INC",value=4}}," for each different you've Cast in the last eight seconds "} c["4% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=4}},nil} c["4% increased Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=4}},nil} -c["4% increased Global Defences while Channelling"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Defences",type="INC",value=4}},nil} c["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={[1]={effectName="BlackenedHeart",effectType="Aura",type="GlobalEffect",unscalable=true},mod={[1]={actor="parent",div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Multiplier:UnholyMightMagnitude",type="BASE",value=4}}}},nil} c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil} c["4% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil} @@ -2612,9 +2666,7 @@ c["4% increased Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="INC", c["4% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=4}},nil} c["4% increased Warcry Speed per 25 Tribute"]={{[1]={[1]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=4}},nil} c["4% increased maximum Energy Shield per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=4}},nil} -c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil} c["4% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=4}},nil} -c["4% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=4}},nil} c["4% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=4}},nil} c["4% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesUsed",type="INC",value=-4}},nil} c["4% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}},nil} @@ -2629,6 +2681,7 @@ c["40% chance to Avoid Physical Damage from Hits"]={{[1]={flags=0,keywordFlags=0 c["40% chance to Daze on Hit"]={{[1]={flags=4,keywordFlags=0,name="DazeChance",type="BASE",value=40}},nil} c["40% faster Curse Activation"]={{[1]={flags=0,keywordFlags=0,name="CurseActivation",type="INC",value=40}},nil} c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} +c["40% faster start of Energy Shield Recharge if you've been Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} c["40% increased Accuracy Rating against Enemies affected by Abyssal Wasting"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}}," against Enemies affected by Abyssal Wasting "} c["40% increased Accuracy Rating against Enemies affected by Abyssal Wasting 30% of Mana Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}}," against Enemies affected by Abyssal Wasting 30% of Mana Leeched from targets affected by Abyssal Wasting is Instant "} c["40% increased Ailment and Stun Threshold while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=40},[2]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=40}},nil} @@ -2636,6 +2689,7 @@ c["40% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC" c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil} c["40% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil} c["40% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil} +c["40% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil} c["40% increased Armour while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil} c["40% increased Attack Damage against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Attack Damage while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=40}},nil} @@ -2667,22 +2721,23 @@ c["40% increased Culling Strike Threshold against Rare or Unique Enemies"]={{}," c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil} c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Damage if you've Triggered a Skill Recently"]={{[1]={[1]={type="Condition",var="TriggeredSkillRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} +c["40% increased Damage while Leeching Life"]={{[1]={[1]={type="Condition",var="LeechingLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Bow Skills"]={{[1]={flags=0,keywordFlags=1024,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Two Handed Weapons"]={{[1]={flags=34359738372,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Warcries"]={{[1]={flags=0,keywordFlags=4,name="Damage",type="INC",value=40}},nil} c["40% increased Duration of Poisons you inflict against Slowed Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=40}}," against Slowed Enemies "} c["40% increased Electrocute Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyElectrocuteBuildup",type="INC",value=40}},nil} +c["40% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"]={{}," Elemental Ailment Application "} c["40% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=40}},nil} c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil} -c["40% increased Elemental Damage if you've dealt a Critical Hit Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil} c["40% increased Elemental Damage with Attack Skills during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil} c["40% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=40}},nil} c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil} c["40% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=40}},nil} -c["40% increased Energy Shield Recharge Rate while affected by an Archon Buff"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=40}}," while affected by an Archon Buff "} c["40% increased Energy Shield from Equipped Focus"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingFocus"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil} c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} +c["40% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} c["40% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={type="Condition",var="DodgeRolledRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} c["40% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} c["40% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=40}},nil} @@ -2738,7 +2793,6 @@ c["40% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="Tot c["40% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=40}},nil} c["40% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=40}}," against Enemies affected by Abyssal Wasting "} c["40% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting 30% of Life Leeched from targets affected by Abyssal Wasting is Instant"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=40}}," against Enemies affected by Abyssal Wasting 30% of Life Leeched from targets affected by Abyssal Wasting is Instant "} -c["40% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"]={{[1]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=40},[2]={[1]={type="Condition",var="ShapeshiftToAnimal"},flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=40}},nil} c["40% increased effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=40}},nil} c["40% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil} c["40% less Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil} @@ -2801,6 +2855,7 @@ c["5% chance to inflict Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="Bl c["5% chance to not destroy Corpses when Consuming Corpses"]={{}," to not destroy Corpses when Consuming Corpses "} c["5% chance when collecting an Elemental Infusion to gain an"]={{}," when collecting an Elemental Infusion to gain an "} c["5% chance when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type"]={{}," when collecting an Elemental Infusion to gain an additional Elemental Infusion of the same type "} +c["5% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=5}},nil} c["5% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=5}},nil} c["5% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil} @@ -2810,18 +2865,19 @@ c["5% increased Attack Damage for each Minion in your Presence, up to a maximum c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil} c["5% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=5}},nil} c["5% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=5}},nil} +c["5% increased Attack and Cast Speed with Elemental Skills"]={{[1]={flags=0,keywordFlags=224,name="Speed",type="INC",value=5}},nil} c["5% increased Attack and Cast Speed with Lightning Skills"]={{[1]={flags=0,keywordFlags=128,name="Speed",type="INC",value=5}},nil} c["5% increased Attributes per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Str",type="INC",value=5},[2]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Dex",type="INC",value=5},[3]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Int",type="INC",value=5},[4]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="All",type="INC",value=5}},nil} c["5% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=5}},nil} c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil} c["5% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=5}},nil} c["5% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=5}},nil} +c["5% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=5}},nil} c["5% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Culling Strike Threshold"]={{[1]={flags=0,keywordFlags=0,name="CullPercent",type="INC",value=5}},nil} c["5% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Damage taken while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil} c["5% increased Defences from Equipped Shield per 25 Tribute"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},[3]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil} -c["5% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=5}},nil} c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil} c["5% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil} c["5% increased Experience gain"]={{}," Experience gain "} @@ -2830,6 +2886,7 @@ c["5% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="Lif c["5% increased Life and Mana Regeneration Rate for each Minion in your Presence, up to a maximum of 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="MinionPresenceCount"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=5},[2]={[1]={limit=40,limitTotal=true,type="Multiplier",var="MinionPresenceCount"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil} c["5% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=5}},nil} c["5% increased Magnitude of Ailments you inflict"]={{[1]={flags=0,keywordFlags=0,name="AilmentMagnitude",type="INC",value=5}},nil} +c["5% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=5}},nil} c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil} c["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed"]={{[1]={[1]={threshold=10,type="MultiplierThreshold",var="RedSupportGems"},flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil} c["5% increased Maximum Life per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil} @@ -2849,7 +2906,7 @@ c["5% increased Stun Threshold per 25 Tribute"]={{[1]={[1]={actor="parent",div=2 c["5% increased effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=5}}," of Archon Buffs on you "} c["5% increased total Power counted by Warcries"]={{[1]={flags=0,keywordFlags=0,name="WarcryPower",type="INC",value=5}},nil} c["5% of Damage from Hits is taken from your Damageable Companion's Life before you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," from Hits is taken from your Damageable Companion's Life before you "} -c["5% of Damage from Hits is taken from your Damageable Companion's Life before you 20% increased Defences while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," from Hits is taken from your Damageable Companion's Life before you 20% increased Defences "} +c["5% of Damage from Hits is taken from your Damageable Companion's Life before you 20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," from Hits is taken from your Damageable Companion's Life before you 20% increased Armour, Evasion and Energy Shield "} c["5% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=5}},nil} c["5% of Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="BASE",value=5},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="BASE",value=5}},nil} c["5% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=5}},nil} @@ -2886,9 +2943,9 @@ c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,na c["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil} c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil} c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil} -c["50% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil} c["50% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil} c["50% increased Armour while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil} +c["50% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil} c["50% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Attack Damage while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil} @@ -2913,7 +2970,6 @@ c["50% increased Damage against Demons 50% increased Duration of Ailments on Bea c["50% increased Damage against Immobilised Enemies while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},[2]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Damage if you've Triggered a Skill Recently"]={{[1]={[1]={type="Condition",var="TriggeredSkillRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=50}},nil} -c["50% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil} c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil} c["50% increased Duration of Ailments on Beasts"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=50}}," on Beasts "} c["50% increased Duration of Ailments on Beasts 50% increased Critical Hit Chance against Humanoids"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=50}}," on Beasts 50% increased Critical Hit Chance against Humanoids "} @@ -2923,7 +2979,6 @@ c["50% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShiel c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=50}},nil} c["50% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} c["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargePastTwoSec"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} -c["50% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} c["50% increased Evasion Rating if you've Dodge Rolled Recently"]={{[1]={[1]={type="Condition",var="DodgeRolledRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} c["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableFrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} c["50% increased Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} @@ -2965,19 +3020,22 @@ c["50% increased Totem Placement range"]={{[1]={flags=0,keywordFlags=16384,name= c["50% increased amount of Mana Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=50}},nil} c["50% increased effect of Incision"]={{[1]={flags=0,keywordFlags=0,name="IncisionEffect",type="INC",value=50}},nil} c["50% increased effect of Small Passive Skills"]={{[1]={flags=0,keywordFlags=0,name="SmallPassiveSkillEffect",type="INC",value=50}},nil} +c["50% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil} c["50% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=50}},nil} +c["50% less Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="MORE",value=-50}},nil} c["50% less Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="MORE",value=-50}},nil} c["50% less Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="MORE",value=-50}},nil} c["50% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-50}},nil} c["50% less Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="MORE",value=-50}},nil} c["50% less Mana Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoveryRate",type="MORE",value=-50}},nil} c["50% less Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="MORE",value=-50}},nil} -c["50% less Movement Speed Penalty from using Skills while moving"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedPenalty",type="MORE",value=-50}},nil} +c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil} c["50% less Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="MORE",value=-50}},nil} c["50% more Armour from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Armour",type="MORE",value=50}},nil} c["50% more Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="MORE",value=50}},nil} c["50% more Magnitude of Bleeding you inflict"]={{[1]={flags=0,keywordFlags=4194304,name="AilmentMagnitude",type="MORE",value=50}},nil} c["50% more Mana Cost of Skills if you have no Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=50}},nil} +c["50% more amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=50}},nil} c["50% more damage against enemies with an Open Weakness"]={{[1]={[1]={type="Condition",var="EnemyHasOpenWeakness"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=50}},nil} c["50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamage",type="BASE",value=50}}," you prevent when Hit Recouped as Life and Mana "} c["50% of Cold and Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=50}},nil} @@ -2997,6 +3055,8 @@ c["50% of your Base Life Regeneration is granted to Allies in your Presence +30 c["50% of your Base Life Regeneration is granted to Allies in your Presence +30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to +30 to Intelligence "} c["50% of your Base Life Regeneration is granted to Allies in your Presence +30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50},onlyAllies=true}}}," your Base is granted to +30 to Strength "} c["50% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-50}},nil} +c["50% reduced Armour Break taken"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=-50}}," Break taken "} +c["50% reduced Armour Break taken 10% reduced Slowing Potency of Debuffs on You"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=-50}}," Break taken 10% reduced Slowing Potency of Debuffs on You "} c["50% reduced Charm Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="CharmDuration",type="INC",value=-50}},nil} c["50% reduced Chill Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-50}},nil} c["50% reduced Duration of Bleeding on You"]={{[1]={flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-50}},nil} @@ -3017,6 +3077,7 @@ c["50% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfS c["50% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "} c["50% reduced Slowing Potency of Debuffs on You 20 to 30 Physical Thorns damage"]={{[1]={flags=0,keywordFlags=0,name="ThornsDamage",type="INC",value=-50}}," Slowing Potency of Debuffs on You 20 to 30 Physical "} c["50% reduced bonuses gained from Equipped Focus"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromFocus",type="INC",value=-50}},nil} +c["50% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil} c["50% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-50}},nil} c["50% reduced effect of Withered on you"]={{[1]={flags=0,keywordFlags=0,name="WitherEffectOnSelf",type="INC",value=-50}},nil} c["500% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=500}},nil} @@ -3030,7 +3091,9 @@ c["56% increased Magnitude of Unholy Might buffs you grant You have Unholy Might c["6 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil} c["6 Life Regeneration per second per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil} c["6% chance for Spell Skills to fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="TwoAdditionalProjectilesChance",type="BASE",value=6}},nil} +c["6% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=6}},nil} c["6% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} +c["6% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil} c["6% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil} c["6% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}},nil} @@ -3045,16 +3108,18 @@ c["6% increased Attack and Cast Speed if you've summoned a Totem Recently"]={{[1 c["6% increased Ballista Critical Damage Bonus"]={{[1]={[1]={type="Condition",var="BallistaSkill"},flags=0,keywordFlags=16384,name="CritMultiplier",type="INC",value=6}},nil} c["6% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=6}},nil} c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil} -c["6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"]={{[1]={[1]={type="Multiplier",var="NonInstantSpellCastRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil} +c["6% increased Cast Speed for each different Spell you've Cast in the last eight seconds"]={{[1]={flags=18,keywordFlags=0,name="Speed",type="INC",value=6}}," for each different you've Cast in the last eight seconds "} c["6% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=6}},nil} c["6% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=6}},nil} c["6% increased Curse Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=6}},nil} +c["6% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=6}},nil} c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil} c["6% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=6},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=6}},nil} c["6% increased Elemental Infusion duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=6}}," Elemental Infusion "} c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil} c["6% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=6}},nil} c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil} +c["6% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=6}},nil} c["6% increased Magnitude of Damaging Ailments you inflict"]={{[1]={flags=0,keywordFlags=14680064,name="AilmentMagnitude",type="INC",value=6}},nil} c["6% increased Magnitude of Poison you inflict"]={{[1]={flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=6}},nil} c["6% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=6}},nil} @@ -3075,6 +3140,7 @@ c["6% increased Spell Damage with Spells that cost Life"]={{[1]={[1]={stat="Life c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil} c["6% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=6}},nil} c["6% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=6}},nil} +c["6% increased amount of Life Leeched"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=6}},nil} c["6% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=6}},nil} c["6% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=6}},nil} c["6% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=6}},nil} @@ -3085,7 +3151,6 @@ c["6% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={fla c["6% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-6}},nil} c["60 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil} c["60% chance for Lightning Skills to Chain an additional time"]={{[1]={flags=0,keywordFlags=128,name="ChainChance",type="BASE",value=60}},nil} -c["60% faster start of Energy Shield Recharge if you've been Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=60}},nil} c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil} c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil} c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil} @@ -3095,7 +3160,6 @@ c["60% increased Attack Damage while on Low Life"]={{[1]={[1]={type="Condition", c["60% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=60}},nil} c["60% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=60}},nil} c["60% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=60}},nil} -c["60% increased Effect of Poison you inflict on targets that are not Poisoned"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",upper=true,var="PoisonStacks"},flags=0,keywordFlags=2097152,name="AilmentEffect",type="INC",value=60}},nil} c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil} c["60% increased Energy Shield from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil} c["60% increased Energy Shield from Equipped Focus"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingFocus"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil} @@ -3108,6 +3172,7 @@ c["60% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name=" c["60% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=60}},nil} c["60% increased Freeze Threshold"]={{[1]={flags=0,keywordFlags=0,name="FreezeThreshold",type="INC",value=60}},nil} c["60% increased Ice Crystal Life"]={{[1]={flags=0,keywordFlags=0,name="IceCrystalLife",type="INC",value=60}},nil} +c["60% increased Magnitude of Poison you inflict on targets that are not Poisoned"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",upper=true,var="PoisonStacks"},flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=60}},nil} c["60% increased Mana Cost Efficiency of Marks"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=60}},nil} c["60% increased Mana Regeneration Rate while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil} c["60% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitProjectileRecently"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil} @@ -3116,7 +3181,6 @@ c["60% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="P c["60% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil} c["60% increased Stun Threshold while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=60}},nil} -c["60% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil} c["60% of your current Energy Shield is added to your Armour for"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}}," your current is added to your Armour for "} c["60% of your current Energy Shield is added to your Armour for determining your Physical Damage Reduction from Armour"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldAppliesToPhysicalDamageTaken",type="BASE",value=60}},nil} c["60% reduced Duration of Bleeding on You"]={{[1]={flags=0,keywordFlags=0,name="SelfBleedDuration",type="INC",value=-60}},nil} @@ -3186,8 +3250,10 @@ c["8% increased Archon Buff duration"]={{[1]={flags=0,keywordFlags=0,name="Durat c["8% increased Archon Buff duration 5% increased effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=8}}," Archon Buff 5% increased effect of Archon Buffs on you "} c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} c["8% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} +c["8% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=8}},nil} c["8% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=8}},nil} c["8% increased Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil} +c["8% increased Armour, Evasion and Energy Shield while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil} c["8% increased Attack Area Damage"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["8% increased Attack Cold Damage"]={{[1]={flags=1,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil} c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil} @@ -3223,7 +3289,6 @@ c["8% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=99,type="Skil c["8% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=8}},nil} c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil} c["8% increased Elemental Infusion duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=8}}," Elemental Infusion "} -c["8% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=8}},nil} c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil} c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil} c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil} @@ -3231,7 +3296,6 @@ c["8% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="Flask c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil} c["8% increased Flask and Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=8}},nil} c["8% increased Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=8}},nil} -c["8% increased Global Defences while Channelling"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil} c["8% increased Glory generation"]={{}," Glory generation "} c["8% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=8}},nil} c["8% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=8}},nil} @@ -3268,6 +3332,7 @@ c["8% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShock c["8% increased chance to inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentChance",type="INC",value=8}},nil} c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil} c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil} +c["8% increased speed of Recoup Effects"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=8}}," speed of Recoup s "} c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil} c["8% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=8}},nil} c["8% of Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=8}},nil} @@ -3281,6 +3346,7 @@ c["80% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="Avoid c["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil} c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},nil} c["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil} +c["80% increased Armour and Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil} c["80% increased Armour from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil} c["80% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=80}},nil} c["80% increased Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=80}},nil} @@ -3291,7 +3357,6 @@ c["80% increased Critical Hit Chance for Spells"]={{[1]={flags=2,keywordFlags=0, c["80% increased Damage with Hits against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=80}},nil} c["80% increased Desecrated Modifier magnitudes"]={{[1]={flags=0,keywordFlags=0,name="Magnitude",type="INC",value=80}}," Desecrated Modifier "} c["80% increased Desecrated Modifier magnitudes 160% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="Magnitude",type="INC",value=80}}," Desecrated Modifier 160% increased Chaos Damage "} -c["80% increased Effect of Poison you inflict on targets that are not Poisoned"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",upper=true,var="PoisonStacks"},flags=0,keywordFlags=2097152,name="AilmentEffect",type="INC",value=80}},nil} c["80% increased Elemental Damage with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=80}},nil} c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil} c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil} @@ -3299,6 +3364,7 @@ c["80% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name= c["80% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=80}},nil} c["80% increased Flammability Magnitude"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=80}},nil} c["80% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=80}},nil} +c["80% increased Magnitude of Poison you inflict on targets that are not Poisoned"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",upper=true,var="PoisonStacks"},flags=0,keywordFlags=2097152,name="AilmentMagnitude",type="INC",value=80}},nil} c["80% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil} c["80% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil} c["80% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=80}},nil} @@ -3333,8 +3399,6 @@ c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil} c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil} c["90% less Life Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="MORE",value=-90}},nil} -c["A maximum of one Modifer can be granted this way"]={nil,"A maximum of one Modifer can be granted this way "} -c["A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice"]={nil,"A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice "} c["Abyssal Wasting also applies % to Cold Resistance"]={nil,"Abyssal Wasting also applies % to Cold Resistance "} c["Abyssal Wasting also applies % to Cold Resistance 30% increased Magnitude of Chill you inflict"]={nil,"Abyssal Wasting also applies % to Cold Resistance 30% increased Magnitude of Chill you inflict "} c["Abyssal Wasting also applies % to Fire Resistance"]={nil,"Abyssal Wasting also applies % to Fire Resistance "} @@ -3535,7 +3599,7 @@ c["Allies in your Presence deal 6 to 10 added Attack Fire Damage"]={{[1]={flags= c["Allies in your Presence deal 70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70},onlyAllies=true}}},nil} c["Allies in your Presence deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8},onlyAllies=true}}},nil} c["Allies in your Presence gain added Attack Damage equal"]={nil,"added Attack Damage equal "} -c["Allies in your Presence gain added Attack Damage equal to 25% of your main hand Weapon's Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="GainMainHandDmgFromParent",type="FLAG",value=true},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="Multiplier:MainHandDamageToAllies",type="BASE",value=25}},nil} +c["Allies in your Presence gain added Attack Damage equal to 25% of your main hand Weapon's damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="GainMainHandDmgFromParent",type="FLAG",value=true},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="Multiplier:MainHandDamageToAllies",type="BASE",value=25}},nil} c["Allies in your Presence have +100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100},onlyAllies=true}}},nil} c["Allies in your Presence have +16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16},onlyAllies=true}}},nil} c["Allies in your Presence have 15% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=15},onlyAllies=true}}},nil} @@ -3553,824 +3617,6 @@ c["Allies in your Presence have 50% increased Critical Hit Chance"]={{[1]={flags c["Allies in your Presence have 6% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=6},onlyAllies=true}}},nil} c["Allies in your Presence have 6% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=6},onlyAllies=true}}},nil} c["Allies in your Presence have Block Chance equal to yours"]={nil,"Block Chance equal to yours "} -c["Allocates Abasement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="abasement"}},nil} -c["Allocates Acceleration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="acceleration"}},nil} -c["Allocates Adamant Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adamant recovery"}},nil} -c["Allocates Adaptable Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adaptable assault"}},nil} -c["Allocates Adaptive Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adaptive skin"}},nil} -c["Allocates Admonisher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="admonisher"}},nil} -c["Allocates Adrenaline Rush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adrenaline rush"}},nil} -c["Allocates Advanced Munitions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="advanced munitions"}},nil} -c["Allocates Adverse Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adverse growth"}},nil} -c["Allocates Afterimage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="afterimage"}},nil} -c["Allocates Aftershocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aftershocks"}},nil} -c["Allocates Against the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="against the elements"}},nil} -c["Allocates Aggravation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aggravation"}},nil} -c["Allocates Agile Sprinter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile sprinter"}},nil} -c["Allocates Agile Succession"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile succession"}},nil} -c["Allocates Agonising Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agonising calamity"}},nil} -c["Allocates Alchemical Oil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="alchemical oil"}},nil} -c["Allocates All For One"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all for one"}},nil} -c["Allocates All Natural"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all natural"}},nil} -c["Allocates Altered Brain Chemistry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="altered brain chemistry"}},nil} -c["Allocates Alternating Current"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="alternating current"}},nil} -c["Allocates Among the Hordes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="among the hordes"}},nil} -c["Allocates Ancestral Alacrity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral alacrity"}},nil} -c["Allocates Ancestral Artifice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral artifice"}},nil} -c["Allocates Ancestral Conduits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral conduits"}},nil} -c["Allocates Ancestral Mending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral mending"}},nil} -c["Allocates Ancestral Reach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral reach"}},nil} -c["Allocates Ancestral Unity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral unity"}},nil} -c["Allocates Ancient Aegis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancient aegis"}},nil} -c["Allocates Apocalypse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="apocalypse"}},nil} -c["Allocates Arcane Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane alchemy"}},nil} -c["Allocates Arcane Blossom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane blossom"}},nil} -c["Allocates Arcane Intensity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane intensity"}},nil} -c["Allocates Arcane Mixtures"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane mixtures"}},nil} -c["Allocates Arcane Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane nature"}},nil} -c["Allocates Arcane Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane remnants"}},nil} -c["Allocates Archon of the Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the blizzard"}},nil} -c["Allocates Archon of the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the storm"}},nil} -c["Allocates Arsonist"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arsonist"}},nil} -c["Allocates Artillery Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="artillery strike"}},nil} -c["Allocates Asceticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="asceticism"}},nil} -c["Allocates Aspiring Genius"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aspiring genius"}},nil} -c["Allocates At your Command"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="at your command"}},nil} -c["Allocates Austerity Measures"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="austerity measures"}},nil} -c["Allocates Authority"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="authority"}},nil} -c["Allocates Avoiding Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="avoiding deflection"}},nil} -c["Allocates Back in Action"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="back in action"}},nil} -c["Allocates Backup Plan"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="backup plan"}},nil} -c["Allocates Bannerman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bannerman"}},nil} -c["Allocates Barbaric Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="barbaric strength"}},nil} -c["Allocates Bashing Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bashing beast"}},nil} -c["Allocates Battle Fever"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle fever"}},nil} -c["Allocates Battle Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle trance"}},nil} -c["Allocates Bear's Roar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bear's roar"}},nil} -c["Allocates Beastial Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beastial skin"}},nil} -c["Allocates Beef"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beef"}},nil} -c["Allocates Behemoth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="behemoth"}},nil} -c["Allocates Bestial Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bestial rage"}},nil} -c["Allocates Biting Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="biting frost"}},nil} -c["Allocates Blade Catcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade catcher"}},nil} -c["Allocates Blade Flurry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade flurry"}},nil} -c["Allocates Blazing Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blazing arms"}},nil} -c["Allocates Bleeding Out"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bleeding out"}},nil} -c["Allocates Blessing of the Moon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blessing of the moon"}},nil} -c["Allocates Blinding Flash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blinding flash"}},nil} -c["Allocates Blinding Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blinding strike"}},nil} -c["Allocates Blood Rush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood rush"}},nil} -c["Allocates Blood Tearing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood tearing"}},nil} -c["Allocates Blood Transfusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood transfusion"}},nil} -c["Allocates Blood of Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood of rage"}},nil} -c["Allocates Blood of the Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood of the wolf"}},nil} -c["Allocates Bloodletting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodletting"}},nil} -c["Allocates Bloodthirsty"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodthirsty"}},nil} -c["Allocates Blurred Motion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blurred motion"}},nil} -c["Allocates Bolstering Yell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bolstering yell"}},nil} -c["Allocates Bonded Precision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bonded precision"}},nil} -c["Allocates Bone Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bone chains"}},nil} -c["Allocates Boon of the Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="boon of the beast"}},nil} -c["Allocates Boundless Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="boundless growth"}},nil} -c["Allocates Bounty Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bounty hunter"}},nil} -c["Allocates Branching Bolts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="branching bolts"}},nil} -c["Allocates Bravado"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bravado"}},nil} -c["Allocates Breakage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breakage"}},nil} -c["Allocates Breaking Blows"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breaking blows"}},nil} -c["Allocates Breaking Point"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breaking point"}},nil} -c["Allocates Breath of Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of fire"}},nil} -c["Allocates Breath of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of ice"}},nil} -c["Allocates Breath of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of lightning"}},nil} -c["Allocates Bringer of Order"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bringer of order"}},nil} -c["Allocates Briny Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="briny carapace"}},nil} -c["Allocates Brush Off"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brush off"}},nil} -c["Allocates Brute Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brute strength"}},nil} -c["Allocates Building Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="building toxins"}},nil} -c["Allocates Burn Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burn away"}},nil} -c["Allocates Burning Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burning nature"}},nil} -c["Allocates Burning Strikes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burning strikes"}},nil} -c["Allocates Burnout"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burnout"}},nil} -c["Allocates Cacophony"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cacophony"}},nil} -c["Allocates Calibration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="calibration"}},nil} -c["Allocates Captivating Companionship"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="captivating companionship"}},nil} -c["Allocates Careful Aim"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful aim"}},nil} -c["Allocates Careful Assassin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful assassin"}},nil} -c["Allocates Careful Consideration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful consideration"}},nil} -c["Allocates Carved Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="carved earth"}},nil} -c["Allocates Casting Cascade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="casting cascade"}},nil} -c["Allocates Catalysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catalysis"}},nil} -c["Allocates Catapult"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catapult"}},nil} -c["Allocates Chakra of Breathing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of breathing"}},nil} -c["Allocates Chakra of Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of elements"}},nil} -c["Allocates Chakra of Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of impact"}},nil} -c["Allocates Chakra of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of life"}},nil} -c["Allocates Chakra of Rhythm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of rhythm"}},nil} -c["Allocates Chakra of Sight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of sight"}},nil} -c["Allocates Chakra of Stability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of stability"}},nil} -c["Allocates Chakra of Thought"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of thought"}},nil} -c["Allocates Channelled Heritage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="channelled heritage"}},nil} -c["Allocates Chilled to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chilled to the bone"}},nil} -c["Allocates Chillproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chillproof"}},nil} -c["Allocates Chronomancy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chronomancy"}},nil} -c["Allocates Clear Space"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="clear space"}},nil} -c["Allocates Climate Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="climate change"}},nil} -c["Allocates Close Confines"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="close confines"}},nil} -c["Allocates Cluster Bombs"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cluster bombs"}},nil} -c["Allocates Coated Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coated arms"}},nil} -c["Allocates Cold Coat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cold coat"}},nil} -c["Allocates Cold Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cold nature"}},nil} -c["Allocates Colossal Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="colossal weapon"}},nil} -c["Allocates Coming Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coming calamity"}},nil} -c["Allocates Commanding Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="commanding rage"}},nil} -c["Allocates Concussive Attack"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="concussive attack"}},nil} -c["Allocates Conductive Embrace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conductive embrace"}},nil} -c["Allocates Conservative Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conservative casting"}},nil} -c["Allocates Consistent Intake"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="consistent intake"}},nil} -c["Allocates Constricting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="constricting"}},nil} -c["Allocates Controlled Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="controlled chaos"}},nil} -c["Allocates Controlling Magic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="controlling magic"}},nil} -c["Allocates Convalescence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="convalescence"}},nil} -c["Allocates Cooked"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cooked"}},nil} -c["Allocates Core of the Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="core of the guardian"}},nil} -c["Allocates Counterstancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="counterstancing"}},nil} -c["Allocates Coursing Energy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coursing energy"}},nil} -c["Allocates Covering Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="covering ward"}},nil} -c["Allocates Cranial Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cranial impact"}},nil} -c["Allocates Craving Slaughter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="craving slaughter"}},nil} -c["Allocates Cremating Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremating cries"}},nil} -c["Allocates Cremation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremation"}},nil} -c["Allocates Crippling Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crippling toxins"}},nil} -c["Allocates Critical Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="critical exploit"}},nil} -c["Allocates Cross Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cross strike"}},nil} -c["Allocates Cruel Methods"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cruel methods"}},nil} -c["Allocates Crushing Judgement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crushing judgement"}},nil} -c["Allocates Crushing Verdict"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crushing verdict"}},nil} -c["Allocates Crystal Elixir"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystal elixir"}},nil} -c["Allocates Crystalline Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline flesh"}},nil} -c["Allocates Crystalline Resistance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline resistance"}},nil} -c["Allocates Crystallised Immunities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystallised immunities"}},nil} -c["Allocates Cull the Hordes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cull the hordes"}},nil} -c["Allocates Curved Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="curved weapon"}},nil} -c["Allocates Cut to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cut to the bone"}},nil} -c["Allocates Dangerous Blossom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dangerous blossom"}},nil} -c["Allocates Dark Entries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dark entries"}},nil} -c["Allocates Dazing Blocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dazing blocks"}},nil} -c["Allocates Dead can Dance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dead can dance"}},nil} -c["Allocates Deadly Flourish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly flourish"}},nil} -c["Allocates Deadly Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly force"}},nil} -c["Allocates Deadly Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly invocations"}},nil} -c["Allocates Deafening Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deafening cries"}},nil} -c["Allocates Death from Afar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="death from afar"}},nil} -c["Allocates Decisive Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decisive retreat"}},nil} -c["Allocates Decrepifying Curse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decrepifying curse"}},nil} -c["Allocates Deep Freeze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep freeze"}},nil} -c["Allocates Deep Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep trance"}},nil} -c["Allocates Deep Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep wounds"}},nil} -c["Allocates Defensive Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive reflexes"}},nil} -c["Allocates Defensive Stance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive stance"}},nil} -c["Allocates Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defiance"}},nil} -c["Allocates Deft Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deft recovery"}},nil} -c["Allocates Delayed Danger"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="delayed danger"}},nil} -c["Allocates Demolitionist"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="demolitionist"}},nil} -c["Allocates Dependable Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dependable ward"}},nil} -c["Allocates Desensitisation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desensitisation"}},nil} -c["Allocates Desperate Times"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desperate times"}},nil} -c["Allocates Deterioration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deterioration"}},nil} -c["Allocates Determined Precision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="determined precision"}},nil} -c["Allocates Devastation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="devastation"}},nil} -c["Allocates Dimensional Weakspot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dimensional weakspot"}},nil} -c["Allocates Direct Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="direct approach"}},nil} -c["Allocates Disorientation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="disorientation"}},nil} -c["Allocates Dispatch Foes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dispatch foes"}},nil} -c["Allocates Distant Dreamer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distant dreamer"}},nil} -c["Allocates Distracted Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracted target"}},nil} -c["Allocates Distracting Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracting presence"}},nil} -c["Allocates Dizzying Hits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dizzying hits"}},nil} -c["Allocates Doomsayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="doomsayer"}},nil} -c["Allocates Draiocht Cleansing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="draiocht cleansing"}},nil} -c["Allocates Dread Engineer's Concoction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dread engineer's concoction"}},nil} -c["Allocates Dreamcatcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dreamcatcher"}},nil} -c["Allocates Drenched"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="drenched"}},nil} -c["Allocates Dynamism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dynamism"}},nil} -c["Allocates Easy Going"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy going"}},nil} -c["Allocates Easy Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy target"}},nil} -c["Allocates Echoing Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing flames"}},nil} -c["Allocates Echoing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing frost"}},nil} -c["Allocates Echoing Pulse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing pulse"}},nil} -c["Allocates Echoing Thunder"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing thunder"}},nil} -c["Allocates Effervescent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="effervescent"}},nil} -c["Allocates Efficient Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient alchemy"}},nil} -c["Allocates Efficient Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient casting"}},nil} -c["Allocates Efficient Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient contraptions"}},nil} -c["Allocates Efficient Inscriptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient inscriptions"}},nil} -c["Allocates Efficient Killing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient killing"}},nil} -c["Allocates Efficient Loading"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient loading"}},nil} -c["Allocates Eldritch Will"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eldritch will"}},nil} -c["Allocates Electric Amplification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric amplification"}},nil} -c["Allocates Electric Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric blood"}},nil} -c["Allocates Electrified Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrified claw"}},nil} -c["Allocates Electrifying Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying daze"}},nil} -c["Allocates Electrifying Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying nature"}},nil} -c["Allocates Electrocuting Exposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocuting exposure"}},nil} -c["Allocates Electrocution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocution"}},nil} -c["Allocates Electrotherapy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrotherapy"}},nil} -c["Allocates Embodiment of Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of frost"}},nil} -c["Allocates Embodiment of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of lightning"}},nil} -c["Allocates Emboldened Avatar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldened avatar"}},nil} -c["Allocates Emboldening Casts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldening casts"}},nil} -c["Allocates Emboldening Lead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldening lead"}},nil} -c["Allocates Embracing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embracing frost"}},nil} -c["Allocates Empowering Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering infusions"}},nil} -c["Allocates Empowering Remains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remains"}},nil} -c["Allocates Empowering Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remnants"}},nil} -c["Allocates Encompassing Domain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="encompassing domain"}},nil} -c["Allocates Endless Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless blizzard"}},nil} -c["Allocates Endless Circuit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless circuit"}},nil} -c["Allocates Endurance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endurance"}},nil} -c["Allocates Endured Suffering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endured suffering"}},nil} -c["Allocates Enduring Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring archon"}},nil} -c["Allocates Enduring Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring deflection"}},nil} -c["Allocates Energise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energise"}},nil} -c["Allocates Energising Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising archon"}},nil} -c["Allocates Energising Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising deflection"}},nil} -c["Allocates Engineered Blaze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="engineered blaze"}},nil} -c["Allocates Enhanced Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced barrier"}},nil} -c["Allocates Enhanced Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced reflexes"}},nil} -c["Allocates Enhancing Attacks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhancing attacks"}},nil} -c["Allocates Entropic Incarnation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="entropic incarnation"}},nil} -c["Allocates Enveloping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enveloping presence"}},nil} -c["Allocates Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="equilibrium"}},nil} -c["Allocates Eroding Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eroding chains"}},nil} -c["Allocates Erraticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="erraticism"}},nil} -c["Allocates Escalating Mayhem"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating mayhem"}},nil} -c["Allocates Escalating Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating toxins"}},nil} -c["Allocates Escalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalation"}},nil} -c["Allocates Escape Strategy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escape strategy"}},nil} -c["Allocates Escape Velocity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escape velocity"}},nil} -c["Allocates Essence Infusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="essence infusion"}},nil} -c["Allocates Ether Flow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ether flow"}},nil} -c["Allocates Event Horizon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="event horizon"}},nil} -c["Allocates Everlasting Glory"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting glory"}},nil} -c["Allocates Everlasting Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting infusions"}},nil} -c["Allocates Evocational Practitioner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="evocational practitioner"}},nil} -c["Allocates Expendable Army"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="expendable army"}},nil} -c["Allocates Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit"}},nil} -c["Allocates Exploit the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit the elements"}},nil} -c["Allocates Explosive Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive empowerment"}},nil} -c["Allocates Explosive Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive impact"}},nil} -c["Allocates Exposed to the Cosmos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the cosmos"}},nil} -c["Allocates Exposed to the Inferno"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the inferno"}},nil} -c["Allocates Exposed to the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the storm"}},nil} -c["Allocates Extinguishing Exhalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="extinguishing exhalation"}},nil} -c["Allocates Falcon Dive"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon dive"}},nil} -c["Allocates Falcon Technique"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon technique"}},nil} -c["Allocates Fan the Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fan the flames"}},nil} -c["Allocates Far Sighted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="far sighted"}},nil} -c["Allocates Fast Acting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fast acting toxins"}},nil} -c["Allocates Fast Metabolism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fast metabolism"}},nil} -c["Allocates Fate Finding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fate finding"}},nil} -c["Allocates Fated End"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fated end"}},nil} -c["Allocates Favourable Odds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="favourable odds"}},nil} -c["Allocates Fearful Paralysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fearful paralysis"}},nil} -c["Allocates Feathered Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feathered fletching"}},nil} -c["Allocates Feel the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feel the earth"}},nil} -c["Allocates Fervour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fervour"}},nil} -c["Allocates Final Barrage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="final barrage"}},nil} -c["Allocates Finality"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finality"}},nil} -c["Allocates Finesse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finesse"}},nil} -c["Allocates Finish Them"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finish them"}},nil} -c["Allocates Finishing Blows"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finishing blows"}},nil} -c["Allocates Firestarter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="firestarter"}},nil} -c["Allocates First Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="first approach"}},nil} -c["Allocates Flamewalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flamewalker"}},nil} -c["Allocates Flare"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flare"}},nil} -c["Allocates Flash Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flash storm"}},nil} -c["Allocates Flashy Parrying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flashy parrying"}},nil} -c["Allocates Fleshcrafting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fleshcrafting"}},nil} -c["Allocates Flip the Script"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flip the script"}},nil} -c["Allocates Focused Channel"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="focused channel"}},nil} -c["Allocates Focused Thrust"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="focused thrust"}},nil} -c["Allocates For the Jugular"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="for the jugular"}},nil} -c["Allocates Forces of Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forces of nature"}},nil} -c["Allocates Forcewave"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forcewave"}},nil} -c["Allocates Forthcoming"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forthcoming"}},nil} -c["Allocates Fortified Location"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortified location"}},nil} -c["Allocates Fortifying Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortifying blood"}},nil} -c["Allocates Frantic Fighter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic fighter"}},nil} -c["Allocates Frantic Swings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic swings"}},nil} -c["Allocates Frazzled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frazzled"}},nil} -c["Allocates Freedom of Movement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="freedom of movement"}},nil} -c["Allocates Frenetic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frenetic"}},nil} -c["Allocates Frightening Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frightening shield"}},nil} -c["Allocates Frostwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frostwalker"}},nil} -c["Allocates Frozen Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frozen claw"}},nil} -c["Allocates Frozen Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frozen limit"}},nil} -c["Allocates Full Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full recovery"}},nil} -c["Allocates Full Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full salvo"}},nil} -c["Allocates Fulmination"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fulmination"}},nil} -c["Allocates Gem Enthusiast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gem enthusiast"}},nil} -c["Allocates General Electric"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general electric"}},nil} -c["Allocates General's Bindings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general's bindings"}},nil} -c["Allocates Giantslayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="giantslayer"}},nil} -c["Allocates Gigantic Following"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gigantic following"}},nil} -c["Allocates Glaciation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glaciation"}},nil} -c["Allocates Glancing Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glancing deflection"}},nil} -c["Allocates Glazed Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glazed flesh"}},nil} -c["Allocates Glorious Anticipation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glorious anticipation"}},nil} -c["Allocates Goring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="goring"}},nil} -c["Allocates Gravedigger"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gravedigger"}},nil} -c["Allocates Greatest Defence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="greatest defence"}},nil} -c["Allocates Grenadier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grenadier"}},nil} -c["Allocates Grip of Evil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grip of evil"}},nil} -c["Allocates Grit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grit"}},nil} -c["Allocates Growing Swarm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="growing swarm"}},nil} -c["Allocates Guided Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guided hand"}},nil} -c["Allocates Guts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guts"}},nil} -c["Allocates Guttural Roar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guttural roar"}},nil} -c["Allocates Haemorrhaging Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="haemorrhaging cuts"}},nil} -c["Allocates Hail"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hail"}},nil} -c["Allocates Hale Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale heart"}},nil} -c["Allocates Hale Traveller"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale traveller"}},nil} -c["Allocates Hallowed"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hallowed"}},nil} -c["Allocates Hardened Wood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hardened wood"}},nil} -c["Allocates Harmonic Generator"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harmonic generator"}},nil} -c["Allocates Harness the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harness the elements"}},nil} -c["Allocates Harsh Winter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harsh winter"}},nil} -c["Allocates Hastening Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hastening barrier"}},nil} -c["Allocates Headshot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="headshot"}},nil} -c["Allocates Heart Tissue"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heart tissue"}},nil} -c["Allocates Heartbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartbreaking"}},nil} -c["Allocates Heartstopping"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping"}},nil} -c["Allocates Heartstopping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping presence"}},nil} -c["Allocates Heatproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heatproof"}},nil} -c["Allocates Heavy Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy ammunition"}},nil} -c["Allocates Heavy Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy armour"}},nil} -c["Allocates Heavy Buffer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy buffer"}},nil} -c["Allocates Heavy Contact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy contact"}},nil} -c["Allocates Heavy Drinker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy drinker"}},nil} -c["Allocates Heavy Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy frost"}},nil} -c["Allocates Heavy Weaponry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy weaponry"}},nil} -c["Allocates Hefty Unit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hefty unit"}},nil} -c["Allocates Hidden Barb"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hidden barb"}},nil} -c["Allocates Hide of the Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hide of the bear"}},nil} -c["Allocates High Alert"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="high alert"}},nil} -c["Allocates Hindered Capabilities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindered capabilities"}},nil} -c["Allocates Hindering Obstacles"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindering obstacles"}},nil} -c["Allocates Holy Protector"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="holy protector"}},nil} -c["Allocates Honourless"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="honourless"}},nil} -c["Allocates Howling Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="howling beast"}},nil} -c["Allocates Hulking Smash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hulking smash"}},nil} -c["Allocates Hunker Down"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunker down"}},nil} -c["Allocates Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter"}},nil} -c["Allocates Hunter's Talisman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter's talisman"}},nil} -c["Allocates Hunting Companion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunting companion"}},nil} -c["Allocates Ice Walls"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ice walls"}},nil} -c["Allocates Icebreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="icebreaker"}},nil} -c["Allocates Ichlotl's Inferno"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ichlotl's inferno"}},nil} -c["Allocates Ignore Pain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ignore pain"}},nil} -c["Allocates Illuminated Crown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="illuminated crown"}},nil} -c["Allocates Imbibed Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="imbibed power"}},nil} -c["Allocates Immaterial"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immaterial"}},nil} -c["Allocates Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immolation"}},nil} -c["Allocates Immortal Infamy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immortal infamy"}},nil} -c["Allocates Immortal Thirst"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immortal thirst"}},nil} -c["Allocates Impact Area"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impact area"}},nil} -c["Allocates Impact Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impact force"}},nil} -c["Allocates Impair"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impair"}},nil} -c["Allocates Impending Doom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impending doom"}},nil} -c["Allocates Impenetrable Shell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impenetrable shell"}},nil} -c["Allocates In Your Face"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="in your face"}},nil} -c["Allocates In the Thick of It"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="in the thick of it"}},nil} -c["Allocates Incendiary"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="incendiary"}},nil} -c["Allocates Incision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="incision"}},nil} -c["Allocates Inescapable Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inescapable cold"}},nil} -c["Allocates Inevitable Rupture"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inevitable rupture"}},nil} -c["Allocates Infernal Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infernal limit"}},nil} -c["Allocates Infused Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused flesh"}},nil} -c["Allocates Infused Limits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused limits"}},nil} -c["Allocates Infusing Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infusing power"}},nil} -c["Allocates Infusion of Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infusion of power"}},nil} -c["Allocates Ingenuity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ingenuity"}},nil} -c["Allocates Inherited Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inherited strength"}},nil} -c["Allocates Initiative"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="initiative"}},nil} -c["Allocates Inner Faith"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inner faith"}},nil} -c["Allocates Insightfulness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insightfulness"}},nil} -c["Allocates Inspiring Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring ally"}},nil} -c["Allocates Inspiring Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring leader"}},nil} -c["Allocates Instability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="instability"}},nil} -c["Allocates Insulated Treads"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insulated treads"}},nil} -c["Allocates Insulating Hide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insulating hide"}},nil} -c["Allocates Intense Dose"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="intense dose"}},nil} -c["Allocates Intense Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="intense flames"}},nil} -c["Allocates Internal Bleeding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="internal bleeding"}},nil} -c["Allocates Investing Energies"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="investing energies"}},nil} -c["Allocates Invigorating Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating archon"}},nil} -c["Allocates Invigorating Grandeur"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating grandeur"}},nil} -c["Allocates Invigorating Hate"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating hate"}},nil} -c["Allocates Invocated Echoes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated echoes"}},nil} -c["Allocates Invocated Efficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated efficiency"}},nil} -c["Allocates Invocated Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated limit"}},nil} -c["Allocates Iron Slippers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="iron slippers"}},nil} -c["Allocates Irreparable"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="irreparable"}},nil} -c["Allocates Jack of all Trades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="jack of all trades"}},nil} -c["Allocates Javelin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="javelin"}},nil} -c["Allocates Kept at Bay"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kept at bay"}},nil} -c["Allocates Killer Instinct"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="killer instinct"}},nil} -c["Allocates Kite Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kite runner"}},nil} -c["Allocates Last Stand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="last stand"}},nil} -c["Allocates Lasting Boons"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting boons"}},nil} -c["Allocates Lasting Incantations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting incantations"}},nil} -c["Allocates Lasting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting toxins"}},nil} -c["Allocates Lasting Trauma"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting trauma"}},nil} -c["Allocates Lavianga's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lavianga's brew"}},nil} -c["Allocates Lay Siege"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lay siege"}},nil} -c["Allocates Lead by Example"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lead by example"}},nil} -c["Allocates Leaping Ambush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leaping ambush"}},nil} -c["Allocates Leather Bound Gauntlets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leather bound gauntlets"}},nil} -c["Allocates Leeching Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leeching toxins"}},nil} -c["Allocates Left Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="left hand of darkness"}},nil} -c["Allocates Licking Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="licking wounds"}},nil} -c["Allocates Lifelong Friend"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lifelong friend"}},nil} -c["Allocates Light on your Feet"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="light on your feet"}},nil} -c["Allocates Lightning Quick"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning quick"}},nil} -c["Allocates Lightning Rod"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning rod"}},nil} -c["Allocates Lingering Horror"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering horror"}},nil} -c["Allocates Lingering Whispers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering whispers"}},nil} -c["Allocates Living Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="living death"}},nil} -c["Allocates Lockdown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lockdown"}},nil} -c["Allocates Locked On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="locked on"}},nil} -c["Allocates Lone Warrior"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lone warrior"}},nil} -c["Allocates Long Distance Relationship"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="long distance relationship"}},nil} -c["Allocates Loose Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="loose flesh"}},nil} -c["Allocates Lord of Horrors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lord of horrors"}},nil} -c["Allocates Low Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="low tolerance"}},nil} -c["Allocates Lucidity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lucidity"}},nil} -c["Allocates Lucky Rabbit Foot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lucky rabbit foot"}},nil} -c["Allocates Lust for Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lust for power"}},nil} -c["Allocates Lust for Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lust for sacrifice"}},nil} -c["Allocates Made to Last"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="made to last"}},nil} -c["Allocates Madness in the Bones"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="madness in the bones"}},nil} -c["Allocates Maiming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="maiming strike"}},nil} -c["Allocates Manifold Method"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="manifold method"}},nil} -c["Allocates Marathon Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marathon runner"}},nil} -c["Allocates Marked Agility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked agility"}},nil} -c["Allocates Marked for Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for death"}},nil} -c["Allocates Marked for Sickness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for sickness"}},nil} -c["Allocates Martial Artistry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="martial artistry"}},nil} -c["Allocates Mass Hysteria"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mass hysteria"}},nil} -c["Allocates Mass Rejuvenation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mass rejuvenation"}},nil} -c["Allocates Master Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master fletching"}},nil} -c["Allocates Master of Hexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master of hexes"}},nil} -c["Allocates Material Solidification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="material solidification"}},nil} -c["Allocates Mauling Stuns"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mauling stuns"}},nil} -c["Allocates Meat Recycling"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="meat recycling"}},nil} -c["Allocates Melding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melding"}},nil} -c["Allocates Melting Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melting flames"}},nil} -c["Allocates Mending Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mending deflection"}},nil} -c["Allocates Mental Alacrity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental alacrity"}},nil} -c["Allocates Mental Perseverance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental perseverance"}},nil} -c["Allocates Mental Toughness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental toughness"}},nil} -c["Allocates Mind Eraser"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mind eraser"}},nil} -c["Allocates Molten Being"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten being"}},nil} -c["Allocates Molten Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten carapace"}},nil} -c["Allocates Molten Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten claw"}},nil} -c["Allocates Moment of Truth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="moment of truth"}},nil} -c["Allocates Momentum"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="momentum"}},nil} -c["Allocates Multi Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="multi shot"}},nil} -c["Allocates Multitasking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="multitasking"}},nil} -c["Allocates Mystical Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mystical rage"}},nil} -c["Allocates Natural Immunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="natural immunity"}},nil} -c["Allocates Nature's Bite"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nature's bite"}},nil} -c["Allocates Near Sighted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near sighted"}},nil} -c["Allocates Near at Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near at hand"}},nil} -c["Allocates Necromantic Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necromantic ward"}},nil} -c["Allocates Necrotic Touch"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotic touch"}},nil} -c["Allocates Necrotised Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotised flesh"}},nil} -c["Allocates Nimble Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nimble strength"}},nil} -c["Allocates Nourishing Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nourishing ally"}},nil} -c["Allocates Nurturing Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nurturing guardian"}},nil} -c["Allocates Off-Balancing Retort"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="off-balancing retort"}},nil} -c["Allocates One For All"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one for all"}},nil} -c["Allocates One With Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with flame"}},nil} -c["Allocates One with the River"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the river"}},nil} -c["Allocates One with the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the storm"}},nil} -c["Allocates Overexposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overexposure"}},nil} -c["Allocates Overflowing Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overflowing power"}},nil} -c["Allocates Overheating Blow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overheating blow"}},nil} -c["Allocates Overload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overload"}},nil} -c["Allocates Overwhelm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelm"}},nil} -c["Allocates Overwhelming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelming strike"}},nil} -c["Allocates Overzealous"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overzealous"}},nil} -c["Allocates Pack Encouragement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pack encouragement"}},nil} -c["Allocates Paranoia"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="paranoia"}},nil} -c["Allocates Passthrough Rounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="passthrough rounds"}},nil} -c["Allocates Patient Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="patient barrier"}},nil} -c["Allocates Perfect Opportunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfect opportunity"}},nil} -c["Allocates Perfectly Placed Knife"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfectly placed knife"}},nil} -c["Allocates Perforation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perforation"}},nil} -c["Allocates Perpetual Freeze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perpetual freeze"}},nil} -c["Allocates Personal Touch"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="personal touch"}},nil} -c["Allocates Pierce the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pierce the heart"}},nil} -c["Allocates Piercing Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="piercing claw"}},nil} -c["Allocates Piercing Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="piercing shot"}},nil} -c["Allocates Pile On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pile on"}},nil} -c["Allocates Pin and Run"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin and run"}},nil} -c["Allocates Pin their Motivation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin their motivation"}},nil} -c["Allocates Pinpoint Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pinpoint shot"}},nil} -c["Allocates Pliable Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pliable flesh"}},nil} -c["Allocates Pocket Sand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pocket sand"}},nil} -c["Allocates Polished Iron"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="polished iron"}},nil} -c["Allocates Polymathy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="polymathy"}},nil} -c["Allocates Potent Incantation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="potent incantation"}},nil} -c["Allocates Power Conduction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power conduction"}},nil} -c["Allocates Power Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power shots"}},nil} -c["Allocates Precise Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise invocations"}},nil} -c["Allocates Precise Point"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise point"}},nil} -c["Allocates Precise Volatility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise volatility"}},nil} -c["Allocates Precision Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precision salvo"}},nil} -c["Allocates Preemptive Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="preemptive strike"}},nil} -c["Allocates Presence Present"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="presence present"}},nil} -c["Allocates Preservation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="preservation"}},nil} -c["Allocates Pressure Points"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pressure points"}},nil} -c["Allocates Price of Freedom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="price of freedom"}},nil} -c["Allocates Primal Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal growth"}},nil} -c["Allocates Primal Protection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal protection"}},nil} -c["Allocates Primal Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal rage"}},nil} -c["Allocates Primal Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal sundering"}},nil} -c["Allocates Primed to Explode"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primed to explode"}},nil} -c["Allocates Prism Guard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prism guard"}},nil} -c["Allocates Profane Commander"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="profane commander"}},nil} -c["Allocates Proficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="proficiency"}},nil} -c["Allocates Projectile Bulwark"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="projectile bulwark"}},nil} -c["Allocates Proliferating Weeds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="proliferating weeds"}},nil} -c["Allocates Prolonged Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prolonged assault"}},nil} -c["Allocates Prolonged Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prolonged fury"}},nil} -c["Allocates Protraction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="protraction"}},nil} -c["Allocates Psychic Fragmentation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="psychic fragmentation"}},nil} -c["Allocates Punctured Lung"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="punctured lung"}},nil} -c["Allocates Pure Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure chaos"}},nil} -c["Allocates Pure Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure power"}},nil} -c["Allocates Push the Advantage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="push the advantage"}},nil} -c["Allocates Quick Fingers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick fingers"}},nil} -c["Allocates Quick Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick recovery"}},nil} -c["Allocates Quick Response"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick response"}},nil} -c["Allocates Rallying Form"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rallying form"}},nil} -c["Allocates Rallying Icon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rallying icon"}},nil} -c["Allocates Rapid Reload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid reload"}},nil} -c["Allocates Rapid Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid strike"}},nil} -c["Allocates Rattled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rattled"}},nil} -c["Allocates Raw Mana"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="raw mana"}},nil} -c["Allocates Reaching Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaching strike"}},nil} -c["Allocates Reaving"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaving"}},nil} -c["Allocates Refills"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refills"}},nil} -c["Allocates Refocus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refocus"}},nil} -c["Allocates Reformed Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reformed barrier"}},nil} -c["Allocates Regenerative Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="regenerative flesh"}},nil} -c["Allocates Reinforced Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinforced barrier"}},nil} -c["Allocates Reinforced Rallying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinforced rallying"}},nil} -c["Allocates Reinvigoration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinvigoration"}},nil} -c["Allocates Relentless Fallen"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="relentless fallen"}},nil} -c["Allocates Remnant Attraction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="remnant attraction"}},nil} -c["Allocates Repeating Explosives"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repeating explosives"}},nil} -c["Allocates Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reprisal"}},nil} -c["Allocates Repulsion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repulsion"}},nil} -c["Allocates Resolute Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolute reprisal"}},nil} -c["Allocates Resolution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolution"}},nil} -c["Allocates Restless Dead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="restless dead"}},nil} -c["Allocates Resurging Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resurging archon"}},nil} -c["Allocates Retaliation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="retaliation"}},nil} -c["Allocates Return to Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="return to nature"}},nil} -c["Allocates Reusable Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reusable ammunition"}},nil} -c["Allocates Revenge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="revenge"}},nil} -c["Allocates Reverberation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reverberation"}},nil} -c["Allocates Right Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="right hand of darkness"}},nil} -c["Allocates Roaring Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roaring cries"}},nil} -c["Allocates Roil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roil"}},nil} -c["Allocates Roll and Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roll and strike"}},nil} -c["Allocates Ruin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ruin"}},nil} -c["Allocates Ruinic Helm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ruinic helm"}},nil} -c["Allocates Run and Gun"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="run and gun"}},nil} -c["Allocates Rupturing Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rupturing pins"}},nil} -c["Allocates Rusted Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rusted pins"}},nil} -c["Allocates Sacrificial Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sacrificial blood"}},nil} -c["Allocates Sand in the Eyes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sand in the eyes"}},nil} -c["Allocates Sanguimantic Rituals"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguimantic rituals"}},nil} -c["Allocates Sanguine Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguine tolerance"}},nil} -c["Allocates Saqawal's Guidance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="saqawal's guidance"}},nil} -c["Allocates Savagery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savagery"}},nil} -c["Allocates Savoured Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savoured blood"}},nil} -c["Allocates Savouring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savouring"}},nil} -c["Allocates Scales of the Wyvern"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="scales of the wyvern"}},nil} -c["Allocates Searing Heat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="searing heat"}},nil} -c["Allocates Secrets of the Orb"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="secrets of the orb"}},nil} -c["Allocates Seeing Stars"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="seeing stars"}},nil} -c["Allocates Self Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self immolation"}},nil} -c["Allocates Self Mortification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self mortification"}},nil} -c["Allocates Serrated Edges"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="serrated edges"}},nil} -c["Allocates Shadow Dancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shadow dancing"}},nil} -c["Allocates Sharp Sight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sharp sight"}},nil} -c["Allocates Sharpened Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sharpened claw"}},nil} -c["Allocates Shatter Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shatter palm"}},nil} -c["Allocates Shattered Crystal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattered crystal"}},nil} -c["Allocates Shattering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering"}},nil} -c["Allocates Shattering Blow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering blow"}},nil} -c["Allocates Shattering Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering daze"}},nil} -c["Allocates Shedding Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shedding skin"}},nil} -c["Allocates Shield Expertise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shield expertise"}},nil} -c["Allocates Shifted Strikes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shifted strikes"}},nil} -c["Allocates Shimmering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering"}},nil} -c["Allocates Shimmering Mirage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering mirage"}},nil} -c["Allocates Shocking Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shocking limit"}},nil} -c["Allocates Shockproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockproof"}},nil} -c["Allocates Shockwaves"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockwaves"}},nil} -c["Allocates Short Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="short shot"}},nil} -c["Allocates Shrapnel"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shrapnel"}},nil} -c["Allocates Shredding Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding contraptions"}},nil} -c["Allocates Shredding Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding force"}},nil} -c["Allocates Sic 'Em"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sic 'em"}},nil} -c["Allocates Sigil of Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of fire"}},nil} -c["Allocates Sigil of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of ice"}},nil} -c["Allocates Sigil of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of lightning"}},nil} -c["Allocates Silent Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="silent guardian"}},nil} -c["Allocates Singular Purpose"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="singular purpose"}},nil} -c["Allocates Siphon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="siphon"}},nil} -c["Allocates Sitting Duck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sitting duck"}},nil} -c["Allocates Skullcrusher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="skullcrusher"}},nil} -c["Allocates Sling Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sling shots"}},nil} -c["Allocates Slippery Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slippery ice"}},nil} -c["Allocates Slow Burn"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slow burn"}},nil} -c["Allocates Smoke Inhalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="smoke inhalation"}},nil} -c["Allocates Sniper"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sniper"}},nil} -c["Allocates Snowpiercer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="snowpiercer"}},nil} -c["Allocates Soul Bloom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="soul bloom"}},nil} -c["Allocates Spaghettification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spaghettification"}},nil} -c["Allocates Specialised Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="specialised shots"}},nil} -c["Allocates Spectral Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spectral ward"}},nil} -c["Allocates Spell Haste"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spell haste"}},nil} -c["Allocates Spellblade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spellblade"}},nil} -c["Allocates Spike Pit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spike pit"}},nil} -c["Allocates Spiked Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked armour"}},nil} -c["Allocates Spiked Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked shield"}},nil} -c["Allocates Spiral into Depression"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into depression"}},nil} -c["Allocates Spiral into Insanity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into insanity"}},nil} -c["Allocates Spiral into Mania"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into mania"}},nil} -c["Allocates Spirit Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit bond"}},nil} -c["Allocates Spirit of the Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the bear"}},nil} -c["Allocates Spirit of the Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the wolf"}},nil} -c["Allocates Spirit of the Wyvern"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the wyvern"}},nil} -c["Allocates Splintering Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splintering force"}},nil} -c["Allocates Splinters"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splinters"}},nil} -c["Allocates Split Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split shot"}},nil} -c["Allocates Split the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split the earth"}},nil} -c["Allocates Splitting Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splitting ground"}},nil} -c["Allocates Spray and Pray"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spray and pray"}},nil} -c["Allocates Spreading Shocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spreading shocks"}},nil} -c["Allocates Stacking Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stacking toxins"}},nil} -c["Allocates Staggering Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering palm"}},nil} -c["Allocates Staggering Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering wounds"}},nil} -c["Allocates Stand Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand ground"}},nil} -c["Allocates Stand and Deliver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand and deliver"}},nil} -c["Allocates Stars Aligned"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stars aligned"}},nil} -c["Allocates Staunch Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunch deflection"}},nil} -c["Allocates Staunching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunching"}},nil} -c["Allocates Steadfast Resolve"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steadfast resolve"}},nil} -c["Allocates Steady Footing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steady footing"}},nil} -c["Allocates Stigmata"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stigmata"}},nil} -c["Allocates Stimulants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stimulants"}},nil} -c["Allocates Storm Driven"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm driven"}},nil} -c["Allocates Storm Surge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm surge"}},nil} -c["Allocates Storm Swell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm swell"}},nil} -c["Allocates Stormbreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormbreaker"}},nil} -c["Allocates Stormcharged"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormcharged"}},nil} -c["Allocates Stormwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormwalker"}},nil} -c["Allocates Strike True"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strike true"}},nil} -c["Allocates Stripped Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stripped defences"}},nil} -c["Allocates Strong Chin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strong chin"}},nil} -c["Allocates Struck Through"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="struck through"}},nil} -c["Allocates Stupefy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stupefy"}},nil} -c["Allocates Sturdy Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sturdy ally"}},nil} -c["Allocates Stylebender"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stylebender"}},nil} -c["Allocates Subterfuge Mask"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="subterfuge mask"}},nil} -c["Allocates Succour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="succour"}},nil} -c["Allocates Sudden Escalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sudden escalation"}},nil} -c["Allocates Sudden Infuriation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sudden infuriation"}},nil} -c["Allocates Suffusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="suffusion"}},nil} -c["Allocates Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sundering"}},nil} -c["Allocates Supportive Ancestors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="supportive ancestors"}},nil} -c["Allocates Surging Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="surging beast"}},nil} -c["Allocates Surging Currents"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="surging currents"}},nil} -c["Allocates Swift Blocking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift blocking"}},nil} -c["Allocates Swift Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift claw"}},nil} -c["Allocates Swift Flight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift flight"}},nil} -c["Allocates Swift Interruption"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift interruption"}},nil} -c["Allocates Symbol of Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="symbol of defiance"}},nil} -c["Allocates Tactical Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tactical retreat"}},nil} -c["Allocates Tainted Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tainted strike"}},nil} -c["Allocates Taste for Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taste for blood"}},nil} -c["Allocates Taut Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taut flesh"}},nil} -c["Allocates Tempered Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered defences"}},nil} -c["Allocates Tempered Mind"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered mind"}},nil} -c["Allocates Temporal Mastery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="temporal mastery"}},nil} -c["Allocates Tenfold Attacks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tenfold attacks"}},nil} -c["Allocates The Ancient Serpent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the ancient serpent"}},nil} -c["Allocates The Cunning Fox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the cunning fox"}},nil} -c["Allocates The Fabled Stag"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the fabled stag"}},nil} -c["Allocates The Frenzied Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the frenzied bear"}},nil} -c["Allocates The Great Boar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the great boar"}},nil} -c["Allocates The Howling Primate"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the howling primate"}},nil} -c["Allocates The Molten One's Gift"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the molten one's gift"}},nil} -c["Allocates The Noble Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the noble wolf"}},nil} -c["Allocates The Power Within"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the power within"}},nil} -c["Allocates The Raging Ox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the raging ox"}},nil} -c["Allocates The Spring Hare"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the spring hare"}},nil} -c["Allocates The Wild Cat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the wild cat"}},nil} -c["Allocates The Winter Owl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the winter owl"}},nil} -c["Allocates Thickened Arteries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thickened arteries"}},nil} -c["Allocates Thicket Warding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thicket warding"}},nil} -c["Allocates Thin Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thin ice"}},nil} -c["Allocates Thirst for Endurance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst for endurance"}},nil} -c["Allocates Thirst for Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst for power"}},nil} -c["Allocates Thirst of Kitava"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst of kitava"}},nil} -c["Allocates Thirsting Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirsting ally"}},nil} -c["Allocates Thornhide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thornhide"}},nil} -c["Allocates Thousand Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thousand cuts"}},nil} -c["Allocates Thrill of Battle"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of battle"}},nil} -c["Allocates Thrill of the Fight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of the fight"}},nil} -c["Allocates Throatseeker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="throatseeker"}},nil} -c["Allocates Thunderstruck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thunderstruck"}},nil} -c["Allocates Tides of Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tides of change"}},nil} -c["Allocates Time Manipulation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="time manipulation"}},nil} -c["Allocates Titanic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="titanic"}},nil} -c["Allocates Tolerant Equipment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tolerant equipment"}},nil} -c["Allocates Total Incineration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="total incineration"}},nil} -c["Allocates Touch the Arcane"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="touch the arcane"}},nil} -c["Allocates Towering Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="towering shield"}},nil} -c["Allocates Toxic Sludge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="toxic sludge"}},nil} -c["Allocates Toxic Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="toxic tolerance"}},nil} -c["Allocates Trained Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained deflection"}},nil} -c["Allocates Trained Turrets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained turrets"}},nil} -c["Allocates Tribal Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tribal fury"}},nil} -c["Allocates Trick Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trick shot"}},nil} -c["Allocates True Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="true strike"}},nil} -c["Allocates Tukohama's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tukohama's brew"}},nil} -c["Allocates Turn the Clock Back"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock back"}},nil} -c["Allocates Turn the Clock Forward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock forward"}},nil} -c["Allocates Unbending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbending"}},nil} -c["Allocates Unbothering Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbothering cold"}},nil} -c["Allocates Unbound Forces"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbound forces"}},nil} -c["Allocates Unbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbreaking"}},nil} -c["Allocates Unerring Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unerring impact"}},nil} -c["Allocates Unexpected Finesse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unexpected finesse"}},nil} -c["Allocates Unforgiving"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unforgiving"}},nil} -c["Allocates Unhindered"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unhindered"}},nil} -c["Allocates Unimpeded"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unimpeded"}},nil} -c["Allocates Unleash Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unleash fire"}},nil} -c["Allocates Unnatural Resilience"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unnatural resilience"}},nil} -c["Allocates Unsight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unsight"}},nil} -c["Allocates Unspoken Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unspoken bond"}},nil} -c["Allocates Unstable Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstable bond"}},nil} -c["Allocates Unstoppable Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstoppable barrier"}},nil} -c["Allocates Unyielding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unyielding"}},nil} -c["Allocates Urgent Call"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="urgent call"}},nil} -c["Allocates Utility Ordnance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utility ordnance"}},nil} -c["Allocates Utmost Offering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utmost offering"}},nil} -c["Allocates Vale Shelter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vale shelter"}},nil} -c["Allocates Vengeance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeance"}},nil} -c["Allocates Vengeful Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeful fury"}},nil} -c["Allocates Versatile Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="versatile arms"}},nil} -c["Allocates Viciousness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="viciousness"}},nil} -c["Allocates Vigilance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigilance"}},nil} -c["Allocates Vigorous Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigorous remnants"}},nil} -c["Allocates Vile Mending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vile mending"}},nil} -c["Allocates Vocal Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vocal empowerment"}},nil} -c["Allocates Void"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="void"}},nil} -c["Allocates Volatile Grenades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="volatile grenades"}},nil} -c["Allocates Volcanic Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="volcanic skin"}},nil} -c["Allocates Voracious"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="voracious"}},nil} -c["Allocates Vulgar Methods"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vulgar methods"}},nil} -c["Allocates Waning Hindrances"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waning hindrances"}},nil} -c["Allocates Warding Fetish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding fetish"}},nil} -c["Allocates Warding Potions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding potions"}},nil} -c["Allocates Warlord Berserker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord berserker"}},nil} -c["Allocates Warlord Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord leader"}},nil} -c["Allocates Warm the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warm the heart"}},nil} -c["Allocates Wary Dodging"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wary dodging"}},nil} -c["Allocates Wasting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wasting"}},nil} -c["Allocates Wasting Casts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wasting casts"}},nil} -c["Allocates Watchtowers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="watchtowers"}},nil} -c["Allocates Waters of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waters of life"}},nil} -c["Allocates Well of Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="well of power"}},nil} -c["Allocates Wellspring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wellspring"}},nil} -c["Allocates Whirling Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="whirling assault"}},nil} -c["Allocates Wide Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wide barrier"}},nil} -c["Allocates Widespread Coverage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="widespread coverage"}},nil} -c["Allocates Wild Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wild storm"}},nil} -c["Allocates Wither Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wither away"}},nil} -c["Allocates Wolf's Howl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wolf's howl"}},nil} -c["Allocates Woodland Aspect"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="woodland aspect"}},nil} -c["Allocates Wrapped Quiver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wrapped quiver"}},nil} -c["Allocates Wyvern's Breath"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wyvern's breath"}},nil} -c["Allocates Zone of Control"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="zone of control"}},nil} c["Alternating every 5 seconds:"]={nil,"Alternating every 5 seconds: "} c["Alternating every 5 seconds: Take 30% less Damage from Hits"]={nil,"Alternating every 5 seconds: Take 30% less Damage from Hits "} c["Alternating every 5 seconds: Take 40% less Damage from Hits"]={nil,"Alternating every 5 seconds: Take 40% less Damage from Hits "} @@ -4383,7 +3629,7 @@ c["Ancestrally Boosted Attacks deal 30% increased Damage"]={{[1]={flags=1,keywor c["Ancestrally Boosted Attacks deal 8% increased Damage"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostDamage",type="INC",value=8}},nil} c["Any number of Poisons from this Weapon can affect a target at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=0,keywordFlags=0,name="PoisonStacks",type="OVERRIDE",value=math.huge}},nil} c["Apply 10 Critical Weakness to Enemies when Consuming a Mark on them"]={{[1]={flags=0,keywordFlags=0,name="ApplyCriticalWeakness",type="FLAG",value=true}},nil} -c["Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised"]={nil,"Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised "} +c["Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised"]={nil,"Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised "} c["Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeLifeRegen",type="FLAG",value=true}},nil} c["Archon Buffs also grant +20% to all Elemental Resistances"]={nil,"Archon Buffs also grant +20% to all Elemental Resistances "} c["Archon Buffs also grant +20% to all Elemental Resistances Archon Buffs also grant 10% increased Movement Speed"]={nil,"Archon Buffs also grant +20% to all Elemental Resistances Archon Buffs also grant 10% increased Movement Speed "} @@ -4392,6 +3638,7 @@ c["Archon Buffs also grant +50% Critical Damage Bonus"]={nil,"Archon Buffs also c["Archon Buffs also grant +50% Critical Damage Bonus Archon Buffs also grant +30% Critical Hit Chance"]={nil,"Archon Buffs also grant +50% Critical Damage Bonus Archon Buffs also grant +30% Critical Hit Chance "} c["Archon Buffs also grant 10% increased Movement Speed"]={nil,"Archon Buffs also grant 10% increased Movement Speed "} c["Archon recovery period expires 10% faster"]={nil,"Archon recovery period expires 10% faster "} +c["Archon recovery period expires 10% faster 10% increased effect of Archon Buffs on you"]={nil,"Archon recovery period expires 10% faster 10% increased effect of Archon Buffs on you "} c["Archon recovery period expires 25% faster"]={nil,"Archon recovery period expires 25% faster "} c["Archon recovery period expires 30% slower"]={nil,"Archon recovery period expires 30% slower "} c["Archon recovery period expires 30% slower Archon Buffs also grant +50% Critical Damage Bonus"]={nil,"Archon recovery period expires 30% slower Archon Buffs also grant +50% Critical Damage Bonus "} @@ -4445,12 +3692,12 @@ c["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments c["Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil} c["Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element"]={{[1]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil} c["Attacks with this Weapon gain 50% of Physical damage as Extra damage of each Element"]={{[1]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=50},[2]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50},[3]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=50}},nil} +c["Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield"]={nil,"Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield "} +c["Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield Attribute Passive Skills can instead grant 5% increased Cost Efficiency"]={nil,"Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield Attribute Passive Skills can instead grant 5% increased Cost Efficiency "} c["Attribute Passive Skills can instead grant 5% increased Cost Efficiency"]={nil,"Attribute Passive Skills can instead grant 5% increased Cost Efficiency "} c["Attribute Passive Skills can instead grant 5% increased Damage"]={nil,"Attribute Passive Skills can instead grant 5% increased Damage "} -c["Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Defences"]={nil,"Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Defences "} -c["Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Defences Attribute Passive Skills can instead grant 5% increased Cost Efficiency"]={nil,"Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Defences Attribute Passive Skills can instead grant 5% increased Cost Efficiency "} -c["Attribute Passive Skills can instead grant 5% increased Defences"]={nil,"Attribute Passive Skills can instead grant 5% increased Defences "} -c["Attribute Passive Skills can instead grant 5% increased Defences Attribute Passive Skills can instead grant 5% increased Cost Efficiency"]={nil,"Attribute Passive Skills can instead grant 5% increased Defences Attribute Passive Skills can instead grant 5% increased Cost Efficiency "} +c["Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield"]={nil,"Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield "} +c["Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield Attribute Passive Skills can instead grant 5% increased Cost Efficiency"]={nil,"Attribute Passive Skills can instead grant 5% increased Damage Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield Attribute Passive Skills can instead grant 5% increased Cost Efficiency "} c["Attribute Requirements of Gems can be satisified by your highest Attribute"]={{[1]={flags=0,keywordFlags=0,name="GemAttributeRequirementsSatisfiedByHighestAttribute",type="FLAG",value=true}},nil} c["Aura Skills have 10% increased Magnitudes"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="Magnitude",type="INC",value=10}},nil} c["Aura Skills have 12% increased Magnitudes"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="Magnitude",type="INC",value=12}},nil} @@ -4459,13 +3706,14 @@ c["Aura Skills have 5% increased Magnitudes"]={{[1]={[1]={skillType=39,type="Ski c["Aura Skills have 6% increased Magnitudes"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="Magnitude",type="INC",value=6}},nil} c["Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}},nil} c["Banner Buffs linger on you for 2 seconds after you leave the Area"]={nil,"Banner Buffs linger on you for 2 seconds after you leave the Area "} +c["Banner Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["Banner Skills have 12% increased Aura Magnitudes"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} -c["Banner Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["Banner Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["Banner Skills have 15% increased Aura Magnitudes"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil} +c["Banner Skills have 16% increased Area of Effect"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil} c["Banner Skills have 20% increased Duration"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["Banner Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["Banner Skills have 30% increased Duration"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} -c["Banners also grant +25% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}}}},nil} +c["Banners also grant +25% to all Elemental Resistances affected targets"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}}}}," affected targets "} c["Banners always have maximum Valour"]={nil,"Banners always have maximum Valour "} c["Banners gain 5 Glory per second"]={nil,"Banners gain 5 Glory per second "} c["Banners gain 5 Glory per second There is no Limit on the number of Banners you can place"]={nil,"Banners gain 5 Glory per second There is no Limit on the number of Banners you can place "} @@ -4477,8 +3725,14 @@ c["Base Critical Hit Chance for Attacks with Weapons is 7%"]={{[1]={flags=0,keyw c["Base Critical Hit Chance for Attacks with Weapons is 8%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=8}},nil} c["Base Critical Hit Chance for Spells is 15%"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="CritChanceBase",type="OVERRIDE",value=15}},nil} c["Base Maximum Darkness is 100"]={{[1]={flags=0,keywordFlags=0,name="PlayerHasDarkness",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Darkness",type="BASE",value=100}},nil} +c["Base Unarmed Physical damage replaced with damage based on their Skill Level"]={nil,"Base Unarmed Physical damage replaced with damage based on their Skill Level "} +c["Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items"]={nil,"Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items "} +c["Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={nil,"Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items "} c["Bear Skills Convert 80% of Physical Damage to Fire Damage"]={nil,"Bear Skills Convert 80% of Physical Damage to Fire Damage "} c["Bear Skills Convert 80% of Physical Damage to Fire Damage Skills which require Glory generate 5 Glory every 2 seconds"]={nil,"Bear Skills Convert 80% of Physical Damage to Fire Damage Skills which require Glory generate 5 Glory every 2 seconds "} +c["Bear Spirit gains Embrace of the Wild"]={nil,"Bear Spirit gains Embrace of the Wild "} +c["Bear Spirit gains Embrace of the Wild Vivid Stags leap towards enemies"]={nil,"Bear Spirit gains Embrace of the Wild Vivid Stags leap towards enemies "} +c["Bear Spirit gains Embrace of the Wild Vivid Stags leap towards enemies Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"]={nil,"Bear Spirit gains Embrace of the Wild Vivid Stags leap towards enemies Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground "} c["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second"]={nil,"Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second "} c["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second 50% more Critical Damage Bonus"]={nil,"Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second 50% more Critical Damage Bonus "} c["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:ConsumedFrenzyChargeEffect",type="BASE",value="50"}},nil} @@ -4540,20 +3794,31 @@ c["Buffs on you expire 10% slower"]={{[1]={[1]={skillType=5,type="SkillType"},fl c["Bulwark"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Bulwark"}},nil} c["Burning Enemies you kill have a 5% chance to Explode, dealing a"]={nil,"Burning Enemies you kill have a 5% chance to Explode, dealing a "} c["Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,keyOfScaledMod="value",type="Fire",value=5}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} -c["Can Allocate Passives from the Sorceress's starting point"]={{},nil} -c["Can Allocate Passives from the Warrior's starting point"]={{},nil} +c["Can Allocate Passive Skills from the Sorceress's starting point"]={nil,"Can Allocate Passive Skills from the Sorceress's starting point "} +c["Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Points"]={nil,"Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Points "} +c["Can Allocate Passive Skills from the Warrior's starting point"]={nil,"Can Allocate Passive Skills from the Warrior's starting point "} +c["Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Points"]={nil,"Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Points "} c["Can Attack as though using a Quarterstaff while both of your hand slots are empty"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty "} -c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain:"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: "} -c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level "} -c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion Rating on Equipped Armour Items"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion Rating on Equipped Armour Items "} -c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use your Quarterstaff's damage gain: Physical damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion Rating on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={{[1]={[1]={type="Condition",var="HollowPalm"},[2]={div=75,stat="EvasionOnAllArmourItems",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=1},[2]={[1]={type="Condition",var="HollowPalm"},[2]={div="10",stat="EnergyShieldOnAllArmourItems",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil} +c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have:"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: "} +c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level "} +c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items "} +c["Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items "} c["Can Socket a non-Unique Basic Jewel into the Phylactery"]={{},nil} c["Can be modified while Corrupted"]={{},nil} c["Can have 2 additional Instilled Modifiers"]={{},nil} c["Can have 3 additional Instilled Modifiers"]={{},nil} +c["Can have up to one Unique Tamed Beast summoned"]={nil,"Can have up to one Unique Tamed Beast summoned "} +c["Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed"]={nil,"Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed "} +c["Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"]={nil,"Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds "} c["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"]={nil,"Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges "} c["Can only use a Normal Body Armour"]={nil,"Can only use a Normal Body Armour "} c["Can only use a Normal Body Armour +200 to Armour for each Connected Notable Passive Skill Allocated"]={nil,"Can only use a Normal Body Armour +200 to Armour for each Connected Notable Passive Skill Allocated "} +c["Can tattoo Runes onto your body, gaining"]={nil,"Can tattoo Runes onto your body, gaining "} +c["Can tattoo Runes onto your body, gaining additional Rune-only sockets:"]={nil,"Can tattoo Runes onto your body, gaining additional Rune-only sockets: "} +c["Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket"]={nil,"Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket "} +c["Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets"]={nil,"Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets "} +c["Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket"]={nil,"Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket "} +c["Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket 1 Boots socket"]={nil,"Can tattoo Runes onto your body, gaining additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket 1 Boots socket "} c["Can't use Body Armour"]={{[1]={[1]={slotName="Body Armour",type="DisablesItem"},flags=0,keywordFlags=0,name="CanNotUseBody",type="Flag",value=1}},nil} c["Can't use Helmets"]={nil,"Can't use Helmets "} c["Can't use Helmets Your Critical Hit Chance is Lucky"]={nil,"Can't use Helmets Your Critical Hit Chance is Lucky "} @@ -4565,6 +3830,7 @@ c["Cannot Dodge Roll or Sprint"]={{[1]={flags=0,keywordFlags=0,name="Condition:C c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil} c["Cannot Immobilise enemies"]={{[1]={flags=0,keywordFlags=0,name="CannotElectrocute",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="CannotHeavyStun",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="CannotPin",type="FLAG",value=true}},nil} c["Cannot Recharge or Regenerate Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="NoEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="NoEnergyShieldRegen",type="FLAG",value=true}},nil} +c["Cannot Recover Life other than from Leech"]={{[1]={flags=0,keywordFlags=0,name="CannotRecoverLifeOutsideLeech",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil} c["Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="NoManaRegen",type="FLAG",value=true}},nil} c["Cannot be Blinded"]={{[1]={flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="BlindImmune",type="FLAG",value=true}},nil} c["Cannot be Blinded while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Condition:CannotBeBlinded",type="FLAG",value=true}},nil} @@ -4581,11 +3847,12 @@ c["Cannot collide with targets"]={nil,"Cannot collide with targets "} c["Cannot gain Spirit from Equipment"]={{[1]={flags=0,keywordFlags=0,name="CannotGainSpiritFromEquipment",type="FLAG",value=true}},nil} c["Cannot have Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="CannotHaveES",type="FLAG",value=true}},nil} c["Cannot use Charms"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="OVERRIDE",value=0}},nil} -c["Cannot use Life Flasks"]={nil,"Cannot use Life Flasks "} c["Cannot use Projectile Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} c["Cannot use Shield Skills"]={{[1]={[1]={skillType=10,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} c["Cannot use Warcries"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} c["Carry a Chest which adds 20 Inventory Slots"]={{},nil} +c["Cascadable Spells have 20% chance to Echo"]={nil,"Cascadable Spells have 20% chance to Echo "} +c["Cascadable Spells have 20% chance to Echo Repeatable Spells have 20% chance to Repeat"]={nil,"Cascadable Spells have 20% chance to Echo Repeatable Spells have 20% chance to Repeat "} c["Causes 175% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=175}},nil} c["Causes 200% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=200}},nil} c["Causes 30% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=30}},nil} @@ -4595,6 +3862,7 @@ c["Causes 60% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="Enemy c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} c["Causes Double Stun Buildup"]={{[1]={[1]={globalLimit=100,globalLimitKey="EnemyHeavyStunBuildupDoubledLimit",type="Multiplier",var="EnemyHeavyStunBuildupDoubled"},flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:EnemyHeavyStunBuildupDoubled",type="OVERRIDE",value=1}},nil} c["Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,keyOfScaledMod="value",type="Physical",value=100}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} +c["Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"]={nil,"Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground "} c["Chain an additional time"]={nil,"Chain an additional time "} c["Chain an additional time Chain from Terrain an additional time"]={nil,"Chain an additional time Chain from Terrain an additional time "} c["Chain an additional time Chain from Terrain an additional time Cannot collide with targets"]={nil,"Chain an additional time Chain from Terrain an additional time Cannot collide with targets "} @@ -4626,23 +3894,39 @@ c["Charms use no Charges"]={{[1]={flags=0,keywordFlags=0,name="CharmsUseNoCharge c["Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCannotChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ColdCannotFreeze",type="FLAG",value=true}},nil} c["Cold Resistance is unaffected by Area Penalties"]={nil,"Cold Resistance is unaffected by Area Penalties "} c["Cold Resistance is unaffected by Area Penalties Fire Resistance is unaffected by Area Penalties"]={nil,"Cold Resistance is unaffected by Area Penalties Fire Resistance is unaffected by Area Penalties "} -c["Combo count loss occurs 20% slower"]={nil,"Combo count loss occurs 20% slower "} +c["Companions deal 10% increased Damage"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil} +c["Companions deal 10% increased damage per Idol in your Equipment"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}}," per Idol in your Equipment "} +c["Companions deal 10% increased damage per Idol in your Equipment 2% increased Reservation Efficiency of Skills per Idol in your Equipment"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}}," per Idol in your Equipment 2% increased Reservation Efficiency of Skills per Idol in your Equipment "} +c["Companions deal 10% increased damage per Idol in your Equipment 2% increased Reservation Efficiency of Skills per Idol in your Equipment -4% to all Elemental Resistances per non-Idol Augment in your Equipment"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}}," per Idol in your Equipment 2% increased Reservation Efficiency of Skills per Idol in your Equipment -4% to all Elemental Resistances per non-Idol Augment in your Equipment "} c["Companions deal 12% increased Damage"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil} c["Companions deal 15% increased Damage"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil} c["Companions deal 60% increased damage against Immobilised enemies"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}}},nil} +c["Companions gain 12% Damage as extra Chaos Damage"]={nil,"Companions gain 12% Damage as extra Chaos Damage "} +c["Companions gain 12% Damage as extra Cold Damage"]={nil,"Companions gain 12% Damage as extra Cold Damage "} +c["Companions gain 4% Damage as extra Chaos Damage"]={nil,"Companions gain 4% Damage as extra Chaos Damage "} +c["Companions gain 4% Damage as extra Cold Damage"]={nil,"Companions gain 4% Damage as extra Cold Damage "} +c["Companions gain added Attack damage equal to 60% of your main hand Weapon's damage"]={nil,"Companions gain added Attack damage equal to 60% of your main hand Weapon's damage "} c["Companions gain your Strength"]={{[1]={flags=0,keywordFlags=0,name="StrengthAddedToCompanions",type="FLAG",value=true}},nil} -c["Companions have +1 to each Defence for every 2 of that Defence you have"]={{}," each Defence for every 2 of that Defence you have "} c["Companions have +12% to all Elemental Resistances"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}}}},nil} c["Companions have +30% to Chaos Resistance"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}}}},nil} c["Companions have +30% to all Elemental Resistances"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}}}},nil} c["Companions have 10% increased Area of Effect"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil} +c["Companions have 10% increased Attack Speed"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil} c["Companions have 12% increased maximum Life"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil} +c["Companions have 15% increased maximum Life"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil} +c["Companions have 20% increased Movement Speed"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil} c["Companions have 20% increased maximum Life"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil} +c["Companions have 30% increased Area of Effect"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}}},nil} +c["Companions have 50% chance to gain Onslaught on Kill"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}}},nil} +c["Companions have 6% increased Attack Speed"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}}}},nil} +c["Companions have 8% increased Movement Speed"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil} +c["Companions have a 40% chance to Poison on Hit"]={nil,"a 40% chance to Poison on Hit "} c["Companions in your Presence have Onslaught while you are Shapeshifted"]={nil,"Companions in your Presence have Onslaught while you are Shapeshifted "} c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},nil} c["Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed"]={nil,"Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed "} c["Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%"]={nil,"Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60% "} -c["Converts all Energy Shield to Mana"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldConvertToMana",type="BASE",value=100}},nil} +c["Convert 100% of maximum Energy Shield to maximum Mana"]={nil,"Convert 100% of maximum Energy Shield to maximum Mana "} +c["Convert 100% of maximum Energy Shield to maximum Mana Mana Costs are Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="EnergyShieldDoubledLimit",type="Multiplier",var="EnergyShieldDoubled"},flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:EnergyShieldDoubled",type="OVERRIDE",value=1}},"Convert 100% of to maximum Mana Mana Costs are d "} c["Converts all Evasion Rating to Armour"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EvasionConvertToArmour",type="BASE",value=100}},nil} c["Copy a random Modifier from each enemy in your Presence when"]={nil,"Copy a random Modifier from each enemy in your Presence when "} c["Copy a random Modifier from each enemy in your Presence when you Shapeshift to an Animal form"]={nil,"Copy a random Modifier from each enemy in your Presence when you Shapeshift to an Animal form "} @@ -4679,7 +3963,6 @@ c["Curse Enemies with Enfeeble on Block"]={{[1]={flags=0,keywordFlags=0,name="Ex c["Curse Skills have 15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=15}},nil} c["Curse Skills have 20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=20}},nil} c["Curse Skills have 20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=20}},nil} -c["Curse zones erupt after 10% reduced delay"]={nil,"Curse zones erupt after 10% reduced delay "} c["Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,keyOfScaledMod="value",type="Physical",value=33}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Cursed Enemies killed by you, or by Allies in your Presence, have a 33% chance to explode, dealing a quarter of their maximum Life as Chaos damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=25,keyOfScaledMod="value",type="Chaos",value=33}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Curses have no Activation Delay"]={{[1]={flags=0,keywordFlags=0,name="CurseDelay",type="MORE",value=-100}},nil} @@ -4714,6 +3997,7 @@ c["Damage Penetrates 75% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="C c["Damage Penetrates 8% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil} c["Damage Penetrates 8% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil} c["Damage Penetrates 8% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil} +c["Damage Penetrates 8% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=8}},nil} c["Damage of Enemies Hitting you is Unlucky"]={nil,"Damage of Enemies Hitting you is Unlucky "} c["Damage of Enemies Hitting you is Unlucky while you are on Low Life"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Low Life "} c["Damage of Enemies Hitting you is Unlucky while you are on Low Life 50% chance to Avoid Death from Hits"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Low Life 50% chance to Avoid Death from Hits "} @@ -4732,6 +4016,7 @@ c["Damaging Ailments deal damage 12% faster"]={{[1]={flags=0,keywordFlags=0,name c["Damaging Ailments deal damage 4% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=4},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=4}},nil} c["Damaging Ailments deal damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=5}},nil} c["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"]={nil,"Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition "} +c["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition Grants Skill: Abyssal Apparition"]={nil,"Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition Grants Skill: Abyssal Apparition "} c["Dance with Death"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Dance with Death"}},nil} c["Darkness Reservation lasts for 5 seconds"]={nil,"Darkness Reservation lasts for 5 seconds "} c["Darkness Reservation lasts for 5 seconds +10 to Maximum Darkness per Level"]={nil,"Darkness Reservation lasts for 5 seconds +10 to Maximum Darkness per Level "} @@ -4784,15 +4069,18 @@ c["Dodge Roll avoids all Hits"]={nil,"Dodge Roll avoids all Hits "} c["Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds"]={nil,"Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds "} c["Dodge Roll cannot Avoid Damage"]={{},nil} c["Dodge Roll passes through Enemies"]={nil,"Dodge Roll passes through Enemies "} +c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more "} +c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended "} +c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster "} c["Double Activation Delay of Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseDelay",type="MORE",value=100}},nil} c["Double Adaptation Effect"]={{[1]={[1]={globalLimit=100,globalLimitKey="LocalEffectDoubledLimit",type="Multiplier",var="LocalEffectDoubled"},flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:LocalEffectDoubled",type="OVERRIDE",value=1}}," Adaptation "} c["Double Stun Threshold while Shield is Raised"]={{[1]={[1]={globalLimit=100,globalLimitKey="StunThresholdDoubledLimit",type="Multiplier",var="StunThresholdDoubled"},flags=0,keywordFlags=0,name="StunThreshold",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:StunThresholdDoubled",type="OVERRIDE",value=1}}," while Shield is Raised "} c["Double the number of your Poisons that targets can be affected by at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="PoisonStacks",type="MORE",value=100}},nil} -c["Doubles Mana Costs"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=100}},nil} c["Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life"]={nil,"Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life "} c["Drop Shocked Ground while moving, lasting 8 seconds"]={nil,"Drop Shocked Ground while moving, lasting 8 seconds "} c["Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow"]={nil,"Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow "} c["Each Totem applies 2% increased Damage taken to Enemies in their Presence"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Multiplier",var="TotemsSummoned"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=2}}}},nil} +c["Echoed Spells have 25% increased Area of Effect"]={nil,"Echoed Spells have 25% increased Area of Effect "} c["Effect is not removed when Unreserved Life is Filled"]={nil,"Effect is not removed when Unreserved Life is Filled "} c["Effect is not removed when Unreserved Life is Filled 30% of Damage taken during effect Recouped as Life"]={nil,"Effect is not removed when Unreserved Life is Filled 30% of Damage taken during effect Recouped as Life "} c["Effect is not removed when Unreserved Mana is Filled"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskEffectNotRemoved",type="FLAG",value=true}},nil} @@ -4814,6 +4102,8 @@ c["Empowered Attacks deal 50% increased Damage"]={{[1]={[1]={type="Condition",va c["Empowered Attacks deal 8% increased Damage"]={{[1]={[1]={type="Condition",var="Empowered"},flags=1,keywordFlags=0,name="EmpoweredIncrease",type="INC",value=8}},nil} c["Empowered Attacks have 50% increased Stun Buildup"]={nil,"Empowered Attacks have 50% increased Stun Buildup "} c["Empowered Attacks have 50% increased Stun Buildup 100% increased Stun Threshold during Empowered Attacks"]={nil,"Empowered Attacks have 50% increased Stun Buildup 100% increased Stun Threshold during Empowered Attacks "} +c["Empowerment effect per additional Feather expended"]={nil,"Empowerment effect per additional Feather expended "} +c["Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster"]={nil,"Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster "} c["Enemies Blinded by you have 15% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-15}}}},nil} c["Enemies Blinded by you have 50% reduced Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-50}}}},nil} c["Enemies Chilled by your Hits can be Shattered as though Frozen"]={nil,"your Hits can be Shattered as though Frozen "} @@ -4922,9 +4212,10 @@ c["Every Rage also grants 1% increased Fire Damage"]={{[1]={[1]={type="Multiplie c["Every Rage also grants 1% increased Stun Threshold"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=1}},nil} c["Every Rage also grants 2% increased Spell Damage"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil} c["Every Rage also grants 2% increased Stun Threshold"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=2}},nil} -c["Every Rage also grants you 1% increased Minion Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="player",type="Multiplier",var="RageEffect"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}}}},nil} c["Every Rage also grants you 1% increased Minion Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="player",type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}}},nil} c["Every Third Slam skill that doesn't create Fissures which you use yourself causes 3 additional Aftershocks ahead and to each side of the initial area"]={nil,"Every Third Slam skill that doesn't create Fissures which you use yourself causes 3 additional Aftershocks ahead and to each side of the initial area "} +c["Every five Rage also grants you 2% increased Minion Attack Speed"]={nil,"Every five Rage also grants you 2% increased Minion Attack Speed "} +c["Every five Rage also grants you 2% increased Minion Attack Speed Every Rage also grants you 1% increased Minion Damage"]={nil,"Every five Rage also grants you 2% increased Minion Attack Speed Every Rage also grants you 1% increased Minion Damage "} c["Every second Slam Skill you use yourself is Ancestrally Boosted"]={{[1]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="AncestralEmpowerment",type="FLAG",value=true},[2]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="Condition:AncestrallyBoosted",type="FLAG",value=true}},nil} c["Every second, inflicts Critical Weakness on enemies in your Presence for 1 second"]={{[1]={flags=0,keywordFlags=0,name="ApplyCriticalWeakness",type="FLAG",value=true}},nil} c["Every second, inflicts Critical Weakness on enemies in your Presence for 15 seconds"]={{[1]={flags=0,keywordFlags=0,name="ApplyCriticalWeakness",type="FLAG",value=true}},nil} @@ -4935,14 +4226,20 @@ c["Excess Life Recovery added as Guard for 10 seconds Excess Life Recovery added c["Excess Life Recovery added as Guard for 20 seconds"]={nil,"Excess Life Recovery added as Guard for 20 seconds "} c["Excess Life Recovery from Leech is applied to Energy Shield"]={nil,"Excess Life Recovery from Leech is applied to Energy Shield "} c["Excess Life Recovery from Regeneration is applied to Energy Shield"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil} +c["Expend all Vivid Wisps to trigger Vivid Stampede when you Attack"]={nil,"Expend all Vivid Wisps to trigger Vivid Stampede when you Attack "} +c["Expend all Vivid Wisps to trigger Vivid Stampede when you Attack Grants Skill: Vivid Stampede"]={nil,"Expend all Vivid Wisps to trigger Vivid Stampede when you Attack Grants Skill: Vivid Stampede "} +c["Expend an Owl Feather when you Dodge to trigger Primal Bounty"]={nil,"Expend an Owl Feather when you Dodge to trigger Primal Bounty "} +c["Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty"]={nil,"Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty "} c["Exposure you inflict lowers Resistances by an additional 5%"]={{[1]={flags=0,keywordFlags=0,name="ExtraExposure",type="BASE",value=5}},nil} -c["Final Repeat of Spells has 30% increased Area of Effect"]={{[1]={[1]={neg=true,type="Condition",var="CastOnFrostbolt"},[2]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=2,keywordFlags=0,name="RepeatFinalAreaOfEffect",type="INC",value=30}},nil} c["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil} c["Fire Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties "} c["Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties "} c["Fire Spells Convert 100% of Fire Damage to Chaos Damage"]={{[1]={[1]={skillType=2,type="SkillType"},[2]={skillType=28,type="SkillType"},flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value="100"}},nil} c["Fissure Skills have +1 to Limit"]={nil,"Fissure Skills have +1 to Limit "} c["Flammability Magnitude is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="EnemyIgniteChanceDoubledLimit",type="Multiplier",var="EnemyIgniteChanceDoubled"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:EnemyIgniteChanceDoubled",type="OVERRIDE",value=1}},nil} +c["Flasks do not recover Life"]={nil,"Flasks do not recover Life "} +c["Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent"]={nil,"Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent "} +c["Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={nil,"Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way "} c["Flasks gain 0.17 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.17}},nil} c["For each colour of Socketed Support Gem that is most numerous, gain:"]={{},nil} c["Fork an additional time"]={nil,"Fork an additional time "} @@ -4957,9 +4254,8 @@ c["Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again"] c["Gain 1 Druidic Prowess for every 20 total Rage spent"]={{}," Druidic Prowess for every 20 total Rage spent "} c["Gain 1 Endurance Charge every second if you've been Hit Recently"]={{}," Endurance Charge every second "} c["Gain 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "} -c["Gain 1 Life Flask Charge per 4% Life spent"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 4% Life spent "} -c["Gain 1 Life Flask Charge per 4% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed"]={{[1]={flags=4,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 4% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed "} -c["Gain 1 Life Flask Charge per 4% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={{[1]={flags=4,keywordFlags=0,name="LifeAsPhysical",type="BASE",value=1}}," Flask Charge per 4% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage per Charge consumed this way "} +c["Gain 1 Life Flask Charge per 2% Life spent"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 2% Life spent "} +c["Gain 1 Life Flask Charge per 2% Life spent On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={{[1]={flags=4,keywordFlags=0,name="LifeAsPhysical",type="BASE",value=1}}," Flask Charge per 2% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage per Charge consumed this way "} c["Gain 1 Rage on Melee Axe Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage when your Hit Ignites a target"]={{}," Rage when your Hit Ignites a target "} @@ -4968,7 +4264,8 @@ c["Gain 1 Volatility on inflicting an Elemental Ailment Take no Damage from Vola c["Gain 1 fewer Lightning Surge from Triggering Elemental Surge"]={{}," fewer Lightning Surge from Triggering"} c["Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude 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 damage as Fire damage per 1% Chance to Block"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="DamageAsFire",type="BASE",value=1}},nil} -c["Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={{[1]={flags=0,keywordFlags=0,name="DamageAsPhysical",type="BASE",value=1}}," per Charge consumed this way "} +c["Gain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={{[1]={flags=0,keywordFlags=0,name="DamageAsPhysical",type="BASE",value=1}}," per Charge consumed this way "} +c["Gain 10 Energy Shield when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnBlock",type="BASE",value=10}},nil} c["Gain 10 Life per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil} c["Gain 10 Mana per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil} c["Gain 10 Rage when Critically Hit by an Enemy"]={{}," Rage when Critically Hit by an Enemy "} @@ -5007,7 +4304,6 @@ c["Gain 18% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywor c["Gain 2 Rage on Melee Axe Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 2 Rage when Hit by an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 2% of Damage as Extra Fire Damage per Endurance Charge consumed Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=2}}," consumed Recently "} -c["Gain 20 Energy Shield when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnBlock",type="BASE",value=20}},nil} c["Gain 20 Life per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil} c["Gain 20% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=20}},nil} c["Gain 21% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=21}},nil} @@ -5043,6 +4339,7 @@ c["Gain 4% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name=" c["Gain 4% of Damage as Extra Fire Damage for"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=4}}," for "} c["Gain 4% of Damage as Extra Fire Damage for every different Grenade fired in the past 8 seconds"]={{[1]={[1]={limitVar="GrenadeTypes",type="Multiplier",var="DifferentGrenadeFired"},flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=4}},nil} c["Gain 4% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=4}},nil} +c["Gain 4% of Physical Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4}},nil} c["Gain 40 Life per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=40}},nil} c["Gain 40% of Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsChaos",type="BASE",value=40}},nil} c["Gain 40% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=40}},nil} @@ -5060,7 +4357,7 @@ c["Gain 5% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name=" c["Gain 5% of Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsRandom",type="BASE",value=5}},nil} c["Gain 5% of Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsFire",type="BASE",value=5}},nil} c["Gain 5% of Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsLightning",type="BASE",value=5}},nil} -c["Gain 5% of Lightning Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=5}},nil} +c["Gain 5% of Lightning damage as Extra Cold damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=5}},nil} c["Gain 5% of maximum Mana as Extra maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=5}},nil} c["Gain 5% of maximum Mana as Extra maximum Energy Shield while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=5}},nil} c["Gain 50 Life per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=50}},nil} @@ -5069,6 +4366,7 @@ c["Gain 50% of Maximum Mana as Armour"]={{[1]={flags=0,keywordFlags=0,name="Mana c["Gain 50% of maximum Energy Shield as additional Freeze Threshold"]={{[1]={[1]={percent=50,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="FreezeThreshold",type="BASE",value=1}},nil} c["Gain 6 Mana per enemy killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=6}},nil} c["Gain 6 Rage on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} +c["Gain 6% of Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageGainAsCold",type="BASE",value=6}},nil} c["Gain 6% of Elemental Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsCold",type="BASE",value=6}},nil} c["Gain 6% of Elemental Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsFire",type="BASE",value=6}},nil} c["Gain 6% of Elemental Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsLightning",type="BASE",value=6}},nil} @@ -5098,21 +4396,25 @@ c["Gain Arcane Surge when a Minion Dies"]={{[1]={flags=0,keywordFlags=0,name="Mi c["Gain Arcane Surge when a Minion Dies 40% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}}}," when a Dies 40% increased "} c["Gain Arcane Surge when you Shapeshift to Human form after"]={{[1]={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}," when you Shapeshift to Human form after "} c["Gain Arcane Surge when you Shapeshift to Human form after being Shapeshifted for at least 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}," when you Shapeshift to Human form after being Shapeshifted for at least 8 seconds "} +c["Gain Armour equal to 150% of total Strength Requirements of Equipped Boots, Gloves and Helmet"]={nil,"Armour equal to 150% of total Strength Requirements of Equipped Boots, Gloves and Helmet "} c["Gain Cold Thorns Damage equal to 18% of your maximum Mana"]={nil,"Cold Thorns Damage equal to 18% of your maximum Mana "} +c["Gain Combo from all Attack Hits"]={nil,"Combo from all Attack Hits "} c["Gain Deflection Rating equal to 10% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=10}},nil} +c["Gain Deflection Rating equal to 12% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=12}},nil} c["Gain Deflection Rating equal to 2% of Evasion Rating per 25 Tribute"]={nil,"Deflection Rating equal to 2% of Evasion Rating "} c["Gain Deflection Rating equal to 2% of Evasion Rating per 25 Tribute 2% increased Evasion Rating per 10 Tribute"]={nil,"Deflection Rating equal to 2% of Evasion Rating 2% increased Evasion Rating "} c["Gain Deflection Rating equal to 20% of Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourGainAsDeflection",type="BASE",value=20}},nil} c["Gain Deflection Rating equal to 20% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=20}},nil} c["Gain Deflection Rating equal to 25% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=25}},nil} c["Gain Deflection Rating equal to 28% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=28}},nil} -c["Gain Deflection Rating equal to 3% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=3}},nil} c["Gain Deflection Rating equal to 30% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=30}},nil} c["Gain Deflection Rating equal to 32% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=32}},nil} +c["Gain Deflection Rating equal to 4% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=4}},nil} c["Gain Deflection Rating equal to 5% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=5}},nil} c["Gain Deflection Rating equal to 50% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=50}},nil} c["Gain Deflection Rating equal to 6% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=6}},nil} c["Gain Deflection Rating equal to 60% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=60}},nil} +c["Gain Deflection Rating equal to 8% of Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionGainAsDeflection",type="BASE",value=8}},nil} c["Gain Elemental Archon after spending 100% of your Maximum Mana"]={nil,"Elemental Archon after spending 100% of your Maximum Mana "} c["Gain Elemental Archon when you cast a Spell while on High Infernal Flame"]={nil,"Elemental Archon when you cast a Spell while on High Infernal Flame "} c["Gain Elemental Archon when you cast a Spell while on High Infernal Flame Elemental Archon does not expire while on High Infernal Flame"]={nil,"Elemental Archon when you cast a Spell while on High Infernal Flame Elemental Archon does not expire while on High Infernal Flame "} @@ -5127,6 +4429,7 @@ c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Lif c["Gain Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"Infernal Flame instead of spending Mana for Skill costs Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "} c["Gain Onslaught for 4 seconds when a Minion Dies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}}}," when a Dies "} c["Gain Onslaught for 4 seconds when a Minion Dies 18% increased Area of Effect for Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}}}," when a Dies 18% increased for Attacks "} +c["Gain Owl Feathers 50% faster"]={nil,"Owl Feathers 50% faster "} c["Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour"]={nil,"Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour "} c["Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour"]={nil,"Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour "} c["Gain Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour 12% chance for Trigger skills to refund half of Energy Spent"]={nil,"Physical Thorns damage equal to 6% of Item Armour on Equipped Body Armour 12% chance for Trigger skills to refund half of Energy Spent "} @@ -5139,6 +4442,15 @@ c["Gain Tailwind on Critical Hit, no more than once per second"]={{[1]={[1]={typ c["Gain Tailwind on Critical Hit, no more than once per second Lose all Tailwind when Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Condition:CanHaveTailwind",type="FLAG",value=true}},", no more than once per second Lose all when Hit "} c["Gain Tailwind on Skill use"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveTailwind",type="FLAG",value=true}},nil} c["Gain a Power Charge when you consume an Elemental Infusion"]={nil,"a Power Charge when you consume an Elemental Infusion "} +c["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3"]={nil,"a Primal Owl Feather every 4 seconds, up to a maximum of 3 "} +c["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3 Expend an Owl Feather when you Dodge to trigger Primal Bounty"]={nil,"a Primal Owl Feather every 4 seconds, up to a maximum of 3 Expend an Owl Feather when you Dodge to trigger Primal Bounty "} +c["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3 Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty"]={nil,"a Primal Owl Feather every 4 seconds, up to a maximum of 3 Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty "} +c["Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3"]={nil,"a Vivid Wisp for every 10 metres you move, up to a maximum of 3 "} +c["Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3 Expend all Vivid Wisps to trigger Vivid Stampede when you Attack"]={nil,"a Vivid Wisp for every 10 metres you move, up to a maximum of 3 Expend all Vivid Wisps to trigger Vivid Stampede when you Attack "} +c["Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3 Expend all Vivid Wisps to trigger Vivid Stampede when you Attack Grants Skill: Vivid Stampede"]={nil,"a Vivid Wisp for every 10 metres you move, up to a maximum of 3 Expend all Vivid Wisps to trigger Vivid Stampede when you Attack Grants Skill: Vivid Stampede "} +c["Gain a Vivid Wisp when Vivid Stampede ends"]={nil,"a Vivid Wisp when Vivid Stampede ends "} +c["Gain a Vivid Wisp when Vivid Stampede ends Stags deal 20% more damage per leap"]={nil,"a Vivid Wisp when Vivid Stampede ends Stags deal 20% more damage per leap "} +c["Gain a Vivid Wisp when Vivid Stampede ends Stags deal 20% more damage per leap Stags have 20% more Shock Magnitude per leap"]={nil,"a Vivid Wisp when Vivid Stampede ends Stags deal 20% more damage per leap Stags have 20% more Shock Magnitude per leap "} c["Gain a random Charge on reaching Maximum Rage, no more than once every 6 seconds"]={nil,"a random Charge on reaching Maximum Rage, no more than once every 6 seconds "} c["Gain a random Charge on reaching Maximum Rage, no more than once every 6 seconds Lose all Rage on reaching Maximum Rage"]={nil,"a random Charge on reaching Maximum Rage, no more than once every 6 seconds Lose all Rage on reaching Maximum Rage "} c["Gain a stack of Jade every second"]={nil,"a stack of Jade every second "} @@ -5146,7 +4458,6 @@ c["Gain a stack of Jade every second Grants Skill: Encase in Jade"]={nil,"a stac c["Gain additional Ailment Threshold equal to 10% of maximum Energy Shield"]={{[1]={[1]={percent="10",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} c["Gain additional Ailment Threshold equal to 12% of maximum Energy Shield"]={{[1]={[1]={percent="12",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} c["Gain additional Ailment Threshold equal to 15% of maximum Energy Shield"]={{[1]={[1]={percent="15",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} -c["Gain additional Ailment Threshold equal to 16% of maximum Energy Shield"]={{[1]={[1]={percent="16",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} c["Gain additional Ailment Threshold equal to 20% of maximum Energy Shield"]={{[1]={[1]={percent="20",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} c["Gain additional Ailment Threshold equal to 30% of maximum Energy Shield"]={{[1]={[1]={percent="30",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} c["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield"]={{[1]={[1]={percent="8",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=1}},nil} @@ -5154,7 +4465,6 @@ c["Gain additional Critical Hit Chance equal to 25% of excess chance to Hit with c["Gain additional Stun Threshold equal to 10% of maximum Energy Shield"]={{[1]={[1]={percent="10",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} c["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"]={{[1]={[1]={percent="12",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} c["Gain additional Stun Threshold equal to 15% of maximum Energy Shield"]={{[1]={[1]={percent="15",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} -c["Gain additional Stun Threshold equal to 16% of maximum Energy Shield"]={{[1]={[1]={percent="16",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} c["Gain additional Stun Threshold equal to 20% of maximum Energy Shield"]={{[1]={[1]={percent="20",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} c["Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items"]={{[1]={[1]={percent=30,stat="ArmourOnHelmet",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[2]={[1]={percent=30,stat="ArmourOnGloves",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[3]={[1]={percent=30,stat="ArmourOnBoots",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1},[4]={[1]={percent=30,stat="ArmourOnBody Armour",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} c["Gain additional Stun Threshold equal to 30% of maximum Energy Shield"]={{[1]={[1]={percent="30",stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=1}},nil} @@ -5170,6 +4480,7 @@ c["Gain no inherent bonuses from Attributes"]={{[1]={flags=0,keywordFlags=0,name c["Gain the benefits of Bonded modifiers on Runes and Idols"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanUseBondedModifiers",type="FLAG",value=true}},nil} c["Gains 0.18 Charges per Second"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.18}},nil} c["Gains 0.20 Charges per Second"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.2}},nil} +c["Gem Quality grants Socketed Skills an additional effect"]={nil,"Gem Quality grants Socketed Skills an additional effect "} c["Giant's Blood"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Giant's Blood"}},nil} c["Glancing Blows"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Glancing Blows"}},nil} c["Glorifying the defilement of 4050 souls in tribute to Ulaman"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=5,type="abyss"},id=4050}}}},nil} @@ -5178,11 +4489,15 @@ c["Glorifying the defilement of 8000 souls in tribute to Kulemak"]={{[1]={flags= c["Glorifying the defilement of 8000 souls in tribute to Kurgal"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=3,type="abyss"},id=8000}}}},nil} c["Glorifying the defilement of 8000 souls in tribute to Tecrod"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=4,type="abyss"},id=8000}}}},nil} c["Glorifying the defilement of 8000 souls in tribute to Ulaman"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=5,type="abyss"},id=8000}}}},nil} +c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and "} +c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers "} +c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves "} c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil} c["Grants 1 additional Skill Slot"]={{[1]={flags=0,keywordFlags=0,name="SkillSlots",type="BASE",value=1}},nil} -c["Grants 4 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=4}},nil} +c["Grants 4 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=4}},nil} c["Grants Onslaught during effect"]={nil,"Grants Onslaught during effect "} c["Grants Sands of Time"]={nil,"Grants Sands of Time "} +c["Grants Skill: Abyssal Apparition"]={nil,nil} c["Grants Skill: Acidic Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AcidicConcoctionPlayer"}}},nil} c["Grants Skill: Align Fate"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AlignFatePlayer"}}},nil} c["Grants Skill: Ancestral Spirits"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AncestralSpiritsPlayer"}}},nil} @@ -5199,6 +4514,9 @@ c["Grants Skill: Encase in Jade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill c["Grants Skill: Explosive Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ExplosiveConcoctionPlayer"}}},nil} c["Grants Skill: Fire Spell on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaCastFireSpellOnHitPlayer"}}},nil} c["Grants Skill: Fulminating Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="FulminatingConcoctionPlayer"}}},nil} +c["Grants Skill: Hollow Focus"]={nil,nil} +c["Grants Skill: Hollow Form"]={nil,nil} +c["Grants Skill: Hollow Resonance"]={nil,nil} c["Grants Skill: Inevitable Agony"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="InevitableAgonyPlayer"}}},nil} c["Grants Skill: Into the Breach"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IntoTheBreachPlayer"}}},nil} c["Grants Skill: Kelari's Deception"]={nil,nil} @@ -5315,6 +4633,7 @@ c["Grants Skill: Navira's Oasis"]={nil,nil} c["Grants Skill: Navira's Well"]={nil,nil} c["Grants Skill: Navira, the Last Mirage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonWaterDjinnPlayer"}}},nil} c["Grants Skill: Parry"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ParryPlayer"}}},nil} +c["Grants Skill: Primal Bounty"]={nil,nil} c["Grants Skill: Raise Shield"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ShieldBlockPlayer"}}},nil} c["Grants Skill: Ritual Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="RitualSacrificePlayer"}}},nil} c["Grants Skill: Ruzhan's Fury"]={nil,nil} @@ -5331,8 +4650,10 @@ c["Grants Skill: Temporal Rift"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill" c["Grants Skill: Time Freeze"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TimeFreezePlayer"}}},nil} c["Grants Skill: Time Snap"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TimeSnapPlayer"}}},nil} c["Grants Skill: Unbound Avatar"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="UnboundAvatarPlayer"}}},nil} +c["Grants Skill: Virtuous Barrier"]={nil,nil} +c["Grants Skill: Vivid Stampede"]={nil,nil} c["Grants Skill: Void Illusion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="VoidIllusionPlayer"}}},nil} -c["Grants Thaumaturgical Dynamism"]={nil,"Grants Thaumaturgical Dynamism "} +c["Grants Skill: Wild Protector"]={nil,nil} c["Grants Unravelling"]={{[1]={flags=0,keywordFlags=0,name="Unravelling",type="FLAG",value=true}},nil} c["Grants a Frenzy Charge on use"]={nil,"Grants a Frenzy Charge on use "} c["Grants a Power Charge on use"]={nil,"Grants a Power Charge on use "} @@ -5390,15 +4711,21 @@ c["Ignites you inflict deal Damage 18% faster"]={{[1]={flags=0,keywordFlags=0,na c["Ignites you inflict deal Damage 4% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=4}},nil} c["Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second"]={nil,"Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second "} c["Ignore Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="IgnoreAttributeRequirements",type="FLAG",value=true}},nil} +c["Ignore Attribute Requirements to equip Gloves"]={nil,"Ignore Attribute Requirements to equip Gloves "} c["Ignore Warcry Cooldowns"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil} c["Immobilise enemies at 50% buildup instead of 100%"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoiseThreshold",type="MORE",value=-50}}}},nil} c["Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating"]={{[1]={[1]={type="Condition",var="HelmetArmourHigherThanEvasion"},flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil} +c["Immune to Bleeding while Shapeshifted"]={nil,"Immune to Bleeding while Shapeshifted "} +c["Immune to Bleeding while Shapeshifted Immune to Maim while Shapeshifted"]={nil,"Immune to Bleeding while Shapeshifted Immune to Maim while Shapeshifted "} +c["Immune to Bleeding while affected by an Archon Buff"]={nil,"Immune to Bleeding while affected by an Archon Buff "} c["Immune to Chaos Damage and Bleeding"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-100},[3]={flags=0,keywordFlags=0,name="BleedImmune",type="FLAG",value=true}},nil} c["Immune to Chill if a majority of your Socketed Support Gems are Blue"]={{[1]={[1]={type="Condition",var="MajorityBlueSocketedSupports"},flags=0,keywordFlags=0,name="ChillImmune",type="FLAG",value=true}},nil} c["Immune to Corrupted Blood"]={nil,"Immune to Corrupted Blood "} c["Immune to Corrupted Blood 40% reduced Duration of Bleeding on You"]={nil,"Immune to Corrupted Blood 40% reduced Duration of Bleeding on You "} c["Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},[2]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalAilmentImmune",type="FLAG",value=true}},nil} +c["Immune to Exposure"]={nil,"Immune to Exposure "} +c["Immune to Exposure Unaffected by Elemental Weakness"]={nil,"Immune to Exposure Unaffected by Elemental Weakness "} c["Immune to Freeze"]={{[1]={flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil} c["Immune to Freeze and Chill while affected by an Archon Buff"]={nil,"Immune to Freeze and Chill while affected by an Archon Buff "} c["Immune to Hinder"]={nil,"Immune to Hinder "} @@ -5406,6 +4733,7 @@ c["Immune to Hinder Immune to Maim"]={nil,"Immune to Hinder Immune to Maim "} c["Immune to Ignite"]={{[1]={flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} c["Immune to Ignite if a majority of your Socketed Support Gems are Red"]={{[1]={[1]={type="Condition",var="MajorityRedSocketedSupports"},flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} c["Immune to Maim"]={nil,"Immune to Maim "} +c["Immune to Maim while Shapeshifted"]={nil,"Immune to Maim while Shapeshifted "} c["Immune to Poison"]={{[1]={flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil} c["Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"]={{[1]={[1]={type="Condition",var="HelmetEvasionHigherThanArmour"},flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil} c["Immune to Shock"]={{[1]={flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} @@ -5417,8 +4745,6 @@ c["Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maxi c["Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75% Other Modifiers to Movement Speed except for Sprinting do not apply"]={nil,"Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75% Other Modifiers to Movement Speed except for Sprinting do not apply "} c["Increases Movement Speed by 25%, plus 1% per 800 Evasion Rating, up to a maximum of 75%"]={nil,"Increases Movement Speed by 25%, plus 1% per 800 Evasion Rating, up to a maximum of 75% "} c["Increases Movement Speed by 25%, plus 1% per 800 Evasion Rating, up to a maximum of 75% Other Modifiers to Movement Speed except for Sprinting do not apply"]={nil,"Increases Movement Speed by 25%, plus 1% per 800 Evasion Rating, up to a maximum of 75% Other Modifiers to Movement Speed except for Sprinting do not apply "} -c["Increases and Reductions to Armour also apply to Energy Shield"]={nil,"Increases and Reductions to Armour also apply to Energy Shield "} -c["Increases and Reductions to Armour also apply to Energy Shield Recharge Rate at 40% of their value"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedArmourAppliesToEnergyShieldRecharge",type="MAX",value=40}},nil} c["Increases and Reductions to Companion Damage also apply to you"]={{[1]={flags=0,keywordFlags=0,name="CompanionDamageAppliesToPlayer",type="FLAG",value=true}},nil} c["Increases and Reductions to Mana Regeneration Rate also"]={nil,"Increases and Reductions to Mana Regeneration Rate also "} c["Increases and Reductions to Mana Regeneration Rate also apply to Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenAppliesToEnergyShieldRecharge",type="FLAG",value=true}},nil} @@ -5477,8 +4803,12 @@ c["Knocks Back Enemies on Hit Cannot use Projectile Attacks"]={nil,"Knocks Back c["Leech 5% of Physical Attack Damage as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=5}},nil} c["Leech Life 15% faster"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=15}},nil} c["Leech Life 20% slower"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-20}},nil} -c["Leech Life 25% faster"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=25}},nil} c["Leech Life 5% slower"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-5}},nil} +c["Leech Life 67% less quickly"]={nil,"Leech Life 67% less quickly "} +c["Leech Life 67% less quickly Cannot Recover Life other than from Leech"]={nil,"Leech Life 67% less quickly Cannot Recover Life other than from Leech "} +c["Leech Life 67% less quickly Cannot Recover Life other than from Leech Life Leech effects are not removed when Unreserved Life is Filled"]={nil,"Leech Life 67% less quickly Cannot Recover Life other than from Leech Life Leech effects are not removed when Unreserved Life is Filled "} +c["Leech Life 8% faster"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=8}},nil} +c["Leech Life 8% slower"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-8}},nil} c["Leech from Critical Hits is instant"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=100},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=100}},nil} c["Leech recovers based on Chaos Damage as well as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechBasedOnChaosDamage",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ManaLeechBasedOnChaosDamage",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="EnergyShieldLeechBasedOnChaosDamage",type="FLAG",value=true}},nil} c["Leeches 0.1% of Physical Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.1}},nil} @@ -5512,10 +4842,8 @@ c["Life Leech can Overflow Maximum Life 60% reduced Duration of Bleeding on You" c["Life Leech effects Recover Energy Shield instead while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},[2]={type="Condition",var="LeechingLife"},flags=0,keywordFlags=0,name="ImmortalAmbition",type="FLAG",value=true}},nil} c["Life Leech effects are not removed when Unreserved Life is Filled"]={{[1]={flags=0,keywordFlags=0,name="CanLeechLifeOnFullLife",type="FLAG",value=true}},nil} c["Life Leech is Converted to Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="GhostReaver",type="FLAG",value=true}},nil} -c["Life Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100}},nil} c["Life Leech recovers based on your Chaos damage instead of Physical damage"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechBasedOnChaosDamage",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Condition:NoLifeLeechFromPhysicalDamage",type="FLAG",value=true}},nil} c["Life Leech recovers based on your Elemental damage as well as Physical damage"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechBasedOnElementalDamage",type="FLAG",value=true}},nil} -c["Life Leeched from Empowered Attacks is Instant"]={nil,"Life Leeched from Empowered Attacks is Instant "} c["Life Recharges"]={nil,"Life Recharges "} c["Life Recharges instead of Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeAppliesToLife",type="FLAG",value=true}},nil} c["Life Recovery from Flasks also applies to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskAppliesToEnergyShield",type="FLAG",value=true}},nil} @@ -5547,6 +4875,7 @@ c["Lose 5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="Ene c["Lose 5% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeDegenPercent",type="BASE",value=5}},nil} c["Lose 5% of maximum Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=5}},nil} c["Lose Elemental Archon on reaching maximum Infernal Flame"]={nil,"Lose Elemental Archon on reaching maximum Infernal Flame "} +c["Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"]={nil,"Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings "} c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "} c["Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second"]={nil,"Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second "} c["Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Lose all Infernal Flame on reaching maximum Infernal Flame "} @@ -5556,6 +4885,7 @@ c["Lose all Power Charges on reaching maximum Power Charges Shocks you when you c["Lose all Rage on reaching Maximum Rage"]={nil,"Lose all Rage on reaching Maximum Rage "} c["Lose all Tailwind when Hit"]={nil,"Lose all Tailwind when Hit "} c["Maim on Critical Hit"]={nil,"Maim on Critical Hit "} +c["Mana Costs are Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="ManaCostDoubledLimit",type="Multiplier",var="ManaCostDoubled"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:ManaCostDoubled",type="OVERRIDE",value=1}},"s are d "} c["Mana Flasks also recover Life"]={nil,"Mana Flasks also recover Life "} c["Mana Flasks gain 0.1 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.1}},nil} c["Mana Flasks gain 0.22 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.22}},nil} @@ -5601,12 +4931,11 @@ c["Minions Regenerate 3% of maximum Life per second"]={{[1]={flags=0,keywordFlag c["Minions Revive 10% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=10}},nil} c["Minions Revive 13% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=13}},nil} c["Minions Revive 15% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=15}},nil} -c["Minions Revive 15% faster if all your Minions are Companions"]={nil,"Revive 15% faster if all your Minions are Companions "} c["Minions Revive 25% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=25}},nil} -c["Minions Revive 3% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=3}},nil} c["Minions Revive 35% faster if all your Minions are Companions"]={nil,"Revive 35% faster if all your Minions are Companions "} c["Minions Revive 5% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=5}},nil} c["Minions Revive 50% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=50}},nil} +c["Minions Revive 8% faster"]={{[1]={flags=0,keywordFlags=0,name="MinionRevivalSpeed",type="INC",value=8}},nil} c["Minions cannot Die while affected by a Life Flask"]={nil,"cannot Die while affected by a Life Flask "} c["Minions cannot Die while affected by a Life Flask 30% increased Flask Charges gained"]={nil,"cannot Die while affected by a Life Flask 30% increased Flask Charges gained "} c["Minions cause 15% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=15}}}},nil} @@ -5691,6 +5020,7 @@ c["Minions have 6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name=" c["Minions have 8% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}}}},nil} c["Minions have 8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil} c["Minions have 8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil} +c["Minions have 8% increased Cooldown Recovery Rate for Command Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="CommandableSkill"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=8}}}},nil} c["Minions have 8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=8}}}},nil} c["Minions have 80% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=80}}}},nil} c["Minions have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil} @@ -5707,6 +5037,8 @@ c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge"]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge "} c["Necromantic Talisman"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Necromantic Talisman"}},nil} c["Never deal Critical Hits"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}},nil} +c["No Charge requirement for placing Totems"]={nil,"No Charge requirement for placing Totems "} +c["No Charge requirement for placing Totems Totems reserve 75 Spirit each"]={nil,"No Charge requirement for placing Totems Totems reserve 75 Spirit each "} c["No Inherent loss of Rage"]={nil,"No Inherent loss of Rage "} c["No Inherent loss of Rage Regenerate 6% of your maximum Rage per second"]={nil,"No Inherent loss of Rage Regenerate 6% of your maximum Rage per second "} c["No Inherent loss of Rage Regenerate 6% of your maximum Rage per second Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate"]={nil,"No Inherent loss of Rage Regenerate 6% of your maximum Rage per second Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate "} @@ -5739,9 +5071,8 @@ c["Offerings have 30% increased Maximum Life"]={nil,"Offerings have 30% increase c["Offerings have 30% increased Maximum Life Recover 3% of maximum Life when you create an Offering"]={nil,"Offerings have 30% increased Maximum Life Recover 3% of maximum Life when you create an Offering "} c["Offerings have 30% reduced Maximum Life"]={nil,"Offerings have 30% reduced Maximum Life "} c["On Freezing Enemies create Chilled Ground"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnChilledGround"},flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=30}},nil} -c["On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted"]={nil,"On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted "} c["On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed"]={nil,"On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed "} -c["On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way"]={nil,"On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way "} +c["On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={nil,"On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage as Physical damage for 5 seconds per Charge consumed this way "} c["On Hitting an enemy, gains maximum added Lightning damage equal to"]={nil,"On Hitting an enemy, gains maximum added Lightning damage equal to "} c["On Hitting an enemy, gains maximum added Lightning damage equal to the enemy's Power for 20 seconds, up to a total of 500"]={nil,"On Hitting an enemy, gains maximum added Lightning damage equal to the enemy's Power for 20 seconds, up to a total of 500 "} c["On-Kill Effects happen twice"]={nil,"On-Kill Effects happen twice "} @@ -5876,12 +5207,12 @@ c["Projectiles have 75% chance for an additional Projectile when Forking"]={{[1] c["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"]={{[1]={[1]={skillType=160,type="SkillType"},flags=0,keywordFlags=0,name="Multiplier:ExtraConsumablePowerCharges",type="BASE",value=1}},nil} c["Recoup 5% of damage taken by your Totems as Life"]={nil,"Recoup 5% of damage taken by your Totems as Life "} c["Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence"]={nil,"Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence "} -c["Recoup Effects instead occur over 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="4SecondRecoup",type="FLAG",value=true}},nil} c["Recover 1% of maximum Life on Kill"]={{[1]={[1]={percent=1,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil} c["Recover 1% of maximum Life on Kill per 50 Tribute"]={nil,"Recover 1% of maximum Life on Kill per 50 Tribute "} c["Recover 1% of maximum Life per Glory consumed"]={nil,"Recover 1% of maximum Life per Glory consumed "} c["Recover 1% of maximum Mana on Kill"]={{[1]={[1]={percent=1,stat="Mana",type="PercentStat"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} c["Recover 1% of maximum Mana on Kill per 50 Tribute"]={nil,"Recover 1% of maximum Mana on Kill per 50 Tribute "} +c["Recover 10 Life when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=10}},nil} c["Recover 10% of Missing Life before being Hit by an Enemy"]={nil,"Recover 10% of Missing Life before being Hit by an Enemy "} c["Recover 10% of Missing Life before being Hit by an Enemy Recover 20% of Missing Life before being Hit by an Enemy"]={nil,"Recover 10% of Missing Life before being Hit by an Enemy Recover 20% of Missing Life before being Hit by an Enemy "} c["Recover 10% of maximum Mana when a Charm is used"]={nil,"Recover 10% of maximum Mana when a Charm is used "} @@ -5968,13 +5299,18 @@ c["Remnants can be collected from 50% further away All Flames of Chayula that yo c["Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple"]={nil,"Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple "} c["Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red"]={nil,"Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red "} c["Remnants can be collected from 50% further away Remnants you create reappear once, 3 seconds after being collected"]={nil,"Remnants can be collected from 50% further away Remnants you create reappear once, 3 seconds after being collected "} -c["Remnants have 10% increased effect"]={{[1]={flags=0,keywordFlags=0,name="RemnantEffect",type="INC",value=10}},nil} c["Remnants have 2% increased effect per 10 Tribute"]={nil,"Remnants have 2% increased effect per 10 Tribute "} -c["Remnants have 50% increased effect"]={{[1]={flags=0,keywordFlags=0,name="RemnantEffect",type="INC",value=50}},nil} +c["Remnants you create have 10% increased effect"]={nil,"Remnants you create have 10% increased effect "} +c["Remnants you create have 50% increased effect"]={nil,"Remnants you create have 50% increased effect "} +c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away "} +c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Blue"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Blue "} +c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple "} +c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red "} c["Remnants you create reappear once, 3 seconds after being collected"]={nil,"Remnants you create reappear once, 3 seconds after being collected "} c["Remove Ignite when you Warcry"]={nil,"Remove Ignite when you Warcry "} c["Remove a Curse after Channelling for 2 seconds"]={nil,"Remove a Curse after Channelling for 2 seconds "} c["Remove a Curse when you use a Mana Flask"]={nil,"Remove a Curse when you use a Mana Flask "} +c["Repeatable Spells have 20% chance to Repeat"]={nil,"Repeatable Spells have 20% chance to Repeat "} c["Require 3 fewer enemies to be Surrounded"]={{[1]={flags=0,keywordFlags=0,name="SurroundedMinimum",type="BASE",value=-3}},nil} c["Require 4 fewer enemies to be Surrounded"]={{[1]={flags=0,keywordFlags=0,name="SurroundedMinimum",type="BASE",value=-4}},nil} c["Reserves 25% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=25}},nil} @@ -5985,9 +5321,6 @@ c["Reveal Weaknesses against Rare and Unique enemies 50% more damage against ene c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} c["Right ring slot: Projectiles from Spells cannot Fork"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil} c["Ritual Cadence"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ritual Cadence"}},nil} -c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier "} -c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way "} -c["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice"]={nil,"can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier A maximum of one Modifer can be granted this way Grants Skill: Ritual Sacrifice "} c["Rolls only the minimum or maximum Damage value for each Damage Type"]={nil,"Rolls only the minimum or maximum Damage value for each Damage Type "} c["Sacrifice 15% of Life to gain that much Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="Life",type="BASE",value=15}}," to gain that much Energy Shield when you Cast a "} c["Sacrifice 20% of Mana and they Leech that Mana"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," and they Leech that Mana "} @@ -5995,9 +5328,10 @@ c["Sacrifice 300 Life to not consume the last bolt when firing"]={{[1]={[1]={inc c["Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=5}}," when you Cast a "} c["Sacrifice 5% of maximum Energy Shield when you Cast a Spell Spells for which this Sacrifice was fully made deal 30% more Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=5}}," when you Cast a Spells for which this Sacrifice was fully made deal 30% more Damage "} c["Sacrificing Energy Shield does not interrupt Recharge"]={nil,"Sacrificing Energy Shield does not interrupt Recharge "} -c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell "} -c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell Spells for which this Sacrifice was fully made deal 30% more Damage"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell Spells for which this Sacrifice was fully made deal 30% more Damage "} +c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell\nSpells for which this Sacrifice was fully made deal 30% more Damage"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell\nSpells for which this Sacrifice was fully made deal 30% more Damage "} c["Scarred Faith"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Scarred Faith"}},nil} +c["Sealed Skills have 10% increased Seal gain frequency"]={nil,"Sealed Skills have 10% increased Seal gain frequency "} +c["Sealed Skills have 25% increased Seal gain frequency"]={nil,"Sealed Skills have 25% increased Seal gain frequency "} c["Shapeshift Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=156,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} c["Shapeshift Skills have 30% increased Skill Effect Duration"]={{[1]={[1]={skillType=156,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} c["Share Charges with Allies in your Presence"]={nil,"Share Charges with "} @@ -6007,8 +5341,8 @@ c["Skeletal Minions you would create instead grant you Umbral Souls for each Min c["Skill Gems have no Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalGemAttributeRequirements",type="MORE",value=-100}},nil} c["Skill Mana Costs Converted to Life Costs"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=100}},nil} c["Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostBase",type="BASE",value=3}},nil} -c["Skills Supported by Unleash have 10% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=10}},nil} -c["Skills Supported by Unleash have 25% increased Seal gain frequency"]={{[1]={flags=0,keywordFlags=0,name="SealGainFrequency",type="INC",value=25}},nil} +c["Skills can build and retain Combo regardless of Weapon Set"]={nil,"Skills can build and retain Combo regardless of Weapon Set "} +c["Skills can build and retain Combo regardless of Weapon Set Gain Combo from all Attack Hits"]={nil,"Skills can build and retain Combo regardless of Weapon Set Gain Combo from all Attack Hits "} c["Skills deal 20% increased Damage per Connected Red Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillDamageIncreasedPerRedSupport",type="FLAG",value=20}},nil} c["Skills deal 8% increased Damage per Combo consumed, up to 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="ComboStacks"},[2]={skillType=152,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} @@ -6027,12 +5361,12 @@ c["Skills have -2 seconds to Cooldown"]={{[1]={flags=0,keywordFlags=0,name="Cool c["Skills have 10% chance to not remove Charges but still count as consuming them"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=10}}," to not remove but still count as consuming them "} c["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"]={{}," to not remove Elemental Infusions but still count as consuming them "} c["Skills have 20% increased Critical Hit Chance per Connected Blue Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillCritChanceIncreasedPerBlueSupport",type="FLAG",value=20}},nil} -c["Skills have 33% chance to not consume a Cooldown when used"]={{[1]={[1]={skillType=91,type="SkillType"},flags=0,keywordFlags=0,name="CooldownChanceNotConsume",type="BASE",value=0.33}},nil} c["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]={{}," to not remove Elemental Infusions but still count as consuming them "} c["Skills have 6% increased Skill Speed per Connected Green Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillSpeedIncreasedPerGreenSupport",type="FLAG",value=6}},nil} c["Skills have a 125% longer Perfect Timing window"]={{[1]={flags=0,keywordFlags=0,name="PerfectTiming",type="INC",value=125}},nil} c["Skills have a 15% chance to not consume Glory"]={nil,"a 15% chance to not consume Glory "} c["Skills have a 150% longer Perfect Timing window"]={{[1]={flags=0,keywordFlags=0,name="PerfectTiming",type="INC",value=150}},nil} +c["Skills lose Combo 20% slower"]={nil,"Skills lose Combo 20% slower "} c["Skills reserve 50% less Spirit"]={{[1]={flags=0,keywordFlags=0,name="SpiritReserved",type="MORE",value=-50}},nil} c["Skills used by Totems have 30% more Skill Speed"]={{[1]={flags=0,keywordFlags=16384,name="Speed",type="MORE",value=30},[2]={flags=0,keywordFlags=16384,name="WarcrySpeed",type="MORE",value=30},[3]={flags=0,keywordFlags=16384,name="TotemPlacementSpeed",type="MORE",value=30}},nil} c["Skills which create Fissures have a 20% chance to create an additional Fissure"]={nil,"Skills which create Fissures have a 20% chance to create an additional Fissure "} @@ -6063,6 +5397,9 @@ c["Spells for which this Sacrifice was fully made deal 30% more Damage"]={{[1]={ c["Spells have a 25% chance to inflict Withered for 4 seconds on Hit"]={{}," to inflict Withered "} c["Spells which cost Life Gain 100% of Damage as Extra Physical Damage"]={{[1]={[1]={stat="LifeCost",threshold=1,type="StatThreshold"},flags=0,keywordFlags=131072,name="DamageGainAsPhysical",type="BASE",value=100}},nil} c["Spells which cost Life Gain 120% of Damage as Extra Physical Damage"]={{[1]={[1]={stat="LifeCost",threshold=1,type="StatThreshold"},flags=0,keywordFlags=131072,name="DamageGainAsPhysical",type="BASE",value=120}},nil} +c["Stags deal 20% more damage per leap"]={nil,"Stags deal 20% more damage per leap "} +c["Stags deal 20% more damage per leap Stags have 20% more Shock Magnitude per leap"]={nil,"Stags deal 20% more damage per leap Stags have 20% more Shock Magnitude per leap "} +c["Stags have 20% more Shock Magnitude per leap"]={nil,"Stags have 20% more Shock Magnitude per leap "} c["Storm and Plant Spells:"]={nil,"Storm and Plant Spells: "} c["Storm and Plant Spells: deal 50% more damage"]={nil,"Storm and Plant Spells: deal 50% more damage "} c["Storm and Plant Spells: deal 50% more damage cost 50% less"]={{},"Storm and Plant Spells: deal 50% more damage % less "} @@ -6081,6 +5418,7 @@ c["Successfully Parrying a Projectile Hit grants 40% increased Damage to your ne c["Take 100 Chaos damage per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=100}},nil} c["Take 100 Fire Damage when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="EyeOfInnocenceSelfDamage",type="LIST",value={baseDamage=100,damageType="fire"}}},nil} c["Take 100% of Mana Costs you pay for Skills as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ManaCostAsPhysical",type="BASE",value=100}}," s you pay for Skills "} +c["Take 30% less Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}},nil} c["Take 30% less Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}}," from Hits "} c["Take 30% less Damage from Hits Take 30% less Damage over time"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}}," from Hits Take 30% less Damage over time "} c["Take 30% less Damage from Hits while Dodge Rolling"]={{[1]={[1]={type="Condition",var="InDodgeRoll"},flags=0,keywordFlags=0,name="DamageTakenWhenHit",type="MORE",value=-30}},nil} @@ -6096,6 +5434,10 @@ c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reache c["Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds"]={nil,"maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum Lose all Infernal Flame on reaching maximum Infernal Flame 25% of Infernal Flame lost per second if none was gained in the past 2 seconds "} c["Take no Damage from Volatility"]={nil,"no Damage from Volatility "} c["Take no Extra Damage from Critical Hits"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}},nil} +c["Tame Beast can capture Unique Beasts"]={nil,"can capture Unique Beasts "} +c["Tame Beast can capture Unique Beasts Can have up to one Unique Tamed Beast summoned"]={nil,"can capture Unique Beasts Can have up to one Unique Tamed Beast summoned "} +c["Tame Beast can capture Unique Beasts Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed"]={nil,"can capture Unique Beasts Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed "} +c["Tame Beast can capture Unique Beasts Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"]={nil,"can capture Unique Beasts Can have up to one Unique Tamed Beast summoned Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds "} c["Targets Cursed by you have 100% reduced Life Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-100}}}},nil} c["Targets Cursed by you have 50% reduced Life Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-50}}}},nil} c["Targets Cursed by you have at least 15% of Life Reserved"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="LifeReservationPercent",type="BASE",value=15}}}},nil} @@ -6104,6 +5446,8 @@ c["Targets can be affected by two of your Chills at the same time"]={{[1]={flags c["Targets can be affected by two of your Shocks at the same time"]={{[1]={flags=0,keywordFlags=0,name="ShockCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ShockStacksMax",type="OVERRIDE",value=2}},nil} c["Temporary Minion Skills have +2 to Limit of Minions summoned"]={{[1]={[1]={baseFlag="duration",neg=true,type="BaseFlag"},flags=0,keywordFlags=0,name="ActiveMinionLimit",type="BASE",value=2}},nil} c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil} +c["The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted"]={nil,"The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted "} +c["The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted Ancestrally Boosted Attacks deal 30% increased Damage"]={nil,"The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted Ancestrally Boosted Attacks deal 30% increased Damage "} c["There is no Limit on the number of Banners you can place"]={nil,"There is no Limit on the number of Banners you can place "} c["This Flask cannot be Used but applies its Effect constantly"]={nil,"This Flask cannot be Used but applies its Effect constantly "} c["This Flask cannot be Used but applies its Effect constantly 80% reduced Amount Recovered"]={nil,"This Flask cannot be Used but applies its Effect constantly 80% reduced Amount Recovered "} @@ -6159,9 +5503,15 @@ c["Triple Attribute requirements of Martial Weapons"]={{[1]={flags=0,keywordFlag c["Trusted Kinship"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Trusted Kinship"}},nil} c["Unaffected by Chill during Dodge Roll"]={nil,"Unaffected by Chill during Dodge Roll "} c["Unaffected by Chill while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="SelfChillEffect",type="MORE",value=-100}},nil} +c["Unaffected by Elemental Weakness"]={nil,"Unaffected by Elemental Weakness "} +c["Unarmed Attacks that would use an Equipped Quarterstaff's damage have:"]={nil,"Unarmed Attacks that would use an Equipped Quarterstaff's damage have: "} +c["Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level"]={nil,"Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level "} +c["Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items"]={nil,"Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items "} +c["Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"]={nil,"Unarmed Attacks that would use an Equipped Quarterstaff's damage have: Base Unarmed Physical damage replaced with damage based on their Skill Level 1% more Attack Speed per 75 Item Evasion on Equipped Armour Items +0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items "} c["Undead Minions have 25% less maximum Life"]={{[1]={[1]={skillType=127,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-25}}}},nil} -c["Unlimited number of Summoned Totems"]={nil,"Unlimited number of Summoned Totems "} -c["Unlimited number of Summoned Totems Totems reserve 75 Spirit each"]={nil,"Unlimited number of Summoned Totems Totems reserve 75 Spirit each "} +c["Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"]={nil,"Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds "} +c["Unique Tamed Beasts have 30% increased movement speed"]={nil,"Unique Tamed Beasts have 30% increased movement speed "} +c["Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"]={nil,"Unique Tamed Beasts have 30% increased movement speed Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds "} c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil} c["Unwithered enemies are Withered for 8 seconds when they enter your Presence"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["Used when you are affected by a Slow"]={nil,"Used when you are affected by a Slow "} @@ -6190,6 +5540,8 @@ c["Used when you take Fire damage from a Hit 40% increased Charges"]={nil,"Used c["Used when you take Lightning damage from a Hit"]={nil,"Used when you take Lightning damage from a Hit "} c["Used when you take Lightning damage from a Hit 40% increased Charges gained"]={nil,"Used when you take Lightning damage from a Hit 40% increased Charges gained "} c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil} +c["Vivid Stags leap towards enemies"]={nil,"Vivid Stags leap towards enemies "} +c["Vivid Stags leap towards enemies Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"]={nil,"Vivid Stags leap towards enemies Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground "} c["Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded"]={nil,"Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded "} c["Walk the Paths Not Taken"]={{},nil} c["Warcries Debilitate Enemies"]={{[1]={flags=0,keywordFlags=0,name="DebilitateChance",type="BASE",value=100}},nil} @@ -6216,6 +5568,8 @@ c["When you Consume a Charge, Trigger Elemental Surge to gain 2 Fire Surges When c["When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges"]={nil,"When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges "} c["When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge"]={nil,"When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges Grants Skill: Elemental Surge "} c["When you Shapeshift to Human form, gain 10% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds"]={nil,"When you Shapeshift to Human form, gain 10% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds "} +c["When you gain Combo, gain an additional Combo"]={nil,"When you gain Combo, gain an additional Combo "} +c["When you gain Combo, gain an additional Combo -0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills"]={nil,"When you gain Combo, gain an additional Combo -0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills "} c["When you kill a Rare monster, you gain its Modifiers for 60 seconds"]={nil,"When you kill a Rare monster, you gain its Modifiers for 60 seconds "} c["When you reload, triggers Gemini Surge to alternately"]={nil,"When you reload, triggers Gemini Surge to alternately "} c["When you reload, triggers Gemini Surge to alternately gain 6 Cold Surges or 6 Fire Surges"]={nil,"When you reload, triggers Gemini Surge to alternately gain 6 Cold Surges or 6 Fire Surges "} @@ -6240,9 +5594,9 @@ c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="Enemy c["You can equip a Focus while wielding a Staff"]={{[1]={flags=0,keywordFlags=0,name="InstrumentsOfPower",type="FLAG",value=true}},nil} c["You can equip a non-Unique Sceptre while wielding a Talisman"]={{[1]={flags=0,keywordFlags=0,name="LordOfTheWilds",type="FLAG",value=true}},nil} c["You can have two Companions of different types"]={nil,"You can have two Companions of different types "} +c["You can have two Companions of different types 30% more Reservation Efficiency of Companion Skills"]={nil,"You can have two Companions of different types 30% more Reservation Efficiency of Companion Skills "} +c["You can have two Companions of different types 30% more Reservation Efficiency of Companion Skills 20% less Reservation Efficiency of non-Companion Skills"]={nil,"You can have two Companions of different types 30% more Reservation Efficiency of Companion Skills 20% less Reservation Efficiency of non-Companion Skills "} c["You can have two Companions of different types 60% reduced Duration of Bleeding on You"]={nil,"You can have two Companions of different types 60% reduced Duration of Bleeding on You "} -c["You can have two Companions of different types You have 30% less Defences"]={nil,"You can have two Companions of different types You have 30% less Defences "} -c["You can have two Companions of different types You have 30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have"]={nil,"You can have two Companions of different types You have 30% less Defences Companions have +1 to each Defence for every 2 of that Defence you have "} c["You can only Socket Emerald Jewels in this item"]={{[1]={flags=0,keywordFlags=0,name="JewelSocketRestriction",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CanSocketJewelBaseEmerald",type="FLAG",value=true}},nil} c["You can only Socket Ruby Jewels in this item"]={{[1]={flags=0,keywordFlags=0,name="JewelSocketRestriction",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CanSocketJewelBaseRuby",type="FLAG",value=true}},nil} c["You can only Socket Sapphire Jewels in this item"]={{[1]={flags=0,keywordFlags=0,name="JewelSocketRestriction",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CanSocketJewelBaseSapphire",type="FLAG",value=true}},nil} @@ -6254,6 +5608,8 @@ c["You cannot Sprint"]={{[1]={flags=0,keywordFlags=0,name="Condition:CannotSprin c["You cannot be Chilled for 6 seconds after being Chilled"]={nil,"You cannot be Chilled for 6 seconds after being Chilled "} c["You cannot be Chilled for 6 seconds after being Chilled You cannot be Frozen for 6 seconds after being Frozen"]={nil,"You cannot be Chilled for 6 seconds after being Chilled You cannot be Frozen for 6 seconds after being Frozen "} c["You cannot be Chilled or Frozen"]={{[1]={flags=0,keywordFlags=0,name="ChillImmune",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil} +c["You cannot be Electrocuted"]={nil,"You cannot be Electrocuted "} +c["You cannot be Electrocuted 50% reduced effect of Shock on you"]={nil,"You cannot be Electrocuted 50% reduced effect of Shock on you "} c["You cannot be Frozen for 6 seconds after being Frozen"]={nil,"You cannot be Frozen for 6 seconds after being Frozen "} c["You cannot be Frozen for 6 seconds after being Frozen You cannot be Ignited for 6 seconds after being Ignited"]={nil,"You cannot be Frozen for 6 seconds after being Frozen You cannot be Ignited for 6 seconds after being Ignited "} c["You cannot be Ignited for 6 seconds after being Ignited"]={nil,"You cannot be Ignited for 6 seconds after being Ignited "} @@ -6267,7 +5623,6 @@ c["You count as on Low Mana while at 35% of maximum Life or below"]={{[1]={flags c["You deal 1% more Damage per 2 total Power of your Undead Minions"]={nil,"You deal 1% more Damage per 2 total Power of your Undead Minions "} c["You deal 1% more Damage per 2 total Power of your Undead Minions Undead Minions have 25% less maximum Life"]={nil,"You deal 1% more Damage per 2 total Power of your Undead Minions Undead Minions have 25% less maximum Life "} c["You gain Onslaught for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} -c["You have 30% less Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="MORE",value=-30}},nil} c["You have Arcane Surge"]={{[1]={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["You have Consecrated Ground around you while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Condition:OnConsecratedGround",type="FLAG",value=true}},nil} c["You have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil} @@ -6293,7 +5648,6 @@ c["Your Critical Hit Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritC c["Your Critical Hits do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil} c["Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Magnitude",type="INC",value=20}},nil} c["Your Damage with Critical Hits is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritLucky",type="FLAG",value=true}},nil} -c["Your Energy Shield Recharge starts when your Minions are Reformed"]={nil,"Your Energy Shield Recharge starts when your Minions are Reformed "} c["Your Heavy Stun buildup empties 1% faster per 10 Tribute"]={nil,"Your Heavy Stun buildup empties 1% faster per 10 Tribute "} c["Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Defences from Equipped Shield per 25 Tribute"]={nil,"Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Defences from Equipped Shield per 25 Tribute "} c["Your Heavy Stun buildup empties 50% faster"]={nil,"Your Heavy Stun buildup empties 50% faster "} @@ -6310,14 +5664,24 @@ c["Your Offerings affect you instead of your Minions"]={{[1]={[1]={skillNameList c["Your Offerings can target Enemies in Culling range"]={nil,"Your Offerings can target Enemies in Culling range "} c["Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions"]={nil,"Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions "} c["Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={nil,"Your Offerings can target Enemies in Culling range Your Offerings affect you instead of your Minions Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy "} +c["Your Totem Limit is doubled"]={{},"Your Limit "} +c["Your Totem Limit is doubled No Charge requirement for placing Totems"]={{},"Your Limit No Charge requirement for placing Totems "} +c["Your Totem Limit is doubled No Charge requirement for placing Totems Totems reserve 75 Spirit each"]={{[1]={[1]={globalLimit=100,globalLimitKey="SpiritDoubledLimit",type="Multiplier",var="SpiritDoubled"},flags=0,keywordFlags=16384,name="Spirit",type="MORE",value=100},[2]={flags=0,keywordFlags=16384,name="Multiplier:SpiritDoubled",type="OVERRIDE",value=1}},"Your Limit No Charge requirement for placing Totems Totems reserve 75 each "} c["Your base Energy Shield Recharge Delay is 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeBase",type="OVERRIDE",value=10}},nil} c["Your speed is unaffected by Slows"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedBySlows",type="FLAG",value=true}},nil} c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil} c["additional Elemental Infusion of the same type"]={nil,"additional Elemental Infusion of the same type "} +c["additional Rune-only sockets:"]={nil,"additional Rune-only sockets: "} +c["additional Rune-only sockets: 1 Helmet socket"]={nil,"additional Rune-only sockets: 1 Helmet socket "} +c["additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets"]={nil,"additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets "} +c["additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket"]={nil,"additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket "} +c["additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket 1 Boots socket"]={nil,"additional Rune-only sockets: 1 Helmet socket 2 Body Armour sockets 1 Gloves socket 1 Boots socket "} c["being Shapeshifted for at least 8 seconds"]={nil,"being Shapeshifted for at least 8 seconds "} c["for 4 seconds, every 0.25 seconds while raised"]={nil,"for 4 seconds, every 0.25 seconds while raised "} c["gain 6 Cold Surges or 6 Fire Surges"]={{}," Cold Surges or 6 Fire Surges "} c["the enemy's Power for 20 seconds, up to a total of 500"]={nil,"the enemy's Power for 20 seconds, up to a total of 500 "} +c["their Explicit Modifiers are transformed into more powerful related Modifiers"]={nil,"their Explicit Modifiers are transformed into more powerful related Modifiers "} +c["their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves"]={nil,"their Explicit Modifiers are transformed into more powerful related Modifiers Ignore Attribute Requirements to equip Gloves "} c["until you take no Damage to Life for 3 seconds"]={nil,"until you take no Damage to Life for 3 seconds "} c["until you take no Damage to Life for 5 seconds"]={nil,"until you take no Damage to Life for 5 seconds "} c["until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved"]={nil,"until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved "} diff --git a/src/Export/Scripts/passivetree_ggg.lua b/src/Export/Scripts/passivetree_ggg.lua new file mode 100644 index 0000000000..e2b1917bf5 --- /dev/null +++ b/src/Export/Scripts/passivetree_ggg.lua @@ -0,0 +1,964 @@ +local basePath = GetWorkDir() .. "/../TreeData/" +local version = "0_5" +local path = basePath .. version .. "/" +local fileTree = path .. "tree.lua" + +-- Copy data.json and the assets folder from +-- https://github.com/grindinggear/poe2-skilltree-export/tree/main +-- into TreeData before running this script. +local fileGGGCloneFolder = basePath +local assetsFolder = basePath .. "assets" +local fileAssets = { + "frame.json", "background.json", "skills.json", "mastery-effect-active.json", "group-background.json" +} + +local json = require("dkjson") + +local function sortKeyNumeric(a, b) + local aNum = tonumber(a) + local bNum = tonumber(b) + if aNum and bNum and aNum ~= bNum then + return aNum < bNum + end + return tostring(a) < tostring(b) +end + +local function arcDirection(fromNode, toNode, edge) + -- vectors from arc center to each node + local v1x = fromNode.x - edge.orbitX + local v1y = fromNode.y - edge.orbitY + local v2x = toNode.x - edge.orbitX + local v2y = toNode.y - edge.orbitY + + -- signed angle from v1 to v2, in (-pi, pi] + local cross = v1x * v2y - v1y * v2x + + return cross > 0 and -1 or 1 +end + +local function CalcOrbitAngles(nodesInOrbit) + local orbitAngles = { } + + if nodesInOrbit == 16 then + -- Every 30 and 45 degrees, per https://github.com/grindinggear/skilltree-export/blob/3.17.0/README.md + orbitAngles = { 0, 30, 45, 60, 90, 120, 135, 150, 180, 210, 225, 240, 270, 300, 315, 330 } + elseif nodesInOrbit == 40 then + -- Every 10 and 45 degrees + orbitAngles = { 0, 10, 20, 30, 40, 45, 50, 60, 70, 80, 90, 100, 110, 120, 130, 135, 140, 150, 160, 170, 180, 190, 200, 210, 220, 225, 230, 240, 250, 260, 270, 280, 290, 300, 310, 315, 320, 330, 340, 350 } + else + -- Uniformly spaced + for i = 0, nodesInOrbit do + orbitAngles[i + 1] = 360 * i / nodesInOrbit + end + end + + for i, degrees in ipairs(orbitAngles) do + orbitAngles[i] = math.rad(degrees) + end + + return orbitAngles +end + +local function baseTree(idPassiveTree) + return { + ["tree"] = idPassiveTree, + ["min_x"]= 0, + ["min_y"]= 0, + ["max_x"]= 0, + ["max_y"]= 0, + ["classes"] = { }, + ["groups"] = { }, + ["nodes"]= { }, + ["assets"]={ }, + ["ddsCoords"] = { }, + ["jewelSlots"] = { }, + ["constants"]= { -- calculate this + ["classes"]= { + ["StrDexIntClass"]= 0, + ["StrClass"]= 1, + ["DexClass"]= 2, + ["IntClass"]= 3, + ["StrDexClass"]= 4, + ["StrIntClass"]= 5, + ["DexIntClass"]= 6 + }, + ["characterAttributes"]= { + ["Strength"]= 0, + ["Dexterity"]= 1, + ["Intelligence"]= 2 + }, + ["PSSCentreInnerRadius"]= 130, + ["skillsPerOrbit"]= { }, + ["orbitAnglesByOrbit"] = { }, + ["orbitRadii"]= { + 0, 82, 162, 335, 493, 662, 846, 251, 1080, 1322 + }, + }, + ["nodeOverlay"] = { + Normal = { + alloc = "PSSkillFrameActive", + path = "PSSkillFrameHighlighted", + unalloc = "PSSkillFrame", + }, + Notable = { + alloc = "NotableFrameAllocated", + path = "NotableFrameCanAllocate", + unalloc = "NotableFrameUnallocated", + }, + Keystone = { + alloc = "KeystoneFrameAllocated", + path = "KeystoneFrameCanAllocate", + unalloc = "KeystoneFrameUnallocated", + }, + Socket = { + alloc = "JewelFrameAllocated", + path = "JewelFrameCanAllocate", + unalloc = "JewelFrameUnallocated", + }, + }, + ["connectionArt"] = { + default = "Character", + ascendancy = "CharacterAscendancy", + }, + } +end + +-- load and decode the data.json file +local file, err = io.open(fileGGGCloneFolder .. "\\data.json", "r") + +if file == nil then + printf("Error opening file " .. fileGGGCloneFolder .. "\\data.json") + printf(err) + return +end + +local content = file:read("*a") +file:close() +local data, pos, err = json.decode(content, 1, nil) +if err then + printf("Error decoding JSON: " .. err) + return +end + +local tree = baseTree(data.tree) + +-- jewelSlots +for _, jewelSlot in ipairs(data.jewelSlots) do + table.insert(tree.jewelSlots, jewelSlot) +end + +-- build classes +local ascendancySearchNameById = { } +local ascendancyReplacements = { + ["Lich"] = "Abyssal Lich" +} +for i,class in ipairs(data.classes) do + if #class.ascendancies == 0 then + print("Skipping class " .. class.name .. " because it has no ascendancy classes") + goto classContinue + end + + local classData = { + ["base_dex"] = class.base_dex, + ["base_int"] = class.base_int, + ["base_str"] = class.base_str, + ["name"] = class.name, + ["integerId"] = i - 1, + ["ascendancies"] = { }, + ["background"] = { + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="class" .. class.name ..":Class0", + section="AscendancyBackground", + width=1500, + x= 0, + y= 0, + } + } + + for indexAscendancy, ascendancy in ipairs(class.ascendancies) do + if not ascendancy.name then + print("Skipping ascendancy with id " .. ascendancy.id .. " because it has no name") + goto nextAscendancy + end + local imageName = "class" .. class.name .. ":Class" .. indexAscendancy + + local ascendancyData = { + ["internalId"] = ascendancy.id, + ["name"] = ascendancy.name, + ["id"] = ascendancy.name, + ["background"] = { + height=1500, + image= imageName, + section="AscendancyBackground", + width=1500, + x= ascendancy.offsetX, + y= ascendancy.offsetY, + }, + } + ascendancySearchNameById[ascendancy.id] = ascendancy.name + table.insert(classData.ascendancies, ascendancyData) + :: nextAscendancy :: + end + + table.insert(tree.classes, classData) + + -- Load background-[class] dynamically + table.insert(fileAssets, "background-" .. string.lower(class.name) .. ".json") + :: classContinue :: +end + +local orbitsConstants = { } + +-- build groups +print("Building groups") +for groupId, group in pairsSortByKey(data.groups) do + local groupData = { + ["x"] = round(group.x, 2), + ["y"] = round(group.y, 2), + ["orbits"] = group.orbits, + ["nodes"] = { }, + } + for _, node in ipairs(group.nodes) do + if not data.nodes[node] or data.nodes[node].id == nil then + printf("Skipping node " .. node .. " not id found") + goto nextGroupNode + end + table.insert(groupData.nodes, tonumber(node)) + :: nextGroupNode :: + end + tree.groups[tonumber(groupId)] = groupData +end + +-- build nodes +print("Building nodes") +local attributesNodesId = {26297, 14927, 57022} +local ascendancyGroups = { } +local classesNodeIds = { } + +for id, node in pairsSortByKey(data.nodes) do + if node.id == nil then + printf("Node with id " .. id .. " has no id, skipping") + goto nextNode + end + + local nodeId = tonumber(id == "root" and 0 or id) + local nodeData = { + ["group"] = node.group, + ["orbit"] = node.orbit, + ["skill"] = nodeId, + ["orbitIndex"] = node.orbitIndex, + ["icon"] = node.icon, + ["name"] = escapeGGGString(node.name), + ["isNotable"] = node.isNotable, + ["isKeystone"] = node.isKeystone, + ["isOnlyImage"] = node.isMastery, + ["activeEffectImage"] = node.activeEffectImage, + ["isAscendancyStart"] = node.isAscendancyStart, + ["isMultipleChoice"] = node.isMultipleChoice, + ["isMultipleChoiceOption"] = node.isMultipleChoiceOption, + ["isFreeAllocate"] = node.isFree, + ["ascendancyName"] = node.ascendancyId and ascendancySearchNameById[node.ascendancyId] or nil, + ["connections"] = { } + } + + -- Fix background for ascendancyStart + if node.ascendancyId then + if not node.isJewelSocket then + nodeData["nodeOverlay"] = { + alloc = node.isNotable and "AscendancyFrameNotableAllocated" or "AscendancyFrameNormalAllocated", + path = node.isNotable and "AscendancyFrameNotableCanAllocate" or "AscendancyFrameNormalCanAllocate", + unalloc = node.isNotable and "AscendancyFrameNotableUnallocated" or "AscendancyFrameNormalUnallocated" + } + else + nodeData["containJewelSocket"] = true + nodeData["nodeOverlay"] = { + alloc = "JewelSocketAltActive", + path = "JewelSocketAltCanAllocate", + unalloc = "JewelSocketAltNormal" + } + end + local ascendancyName = ascendancySearchNameById[node.ascendancyId] + ascendancyGroups = ascendancyGroups or { } + ascendancyGroups[ascendancyName] = ascendancyGroups[ascendancyName] or { } + ascendancyGroups[ascendancyName].startId = node.isAscendancyStart and nodeId or ascendancyGroups[ascendancyName].startId + ascendancyGroups[ascendancyName][node.group] = true + else + nodeData["isJewelSocket"] = node.isJewelSocket + + -- enable support for voices_jewel_slot[n] in GrantedPassiveSkills + nodeData["aliasPassiveSocket"] = node.isJewelSocket and node.isBlighted and node.id or nil + nodeData["noRadius"] = node.isJewelSocket and node.isBlighted and true or nil + + if node.isBlighted then + nodeData["nodeOverlay"] = { + alloc = "BlightedNotableFrameAllocated", + path = "BlightedNotableFrameCanAllocate", + unalloc = "BlightedNotableFrameUnallocated" + } + end + -- recalculate max and min + local group = tree.groups[node.group] + tree.min_x = math.min(tree.min_x, group.x) + tree.min_y = math.min(tree.min_y, group.y) + tree.max_x = math.max(tree.max_x, group.x) + tree.max_y = math.max(tree.max_y, group.y) + end + + -- build flavor text + if node.flavourText and #node.flavourText > 0 then + nodeData.flavourText = table.concat(node.flavourText, '\\n') + end + -- build node stats + if node.stats and #node.stats > 0 then + nodeData.stats = { } + for _, stat in ipairs(node.stats) do + table.insert(nodeData.stats, sanitiseText(escapeGGGString(stat))) + end + end + + -- build attribute nodes + if node.isGenericAttribute == true then + nodeData["isAttribute"] = true + nodeData["options"] = { } + for i, overrideId in ipairs(attributesNodesId) do + local overrideNode = data.skillOverrides[tostring(overrideId)] + if overrideNode == nil then + printf("Override node ".. overrideId .. " not found") + return + end + local optionData = { + ["id"] = overrideId, + ["name"] = overrideNode.name, + ["icon"] = overrideNode.icon, + ["stats"] = { } + } + for _, statDesc in ipairs(overrideNode.stats) do + table.insert(optionData.stats, sanitiseText(escapeGGGString(statDesc))) + end + + table.insert(nodeData["options"], optionData) + end + end + + -- build classes start + if node.classStartIndex and #node.classStartIndex > 0 then + nodeData.classesStart = { } + for _, classStartIndex in ipairs(node.classStartIndex) do + local className = data.classes[classStartIndex + 1].name + table.insert(nodeData.classesStart, className) + table.insert(classesNodeIds, nodeId) + end + end + + -- build connections + local lengthIn, lengthOut, lengthEdge = #node["in"], #node["out"], #node.edges + local nodeInCount = lengthEdge - (lengthIn + lengthOut) + lengthIn + for index, nodeIdOut in ipairs(node.out) do + local edgeIndex = node.edges[nodeInCount + index] + 1 + local orbitDataSearch = data.edges[edgeIndex] + if orbitDataSearch == nil then + printf("Edge index " .. index .. " for " .. nodeIdOut .. " from " .. nodeId .. " not found") + goto nextOrbit + end + + local fromId = tonumber(orbitDataSearch.from == "root" and 0 or orbitDataSearch.from) + if fromId ~= nodeId or orbitDataSearch.to ~= tonumber(nodeIdOut) then + printf("Incorrect edge for " .. nodeId .. " " .. nodeIdOut ) + printf(fromId.. " => " .. orbitDataSearch.to .. " = " .. edgeIndex .. " " .. index .. " " .. nodeInCount) + return + end + + -- skip nodes that are not active + if data.nodes[nodeIdOut] and data.nodes[nodeIdOut].id == null then + printf("Ignoring Out NodeId " .. nodeIdOut) + goto nextOrbit + end + + -- TODO: minimal check + local nodeOrbit = 0 + if orbitDataSearch.orbit ~= nil and orbitDataSearch.orbit ~= 0 then + nodeOrbit = (orbitDataSearch.orbit + 1) * arcDirection(node, data.nodes[nodeIdOut], orbitDataSearch) + end + + local connectionData = { + id = tonumber(nodeIdOut), + orbit = nodeOrbit + } + table.insert(nodeData.connections, connectionData) + :: nextOrbit :: + end + + -- build unlock constraint + if node.unlockConstraint ~= nil then + nodeData["connectionArt"] = "CharacterPlanned" + nodeData["unlockConstraint"] = { + ["ascendancy"] = ascendancySearchNameById[node.unlockConstraint.ascendancy], + ["nodes"] = node.unlockConstraint.nodes, + } + nodeData["nodeOverlay"] = { + ["alloc"] = "OracleFrameAllocated", + ["path"] = "OracleFrameCanAllocate", + ["unalloc"] = "OracleFrameUnallocated", + } + end + + orbitsConstants[node.orbit + 1] = math.max(orbitsConstants[node.orbit + 1] or 1, node.orbitIndex) + tree.nodes[nodeId] = nodeData + :: nextNode :: +end + +-- Build isSwitchable / overridePairs +for _, classData in ipairs(data.classes) do + if classData.overridePairs then + for nodeId, replaceNodeId in pairsSortByKey(classData.overridePairs) do + local sourceNode = tree.nodes[tonumber(nodeId)] + if sourceNode == nil then + printf("Not Node for override found for " .. nodeId) + goto nextReplacement + end + local replaceNode = data.skillOverrides[tostring(replaceNodeId)] + if replaceNode == nil then + printf("Not skillOverrides for override found for " .. replaceNodeId) + goto nextReplacement + end + + if #replaceNode > 0 then + replaceNode = replaceNode[1] + end + + sourceNode["isSwitchable"] = true + sourceNode.options = sourceNode.options or { } + + local replaceNodeData = { + ["icon"] = replaceNode.icon, + ["id"] = replaceNodeId, + ["name"] = escapeGGGString(replaceNode.name), + ["stats"] = { } + } + + for _, statDesc in ipairs(replaceNode.stats) do + table.insert(replaceNodeData.stats, sanitiseText(escapeGGGString(statDesc))) + end + + sourceNode.options[classData.name] = replaceNodeData + :: nextReplacement :: + end + end + for _, ascendancyData in ipairs(classData.ascendancies) do + if ascendancyData.overridePairs then + for nodeId, replaceNodeId in pairsSortByKey(ascendancyData.overridePairs) do + local sourceNode = tree.nodes[tonumber(nodeId)] + if sourceNode == nil then + printf("Not Node for override found for " .. nodeId) + goto nextReplacement + end + local replaceNode = data.skillOverrides[tostring(replaceNodeId)] + if replaceNode == nil then + printf("Not skillOverrides for override found for " .. replaceNodeId) + goto nextReplacement + end + + if #replaceNode > 0 then + replaceNode = replaceNode[1] + end + + sourceNode["isSwitchable"] = true + sourceNode.options = sourceNode.options or { } + + local replaceNodeData = { + ["icon"] = replaceNode.icon, + ["id"] = replaceNodeId, + ["name"] = escapeGGGString(replaceNode.name), + ["ascendancyName"] = ascendancyData.name, + ["stats"] = { }, + } + + for _, statDesc in ipairs(replaceNode.stats) do + table.insert(replaceNodeData.stats, sanitiseText(escapeGGGString(statDesc))) + end + + sourceNode.options[ascendancyData.name] = replaceNodeData + :: nextReplacement :: + end + end + end +end + +-- updating skillsPerOrbit +for i, orbit in ipairs(orbitsConstants) do + -- only numbers base on 12 + orbit = i == 1 and orbit or math.ceil(orbit / 12) * 12 + tree.constants.skillsPerOrbit[i] = orbit +end + +-- calculate the orbit radius +for orbit, skillsInOrbit in ipairs(tree.constants.skillsPerOrbit) do + tree.constants.orbitAnglesByOrbit[orbit] = CalcOrbitAngles(skillsInOrbit) +end + +-- Update position of ascendancy base on min / max +-- get the orbit radius + hard-coded value, calculate the angle of the class start +-- translate the ascendancy to the new position in arc position +local widthTree, heightTree = tree.max_x - tree.min_x, tree.max_y - tree.min_y +local radiusTree = (math.max(widthTree, heightTree) + 700) / 2 +local arcAngle = { [0] = 0, [1] = 0, [2] = 12, [3] = 24, [4] = 36, [5] = 48, [6] = 60, [7] = 72, [8] = 84, [9] = 96 } +for i, classId in ipairs(classesNodeIds) do + local nodeStart = tree.nodes[classId] + local group = tree.groups[nodeStart.group] + local angleToCenter = math.atan2(group.y, group.x) + local hardCoded = radiusTree + 2800 + + -- calculate how many ascendancies in that place? + local total = 0 + local classes = { } + + for _, class in ipairs(tree.classes) do + for _, nodeClasses in ipairs(nodeStart.classesStart) do + if nodeClasses == class.name then + total = total + #class.ascendancies + table.insert(classes, class) + end + end + end + + local startAngle = angleToCenter - math.rad(arcAngle[total] / 2) + local angleStep = math.rad(arcAngle[total] / (total - 1)) or 0 + local j = 1 + for _, class in ipairs(classes) do + for _, ascendancy in ipairs(class.ascendancies) do + --printf("Positioning ascendancy " .. ascendancy.name .. " for class " .. class.name) + + local angle = startAngle + (j - 1) * angleStep + local cX = hardCoded * math.cos(angle) + local cY = hardCoded * math.sin(angle) + + local info = ascendancyGroups[ascendancy.id] + if info == nil then + printf("Ascendancy group " .. ascendancy.id .. " not found") + goto continuePositioning + end + local ascendancyNode = tree.nodes[info.startId] + if ascendancyNode == nil then + printf("Ascendancy node " .. ascendancy.id .. " not found") + goto continuePositioning + end + + ascendancy.background.x = cX + ascendancy.background.y = cY + + local groupAscendancy = tree.groups[ascendancyNode.group] + + local innerRadius= dat("ascendancy"):GetRow("Id", ascendancy.internalId).distanceTree + + local newInnerX = cX + math.cos(angleToCenter) * innerRadius + local newInnerY = cY + math.sin(angleToCenter) * innerRadius + + local nodeAngle = tree.constants.orbitAnglesByOrbit[ascendancyNode.orbit + 1][ascendancyNode.orbitIndex + 1] + local orbitRadius = tree.constants.orbitRadii[ascendancyNode.orbit + 1] + local newX = newInnerX - math.sin(nodeAngle) * orbitRadius + local newY = newInnerY + math.cos(nodeAngle) * orbitRadius + + local offsetX = newX - groupAscendancy.x + local offsetY = newY - groupAscendancy.y + + -- now update the whole groups with the offset + for groupId, value in pairsSortByKey(info, sortKeyNumeric) do + if type(value) == "boolean" then + local group = tree.groups[groupId] + group.x = group.x + offsetX + group.y = group.y + offsetY + + -- recalculate min / max + tree.min_x = math.min(tree.min_x, group.x - hardCoded / 2) + tree.min_y = math.min(tree.min_y, group.y - hardCoded / 2) + tree.max_x = math.max(tree.max_x, group.x + hardCoded / 2) + tree.max_y = math.max(tree.max_y, group.y + hardCoded / 2) + end + end + + j = j + 1 + :: continuePositioning :: + end + end +end + +printf("Fixing replace ascendancies position...") +for from, to in pairsSortByKey(ascendancyReplacements) do + local fromAscendancy + local toAscendancy + for _, class in ipairs(tree.classes) do + for _, ascendancy in ipairs(class.ascendancies) do + if ascendancy.name == from then + fromAscendancy = ascendancy + end + if ascendancy.name == to then + toAscendancy = ascendancy + end + end + end + + if fromAscendancy == nil then + printf("From ascendancy " .. from .. " not found") + goto continueReplace + end + if toAscendancy == nil then + printf("To ascendancy " .. to .. " not found") + goto continueReplace + end + + fromAscendancy.replaceBy = to + toAscendancy.replace = from + + toAscendancy.background.x = fromAscendancy.background.x + toAscendancy.background.y = fromAscendancy.background.y + + :: continueReplace :: +end + +-- build spriteCoords +tree.spriteCoords = { } + +-- Build frame coords info +for _, strFile in ipairs(fileAssets) do + local fileName = assetsFolder .. "\\" .. strFile + local file, err = io.open(fileName, "r") + if file == nil then + printf("Error opening file " .. fileName) + printf(err) + return + end + + local content = file:read("*a") + file:close() + local dataFrame, pos, err = json.decode(content, 1, nil) + if err then + printf("Error decoding JSON: " .. err) + return + end + + -- this file contains frame & meta + local fileNameMeta = dataFrame.meta.image + local copied, copyErr = copyFile(assetsFolder .. "\\" .. fileNameMeta, path .. fileNameMeta) + if not copied then + printf("Error copying asset " .. fileNameMeta) + printf(copyErr) + return + end + + tree.spriteCoords[fileNameMeta] = { } + for name, frameData in pairsSortByKey(dataFrame.frames) do + local a, b = name:match("([^:]+):([^:]+)") + if a == "startNode" and b == "MainCircle" then + b = "BGTree" + elseif a == "startNode" and b == "MainCircleActive" then + b = "BGTreeActive" + elseif a == "frame" and b == "AscendancyStartNode" then + b = "AscendancyMiddle" + elseif a:sub(1,5) == "class" then + -- Enable class and ascendancies background + b = a .. ":" .. b + end + local frame = frameData.frame + local internalName = b or a + tree.spriteCoords[fileNameMeta][internalName] = { + x = frame.x, + y = frame.y, + w = frame.w, + h = frame.h + } + end +end +-- build orbits info +tree.assets={ + CharacterAscendancyLineConnectorActive={ + [1]="CharacterAscendancy_orbit_intermediateactive0.png" + }, + CharacterAscendancyLineConnectorIntermediate={ + [1]="CharacterAscendancy_orbit_intermediate0.png" + }, + CharacterAscendancyLineConnectorNormal={ + [1]="CharacterAscendancy_orbit_normal0.png" + }, + CharacterAscendancyOrbit1Active={ + [1]="CharacterAscendancy_orbit_intermediateactive9.png" + }, + CharacterAscendancyOrbit1Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate9.png" + }, + CharacterAscendancyOrbit1Normal={ + [1]="CharacterAscendancy_orbit_normal9.png" + }, + CharacterAscendancyOrbit2Active={ + [1]="CharacterAscendancy_orbit_intermediateactive8.png" + }, + CharacterAscendancyOrbit2Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate8.png" + }, + CharacterAscendancyOrbit2Normal={ + [1]="CharacterAscendancy_orbit_normal8.png" + }, + CharacterAscendancyOrbit3Active={ + [1]="CharacterAscendancy_orbit_intermediateactive6.png" + }, + CharacterAscendancyOrbit3Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate6.png" + }, + CharacterAscendancyOrbit3Normal={ + [1]="CharacterAscendancy_orbit_normal6.png" + }, + CharacterAscendancyOrbit4Active={ + [1]="CharacterAscendancy_orbit_intermediateactive5.png" + }, + CharacterAscendancyOrbit4Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate5.png" + }, + CharacterAscendancyOrbit4Normal={ + [1]="CharacterAscendancy_orbit_normal5.png" + }, + CharacterAscendancyOrbit5Active={ + [1]="CharacterAscendancy_orbit_intermediateactive4.png" + }, + CharacterAscendancyOrbit5Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate4.png" + }, + CharacterAscendancyOrbit5Normal={ + [1]="CharacterAscendancy_orbit_normal4.png" + }, + CharacterAscendancyOrbit6Active={ + [1]="CharacterAscendancy_orbit_intermediateactive3.png" + }, + CharacterAscendancyOrbit6Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate3.png" + }, + CharacterAscendancyOrbit6Normal={ + [1]="CharacterAscendancy_orbit_normal3.png" + }, + CharacterAscendancyOrbit7Active={ + [1]="CharacterAscendancy_orbit_intermediateactive7.png" + }, + CharacterAscendancyOrbit7Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate7.png" + }, + CharacterAscendancyOrbit7Normal={ + [1]="CharacterAscendancy_orbit_normal7.png" + }, + CharacterAscendancyOrbit8Active={ + [1]="CharacterAscendancy_orbit_intermediateactive2.png" + }, + CharacterAscendancyOrbit8Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate2.png" + }, + CharacterAscendancyOrbit8Normal={ + [1]="CharacterAscendancy_orbit_normal2.png" + }, + CharacterAscendancyOrbit9Active={ + [1]="CharacterAscendancy_orbit_intermediateactive1.png" + }, + CharacterAscendancyOrbit9Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate1.png" + }, + CharacterAscendancyOrbit9Normal={ + [1]="CharacterAscendancy_orbit_normal1.png" + }, + CharacterLineConnectorActive={ + [1]="Character_orbit_intermediateactive0.png" + }, + CharacterLineConnectorIntermediate={ + [1]="Character_orbit_intermediate0.png" + }, + CharacterLineConnectorNormal={ + [1]="Character_orbit_normal0.png" + }, + CharacterOrbit1Active={ + [1]="Character_orbit_intermediateactive9.png" + }, + CharacterOrbit1Intermediate={ + [1]="Character_orbit_intermediate9.png" + }, + CharacterOrbit1Normal={ + [1]="Character_orbit_normal9.png" + }, + CharacterOrbit2Active={ + [1]="Character_orbit_intermediateactive8.png" + }, + CharacterOrbit2Intermediate={ + [1]="Character_orbit_intermediate8.png" + }, + CharacterOrbit2Normal={ + [1]="Character_orbit_normal8.png" + }, + CharacterOrbit3Active={ + [1]="Character_orbit_intermediateactive6.png" + }, + CharacterOrbit3Intermediate={ + [1]="Character_orbit_intermediate6.png" + }, + CharacterOrbit3Normal={ + [1]="Character_orbit_normal6.png" + }, + CharacterOrbit4Active={ + [1]="Character_orbit_intermediateactive5.png" + }, + CharacterOrbit4Intermediate={ + [1]="Character_orbit_intermediate5.png" + }, + CharacterOrbit4Normal={ + [1]="Character_orbit_normal5.png" + }, + CharacterOrbit5Active={ + [1]="Character_orbit_intermediateactive4.png" + }, + CharacterOrbit5Intermediate={ + [1]="Character_orbit_intermediate4.png" + }, + CharacterOrbit5Normal={ + [1]="Character_orbit_normal4.png" + }, + CharacterOrbit6Active={ + [1]="Character_orbit_intermediateactive3.png" + }, + CharacterOrbit6Intermediate={ + [1]="Character_orbit_intermediate3.png" + }, + CharacterOrbit6Normal={ + [1]="Character_orbit_normal3.png" + }, + CharacterOrbit7Active={ + [1]="Character_orbit_intermediateactive7.png" + }, + CharacterOrbit7Intermediate={ + [1]="Character_orbit_intermediate7.png" + }, + CharacterOrbit7Normal={ + [1]="Character_orbit_normal7.png" + }, + CharacterOrbit8Active={ + [1]="Character_orbit_intermediateactive2.png" + }, + CharacterOrbit8Intermediate={ + [1]="Character_orbit_intermediate2.png" + }, + CharacterOrbit8Normal={ + [1]="Character_orbit_normal2.png" + }, + CharacterOrbit9Active={ + [1]="Character_orbit_intermediateactive1.png" + }, + CharacterOrbit9Intermediate={ + [1]="Character_orbit_intermediate1.png" + }, + CharacterOrbit9Normal={ + [1]="Character_orbit_normal1.png" + }, + CharacterPlannedLineConnectorActive={ + [1]="CharacterPlanned_orbit_intermediateactive0.png" + }, + CharacterPlannedLineConnectorIntermediate={ + [1]="CharacterPlanned_orbit_intermediate0.png" + }, + CharacterPlannedLineConnectorNormal={ + [1]="CharacterPlanned_orbit_normal0.png" + }, + CharacterPlannedOrbit1Active={ + [1]="CharacterPlanned_orbit_intermediateactive9.png" + }, + CharacterPlannedOrbit1Intermediate={ + [1]="CharacterPlanned_orbit_intermediate9.png" + }, + CharacterPlannedOrbit1Normal={ + [1]="CharacterPlanned_orbit_normal9.png" + }, + CharacterPlannedOrbit2Active={ + [1]="CharacterPlanned_orbit_intermediateactive8.png" + }, + CharacterPlannedOrbit2Intermediate={ + [1]="CharacterPlanned_orbit_intermediate8.png" + }, + CharacterPlannedOrbit2Normal={ + [1]="CharacterPlanned_orbit_normal8.png" + }, + CharacterPlannedOrbit3Active={ + [1]="CharacterPlanned_orbit_intermediateactive6.png" + }, + CharacterPlannedOrbit3Intermediate={ + [1]="CharacterPlanned_orbit_intermediate6.png" + }, + CharacterPlannedOrbit3Normal={ + [1]="CharacterPlanned_orbit_normal6.png" + }, + CharacterPlannedOrbit4Active={ + [1]="CharacterPlanned_orbit_intermediateactive5.png" + }, + CharacterPlannedOrbit4Intermediate={ + [1]="CharacterPlanned_orbit_intermediate5.png" + }, + CharacterPlannedOrbit4Normal={ + [1]="CharacterPlanned_orbit_normal5.png" + }, + CharacterPlannedOrbit5Active={ + [1]="CharacterPlanned_orbit_intermediateactive4.png" + }, + CharacterPlannedOrbit5Intermediate={ + [1]="CharacterPlanned_orbit_intermediate4.png" + }, + CharacterPlannedOrbit5Normal={ + [1]="CharacterPlanned_orbit_normal4.png" + }, + CharacterPlannedOrbit6Active={ + [1]="CharacterPlanned_orbit_intermediateactive3.png" + }, + CharacterPlannedOrbit6Intermediate={ + [1]="CharacterPlanned_orbit_intermediate3.png" + }, + CharacterPlannedOrbit6Normal={ + [1]="CharacterPlanned_orbit_normal3.png" + }, + CharacterPlannedOrbit7Active={ + [1]="CharacterPlanned_orbit_intermediateactive7.png" + }, + CharacterPlannedOrbit7Intermediate={ + [1]="CharacterPlanned_orbit_intermediate7.png" + }, + CharacterPlannedOrbit7Normal={ + [1]="CharacterPlanned_orbit_normal7.png" + }, + CharacterPlannedOrbit8Active={ + [1]="CharacterPlanned_orbit_intermediateactive2.png" + }, + CharacterPlannedOrbit8Intermediate={ + [1]="CharacterPlanned_orbit_intermediate2.png" + }, + CharacterPlannedOrbit8Normal={ + [1]="CharacterPlanned_orbit_normal2.png" + }, + CharacterPlannedOrbit9Active={ + [1]="CharacterPlanned_orbit_intermediateactive1.png" + }, + CharacterPlannedOrbit9Intermediate={ + [1]="CharacterPlanned_orbit_intermediate1.png" + }, + CharacterPlannedOrbit9Normal={ + [1]="CharacterPlanned_orbit_normal1.png" + } +} + +printf("Generating lua tree file") +local out, err = io.open(fileTree, "w") +if out == nil then + printf("Error opening file " .. fileTree) + printf(err) + return +end +out:write('return ') +writeLuaTable(out, tree, 1) +out:close() + +print("Done") \ No newline at end of file diff --git a/src/GameVersions.lua b/src/GameVersions.lua index 58f1637903..45c0503f79 100644 --- a/src/GameVersions.lua +++ b/src/GameVersions.lua @@ -7,7 +7,7 @@ liveTargetVersion = "0_1" -- Skill tree versions ---Added for convenient indexing of skill tree versions. ---@type string[] -treeVersionList = { "0_1", "0_2", "0_3", "0_4" } +treeVersionList = { "0_1", "0_2", "0_3", "0_4", "0_5" } --- Always points to the latest skill tree version. latestTreeVersion = treeVersionList[#treeVersionList] ---Tree version where multiple skill trees per build were introduced to PoBC. @@ -31,4 +31,8 @@ treeVersions = { display = "0_4", num = 0.4, }, + ["0_5"] = { + display = "0_5", + num = 0.5, + }, } diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 16c3287630..c88a54ef58 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -801,11 +801,11 @@ function getFormatSec(dec) end function copyFile(srcName, dstName) - local inFile, msg = io.open(srcName, "r") + local inFile, msg = io.open(srcName, "rb") if not inFile then return nil, "Couldn't open '"..srcName.."': "..msg end - local outFile, msg = io.open(dstName, "w") + local outFile, msg = io.open(dstName, "wb") if not outFile then return nil, "Couldn't create '"..dstName.."': "..msg end @@ -1033,7 +1033,10 @@ function ImportBuild(importLink, callback) end function escapeGGGString(text) - local line = text:gsub("%[([^|%]]+)%]", "%1"):gsub("%[[^|]+|([^|]+)%]", "%1") + local line = text + :gsub("<[^>]+>{([^}]+)}", "%1") + :gsub("%[([^|%]]+)%]", "%1") + :gsub("%[[^|]+|([^|]+)%]", "%1") return line end diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 904efc3492..e7cbb0399f 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -551,14 +551,14 @@ data.weaponTypeInfo = { } data.unarmedWeaponData = { [0] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Scion - [1] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Ranger - [2] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Huntress - [3] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 8 }, -- Warrior - [4] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Mercenary - [5] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Druid - [6] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Witch + [1] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Witch + [2] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Ranger + [6] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 8 }, -- Warrior [7] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Sorceress - [8] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Monk + [8] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Huntress + [9] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Mercenary + [10] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Monk + [11] = { type = "None", AttackRate = 1.65, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Druid } data.setJewelRadiiGlobally = function(treeVersion) diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png new file mode 100644 index 0000000000..d0b9c4bc8a Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png new file mode 100644 index 0000000000..b93d5d6882 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png new file mode 100644 index 0000000000..bf6d950725 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png new file mode 100644 index 0000000000..94ddd1a22b Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png new file mode 100644 index 0000000000..dcbab51756 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png new file mode 100644 index 0000000000..ee5562a775 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png new file mode 100644 index 0000000000..1fe8b5a373 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png new file mode 100644 index 0000000000..defdfa7acd Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png new file mode 100644 index 0000000000..a3ca0a0dbf Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png new file mode 100644 index 0000000000..8b94084715 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png new file mode 100644 index 0000000000..dbaa4e3b69 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png new file mode 100644 index 0000000000..aaf88076ef Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png new file mode 100644 index 0000000000..afdeb91b0d Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png new file mode 100644 index 0000000000..903c5cbe8d Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png new file mode 100644 index 0000000000..326d2144ae Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png new file mode 100644 index 0000000000..b61513cee6 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png new file mode 100644 index 0000000000..69e4551c32 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png new file mode 100644 index 0000000000..902d993241 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png new file mode 100644 index 0000000000..24dc570436 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png new file mode 100644 index 0000000000..c74b9e2df5 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png new file mode 100644 index 0000000000..b90b7adb8b Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png new file mode 100644 index 0000000000..a984544532 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png new file mode 100644 index 0000000000..0a6be76e1d Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png new file mode 100644 index 0000000000..165512ec08 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png new file mode 100644 index 0000000000..9a48c60e84 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png new file mode 100644 index 0000000000..587fcbb8e9 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png new file mode 100644 index 0000000000..23a8ec76cc Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png new file mode 100644 index 0000000000..f7d320ce70 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png new file mode 100644 index 0000000000..755a6d8b92 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png new file mode 100644 index 0000000000..764576e8c2 Binary files /dev/null and b/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png new file mode 100644 index 0000000000..98df978e95 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png new file mode 100644 index 0000000000..fd0ec54d41 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png new file mode 100644 index 0000000000..6ce5eab63a Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png new file mode 100644 index 0000000000..5fb7ac4465 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png new file mode 100644 index 0000000000..1ecee36297 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png new file mode 100644 index 0000000000..2b2cf516c9 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png new file mode 100644 index 0000000000..8fcd21330d Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png new file mode 100644 index 0000000000..9d926e14b6 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png new file mode 100644 index 0000000000..b2580f944d Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png new file mode 100644 index 0000000000..aab717a1d4 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png new file mode 100644 index 0000000000..c6201f88b4 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png new file mode 100644 index 0000000000..2e30c8b9ae Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png new file mode 100644 index 0000000000..96ccbc8265 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png new file mode 100644 index 0000000000..4957d536cb Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png new file mode 100644 index 0000000000..f22d74b0ef Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png new file mode 100644 index 0000000000..ab2560a413 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png new file mode 100644 index 0000000000..bd73ff3667 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png new file mode 100644 index 0000000000..fea8189895 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png new file mode 100644 index 0000000000..d0944c55db Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png new file mode 100644 index 0000000000..daf4593029 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png new file mode 100644 index 0000000000..44a7491829 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png new file mode 100644 index 0000000000..59c6d9c38c Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png new file mode 100644 index 0000000000..424077ab06 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png new file mode 100644 index 0000000000..d406fc300a Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png new file mode 100644 index 0000000000..4dc950ad5a Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png new file mode 100644 index 0000000000..8a4d95c4d7 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png new file mode 100644 index 0000000000..9e10714a7e Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png new file mode 100644 index 0000000000..3139bc8d0d Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png new file mode 100644 index 0000000000..0d501fc4fa Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png new file mode 100644 index 0000000000..9397871a22 Binary files /dev/null and b/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate0.png b/src/TreeData/0_5/Character_orbit_intermediate0.png new file mode 100644 index 0000000000..f9ede85d46 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate0.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate1.png b/src/TreeData/0_5/Character_orbit_intermediate1.png new file mode 100644 index 0000000000..d33f3f4d48 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate1.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate2.png b/src/TreeData/0_5/Character_orbit_intermediate2.png new file mode 100644 index 0000000000..c87601ef18 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate2.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate3.png b/src/TreeData/0_5/Character_orbit_intermediate3.png new file mode 100644 index 0000000000..ac9591b7eb Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate3.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate4.png b/src/TreeData/0_5/Character_orbit_intermediate4.png new file mode 100644 index 0000000000..abab064ac2 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate4.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate5.png b/src/TreeData/0_5/Character_orbit_intermediate5.png new file mode 100644 index 0000000000..89c38f2df7 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate5.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate6.png b/src/TreeData/0_5/Character_orbit_intermediate6.png new file mode 100644 index 0000000000..f91eeac3a3 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate6.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate7.png b/src/TreeData/0_5/Character_orbit_intermediate7.png new file mode 100644 index 0000000000..f477d1dcdd Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate7.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate8.png b/src/TreeData/0_5/Character_orbit_intermediate8.png new file mode 100644 index 0000000000..c8cb8aa9ea Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate8.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate9.png b/src/TreeData/0_5/Character_orbit_intermediate9.png new file mode 100644 index 0000000000..837eb68bc1 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediate9.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive0.png b/src/TreeData/0_5/Character_orbit_intermediateactive0.png new file mode 100644 index 0000000000..7f51d1400f Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive1.png b/src/TreeData/0_5/Character_orbit_intermediateactive1.png new file mode 100644 index 0000000000..11533afd81 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive2.png b/src/TreeData/0_5/Character_orbit_intermediateactive2.png new file mode 100644 index 0000000000..9ad7f1a178 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive3.png b/src/TreeData/0_5/Character_orbit_intermediateactive3.png new file mode 100644 index 0000000000..60d6198117 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive4.png b/src/TreeData/0_5/Character_orbit_intermediateactive4.png new file mode 100644 index 0000000000..d09e82f271 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive5.png b/src/TreeData/0_5/Character_orbit_intermediateactive5.png new file mode 100644 index 0000000000..28c93d7e40 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive6.png b/src/TreeData/0_5/Character_orbit_intermediateactive6.png new file mode 100644 index 0000000000..e641e40c0a Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive7.png b/src/TreeData/0_5/Character_orbit_intermediateactive7.png new file mode 100644 index 0000000000..51074892c4 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive8.png b/src/TreeData/0_5/Character_orbit_intermediateactive8.png new file mode 100644 index 0000000000..6482589693 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive9.png b/src/TreeData/0_5/Character_orbit_intermediateactive9.png new file mode 100644 index 0000000000..db98c69741 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal0.png b/src/TreeData/0_5/Character_orbit_normal0.png new file mode 100644 index 0000000000..e6ddecf92c Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal0.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal1.png b/src/TreeData/0_5/Character_orbit_normal1.png new file mode 100644 index 0000000000..57c48b8c48 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal1.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal2.png b/src/TreeData/0_5/Character_orbit_normal2.png new file mode 100644 index 0000000000..a341adce63 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal2.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal3.png b/src/TreeData/0_5/Character_orbit_normal3.png new file mode 100644 index 0000000000..d3b64412ee Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal3.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal4.png b/src/TreeData/0_5/Character_orbit_normal4.png new file mode 100644 index 0000000000..2c27d5ca27 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal4.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal5.png b/src/TreeData/0_5/Character_orbit_normal5.png new file mode 100644 index 0000000000..964ada9a79 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal5.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal6.png b/src/TreeData/0_5/Character_orbit_normal6.png new file mode 100644 index 0000000000..081c13f485 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal6.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal7.png b/src/TreeData/0_5/Character_orbit_normal7.png new file mode 100644 index 0000000000..64d5aa242c Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal7.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal8.png b/src/TreeData/0_5/Character_orbit_normal8.png new file mode 100644 index 0000000000..cc45095c13 Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal8.png differ diff --git a/src/TreeData/0_5/Character_orbit_normal9.png b/src/TreeData/0_5/Character_orbit_normal9.png new file mode 100644 index 0000000000..e3c804544e Binary files /dev/null and b/src/TreeData/0_5/Character_orbit_normal9.png differ diff --git a/src/TreeData/0_5/background-druid.webp b/src/TreeData/0_5/background-druid.webp new file mode 100644 index 0000000000..91ccef0339 Binary files /dev/null and b/src/TreeData/0_5/background-druid.webp differ diff --git a/src/TreeData/0_5/background-huntress.webp b/src/TreeData/0_5/background-huntress.webp new file mode 100644 index 0000000000..d41f3a68ef Binary files /dev/null and b/src/TreeData/0_5/background-huntress.webp differ diff --git a/src/TreeData/0_5/background-mercenary.webp b/src/TreeData/0_5/background-mercenary.webp new file mode 100644 index 0000000000..8aa39faedc Binary files /dev/null and b/src/TreeData/0_5/background-mercenary.webp differ diff --git a/src/TreeData/0_5/background-monk.webp b/src/TreeData/0_5/background-monk.webp new file mode 100644 index 0000000000..7297d26990 Binary files /dev/null and b/src/TreeData/0_5/background-monk.webp differ diff --git a/src/TreeData/0_5/background-ranger.webp b/src/TreeData/0_5/background-ranger.webp new file mode 100644 index 0000000000..4ae1cd5c88 Binary files /dev/null and b/src/TreeData/0_5/background-ranger.webp differ diff --git a/src/TreeData/0_5/background-sorceress.webp b/src/TreeData/0_5/background-sorceress.webp new file mode 100644 index 0000000000..02450f959c Binary files /dev/null and b/src/TreeData/0_5/background-sorceress.webp differ diff --git a/src/TreeData/0_5/background-warrior.webp b/src/TreeData/0_5/background-warrior.webp new file mode 100644 index 0000000000..55e2f3f567 Binary files /dev/null and b/src/TreeData/0_5/background-warrior.webp differ diff --git a/src/TreeData/0_5/background-witch.webp b/src/TreeData/0_5/background-witch.webp new file mode 100644 index 0000000000..844b376fc0 Binary files /dev/null and b/src/TreeData/0_5/background-witch.webp differ diff --git a/src/TreeData/0_5/background.webp b/src/TreeData/0_5/background.webp new file mode 100644 index 0000000000..b340a1844f Binary files /dev/null and b/src/TreeData/0_5/background.webp differ diff --git a/src/TreeData/0_5/frame.webp b/src/TreeData/0_5/frame.webp new file mode 100644 index 0000000000..9192f0bddc Binary files /dev/null and b/src/TreeData/0_5/frame.webp differ diff --git a/src/TreeData/0_5/group-background.webp b/src/TreeData/0_5/group-background.webp new file mode 100644 index 0000000000..013d1353b2 Binary files /dev/null and b/src/TreeData/0_5/group-background.webp differ diff --git a/src/TreeData/0_5/mastery-effect-active.webp b/src/TreeData/0_5/mastery-effect-active.webp new file mode 100644 index 0000000000..42bc268dc7 Binary files /dev/null and b/src/TreeData/0_5/mastery-effect-active.webp differ diff --git a/src/TreeData/0_5/skills.webp b/src/TreeData/0_5/skills.webp new file mode 100644 index 0000000000..921c7fd137 Binary files /dev/null and b/src/TreeData/0_5/skills.webp differ diff --git a/src/TreeData/0_5/tree.lua b/src/TreeData/0_5/tree.lua new file mode 100644 index 0000000000..f25375d6c4 --- /dev/null +++ b/src/TreeData/0_5/tree.lua @@ -0,0 +1,127204 @@ +return { + assets={ + CharacterAscendancyLineConnectorActive={ + [1]="CharacterAscendancy_orbit_intermediateactive0.png" + }, + CharacterAscendancyLineConnectorIntermediate={ + [1]="CharacterAscendancy_orbit_intermediate0.png" + }, + CharacterAscendancyLineConnectorNormal={ + [1]="CharacterAscendancy_orbit_normal0.png" + }, + CharacterAscendancyOrbit1Active={ + [1]="CharacterAscendancy_orbit_intermediateactive9.png" + }, + CharacterAscendancyOrbit1Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate9.png" + }, + CharacterAscendancyOrbit1Normal={ + [1]="CharacterAscendancy_orbit_normal9.png" + }, + CharacterAscendancyOrbit2Active={ + [1]="CharacterAscendancy_orbit_intermediateactive8.png" + }, + CharacterAscendancyOrbit2Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate8.png" + }, + CharacterAscendancyOrbit2Normal={ + [1]="CharacterAscendancy_orbit_normal8.png" + }, + CharacterAscendancyOrbit3Active={ + [1]="CharacterAscendancy_orbit_intermediateactive6.png" + }, + CharacterAscendancyOrbit3Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate6.png" + }, + CharacterAscendancyOrbit3Normal={ + [1]="CharacterAscendancy_orbit_normal6.png" + }, + CharacterAscendancyOrbit4Active={ + [1]="CharacterAscendancy_orbit_intermediateactive5.png" + }, + CharacterAscendancyOrbit4Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate5.png" + }, + CharacterAscendancyOrbit4Normal={ + [1]="CharacterAscendancy_orbit_normal5.png" + }, + CharacterAscendancyOrbit5Active={ + [1]="CharacterAscendancy_orbit_intermediateactive4.png" + }, + CharacterAscendancyOrbit5Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate4.png" + }, + CharacterAscendancyOrbit5Normal={ + [1]="CharacterAscendancy_orbit_normal4.png" + }, + CharacterAscendancyOrbit6Active={ + [1]="CharacterAscendancy_orbit_intermediateactive3.png" + }, + CharacterAscendancyOrbit6Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate3.png" + }, + CharacterAscendancyOrbit6Normal={ + [1]="CharacterAscendancy_orbit_normal3.png" + }, + CharacterAscendancyOrbit7Active={ + [1]="CharacterAscendancy_orbit_intermediateactive7.png" + }, + CharacterAscendancyOrbit7Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate7.png" + }, + CharacterAscendancyOrbit7Normal={ + [1]="CharacterAscendancy_orbit_normal7.png" + }, + CharacterAscendancyOrbit8Active={ + [1]="CharacterAscendancy_orbit_intermediateactive2.png" + }, + CharacterAscendancyOrbit8Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate2.png" + }, + CharacterAscendancyOrbit8Normal={ + [1]="CharacterAscendancy_orbit_normal2.png" + }, + CharacterAscendancyOrbit9Active={ + [1]="CharacterAscendancy_orbit_intermediateactive1.png" + }, + CharacterAscendancyOrbit9Intermediate={ + [1]="CharacterAscendancy_orbit_intermediate1.png" + }, + CharacterAscendancyOrbit9Normal={ + [1]="CharacterAscendancy_orbit_normal1.png" + }, + CharacterLineConnectorActive={ + [1]="Character_orbit_intermediateactive0.png" + }, + CharacterLineConnectorIntermediate={ + [1]="Character_orbit_intermediate0.png" + }, + CharacterLineConnectorNormal={ + [1]="Character_orbit_normal0.png" + }, + CharacterOrbit1Active={ + [1]="Character_orbit_intermediateactive9.png" + }, + CharacterOrbit1Intermediate={ + [1]="Character_orbit_intermediate9.png" + }, + CharacterOrbit1Normal={ + [1]="Character_orbit_normal9.png" + }, + CharacterOrbit2Active={ + [1]="Character_orbit_intermediateactive8.png" + }, + CharacterOrbit2Intermediate={ + [1]="Character_orbit_intermediate8.png" + }, + CharacterOrbit2Normal={ + [1]="Character_orbit_normal8.png" + }, + CharacterOrbit3Active={ + [1]="Character_orbit_intermediateactive6.png" + }, + CharacterOrbit3Intermediate={ + [1]="Character_orbit_intermediate6.png" + }, + CharacterOrbit3Normal={ + [1]="Character_orbit_normal6.png" + }, + CharacterOrbit4Active={ + [1]="Character_orbit_intermediateactive5.png" + }, + CharacterOrbit4Intermediate={ + [1]="Character_orbit_intermediate5.png" + }, + CharacterOrbit4Normal={ + [1]="Character_orbit_normal5.png" + }, + CharacterOrbit5Active={ + [1]="Character_orbit_intermediateactive4.png" + }, + CharacterOrbit5Intermediate={ + [1]="Character_orbit_intermediate4.png" + }, + CharacterOrbit5Normal={ + [1]="Character_orbit_normal4.png" + }, + CharacterOrbit6Active={ + [1]="Character_orbit_intermediateactive3.png" + }, + CharacterOrbit6Intermediate={ + [1]="Character_orbit_intermediate3.png" + }, + CharacterOrbit6Normal={ + [1]="Character_orbit_normal3.png" + }, + CharacterOrbit7Active={ + [1]="Character_orbit_intermediateactive7.png" + }, + CharacterOrbit7Intermediate={ + [1]="Character_orbit_intermediate7.png" + }, + CharacterOrbit7Normal={ + [1]="Character_orbit_normal7.png" + }, + CharacterOrbit8Active={ + [1]="Character_orbit_intermediateactive2.png" + }, + CharacterOrbit8Intermediate={ + [1]="Character_orbit_intermediate2.png" + }, + CharacterOrbit8Normal={ + [1]="Character_orbit_normal2.png" + }, + CharacterOrbit9Active={ + [1]="Character_orbit_intermediateactive1.png" + }, + CharacterOrbit9Intermediate={ + [1]="Character_orbit_intermediate1.png" + }, + CharacterOrbit9Normal={ + [1]="Character_orbit_normal1.png" + }, + CharacterPlannedLineConnectorActive={ + [1]="CharacterPlanned_orbit_intermediateactive0.png" + }, + CharacterPlannedLineConnectorIntermediate={ + [1]="CharacterPlanned_orbit_intermediate0.png" + }, + CharacterPlannedLineConnectorNormal={ + [1]="CharacterPlanned_orbit_normal0.png" + }, + CharacterPlannedOrbit1Active={ + [1]="CharacterPlanned_orbit_intermediateactive9.png" + }, + CharacterPlannedOrbit1Intermediate={ + [1]="CharacterPlanned_orbit_intermediate9.png" + }, + CharacterPlannedOrbit1Normal={ + [1]="CharacterPlanned_orbit_normal9.png" + }, + CharacterPlannedOrbit2Active={ + [1]="CharacterPlanned_orbit_intermediateactive8.png" + }, + CharacterPlannedOrbit2Intermediate={ + [1]="CharacterPlanned_orbit_intermediate8.png" + }, + CharacterPlannedOrbit2Normal={ + [1]="CharacterPlanned_orbit_normal8.png" + }, + CharacterPlannedOrbit3Active={ + [1]="CharacterPlanned_orbit_intermediateactive6.png" + }, + CharacterPlannedOrbit3Intermediate={ + [1]="CharacterPlanned_orbit_intermediate6.png" + }, + CharacterPlannedOrbit3Normal={ + [1]="CharacterPlanned_orbit_normal6.png" + }, + CharacterPlannedOrbit4Active={ + [1]="CharacterPlanned_orbit_intermediateactive5.png" + }, + CharacterPlannedOrbit4Intermediate={ + [1]="CharacterPlanned_orbit_intermediate5.png" + }, + CharacterPlannedOrbit4Normal={ + [1]="CharacterPlanned_orbit_normal5.png" + }, + CharacterPlannedOrbit5Active={ + [1]="CharacterPlanned_orbit_intermediateactive4.png" + }, + CharacterPlannedOrbit5Intermediate={ + [1]="CharacterPlanned_orbit_intermediate4.png" + }, + CharacterPlannedOrbit5Normal={ + [1]="CharacterPlanned_orbit_normal4.png" + }, + CharacterPlannedOrbit6Active={ + [1]="CharacterPlanned_orbit_intermediateactive3.png" + }, + CharacterPlannedOrbit6Intermediate={ + [1]="CharacterPlanned_orbit_intermediate3.png" + }, + CharacterPlannedOrbit6Normal={ + [1]="CharacterPlanned_orbit_normal3.png" + }, + CharacterPlannedOrbit7Active={ + [1]="CharacterPlanned_orbit_intermediateactive7.png" + }, + CharacterPlannedOrbit7Intermediate={ + [1]="CharacterPlanned_orbit_intermediate7.png" + }, + CharacterPlannedOrbit7Normal={ + [1]="CharacterPlanned_orbit_normal7.png" + }, + CharacterPlannedOrbit8Active={ + [1]="CharacterPlanned_orbit_intermediateactive2.png" + }, + CharacterPlannedOrbit8Intermediate={ + [1]="CharacterPlanned_orbit_intermediate2.png" + }, + CharacterPlannedOrbit8Normal={ + [1]="CharacterPlanned_orbit_normal2.png" + }, + CharacterPlannedOrbit9Active={ + [1]="CharacterPlanned_orbit_intermediateactive1.png" + }, + CharacterPlannedOrbit9Intermediate={ + [1]="CharacterPlanned_orbit_intermediate1.png" + }, + CharacterPlannedOrbit9Normal={ + [1]="CharacterPlanned_orbit_normal1.png" + } + }, + classes={ + [1]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classWitch:Class1", + section="AscendancyBackground", + width=1500, + x=-9132.2175811404, + y=-12569.59650469 + }, + id="Infernalist", + internalId="Witch1", + name="Infernalist" + }, + [2]={ + background={ + height=1500, + image="classWitch:Class2", + section="AscendancyBackground", + width=1500, + x=-6319.2906541845, + y=-14193.615461465 + }, + id="Blood Mage", + internalId="Witch2", + name="Blood Mage" + }, + [3]={ + background={ + height=1500, + image="classWitch:Class3", + section="AscendancyBackground", + width=1500, + x=-3230.1804023198, + y=-15197.305314051 + }, + id="Lich", + internalId="Witch3", + name="Lich", + replaceBy="Abyssal Lich" + }, + [4]={ + background={ + height=1500, + image="classWitch:Class4", + section="AscendancyBackground", + width=1500, + x=-3230.1804023198, + y=-15197.305314051 + }, + id="Abyssal Lich", + internalId="Witch3b", + name="Abyssal Lich", + replace="Lich" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classWitch:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=15, + ["base_str"]=7, + integerId=1, + name="Witch" + }, + [2]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classRanger:Class1", + section="AscendancyBackground", + width=1500, + x=15451.770747814, + y=1623.2482856874 + }, + id="Deadeye", + internalId="Ranger1", + name="Deadeye" + }, + [2]={ + background={ + height=1500, + image="classRanger:Class3", + section="AscendancyBackground", + width=1500, + x=14776.620188369, + y=4800.3801983469 + }, + id="Pathfinder", + internalId="Ranger3", + name="Pathfinder" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classRanger:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=15, + ["base_int"]=7, + ["base_str"]=7, + integerId=2, + name="Ranger" + }, + [3]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classWarrior:Class1", + section="AscendancyBackground", + width=1500, + x=-11551.133804607, + y=10390.546764635 + }, + id="Titan", + internalId="Warrior1", + name="Titan" + }, + [2]={ + background={ + height=1500, + image="classWarrior:Class2", + section="AscendancyBackground", + width=1500, + x=-13459.029963088, + y=7761.8726279624 + }, + id="Warbringer", + internalId="Warrior2", + name="Warbringer" + }, + [3]={ + background={ + height=1500, + image="classWarrior:Class3", + section="AscendancyBackground", + width=1500, + x=-14778.70192859, + y=4793.9674118504 + }, + id="Smith of Kitava", + internalId="Warrior3", + name="Smith of Kitava" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classWarrior:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=7, + ["base_str"]=15, + integerId=6, + name="Warrior" + }, + [4]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classSorceress:Class1", + section="AscendancyBackground", + width=1500, + x=0.1042332514801, + y=-15536.79999965 + }, + id="Stormweaver", + internalId="Sorceress1", + name="Stormweaver" + }, + [2]={ + background={ + height=1500, + image="classSorceress:Class2", + section="AscendancyBackground", + width=1500, + x=3230.3843133295, + y=-15197.261971427 + }, + id="Chronomancer", + internalId="Sorceress2", + name="Chronomancer" + }, + [3]={ + background={ + height=1500, + image="classSorceress:Class3", + section="AscendancyBackground", + width=1500, + x=6319.4810978113, + y=-14193.530670499 + }, + id="Disciple of Varashta", + internalId="Sorceress3", + name="Disciple of Varashta" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classSorceress:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=15, + ["base_str"]=7, + integerId=7, + name="Sorceress" + }, + [5]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classHuntress:Class1", + section="AscendancyBackground", + width=1500, + x=13455.660420602, + y=7767.7124615587 + }, + id="Amazon", + internalId="Huntress1", + name="Amazon" + }, + [2]={ + background={ + height=1500, + image="classHuntress:Class2", + section="AscendancyBackground", + width=1500, + x=11546.623725031, + y=10395.558416581 + }, + id="Spirit Walker", + internalId="Huntress2", + name="Spirit Walker" + }, + [3]={ + background={ + height=1500, + image="classHuntress:Class3", + section="AscendancyBackground", + width=1500, + x=9132.9441658295, + y=12569.068585374 + }, + id="Ritualist", + internalId="Huntress3", + name="Ritualist" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classHuntress:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=15, + ["base_int"]=7, + ["base_str"]=7, + integerId=8, + name="Huntress" + }, + [6]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classMercenary:Class1", + section="AscendancyBackground", + width=1500, + x=3250.4416281318, + y=15192.98467919 + }, + id="Tactician", + internalId="Mercenary1", + name="Tactician" + }, + [2]={ + background={ + height=1500, + image="classMercenary:Class2", + section="AscendancyBackground", + width=1500, + x=20.61254666364, + y=15536.786326745 + }, + id="Witchhunter", + internalId="Mercenary2", + name="Witchhunter" + }, + [3]={ + background={ + height=1500, + image="classMercenary:Class3", + section="AscendancyBackground", + width=1500, + x=-3210.1174020037, + y=15201.555858048 + }, + id="Gemling Legionnaire", + internalId="Mercenary3", + name="Gemling Legionnaire" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classMercenary:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=11, + ["base_int"]=7, + ["base_str"]=11, + integerId=9, + name="Mercenary" + }, + [7]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classMonk:Class1", + section="AscendancyBackground", + width=1500, + x=11574.651935986, + y=-10364.342082389 + }, + id="Martial Artist", + internalId="Monk1", + name="Martial Artist" + }, + [2]={ + background={ + height=1500, + image="classMonk:Class2", + section="AscendancyBackground", + width=1500, + x=13476.585907076, + y=-7731.3508864357 + }, + id="Invoker", + internalId="Monk2", + name="Invoker" + }, + [3]={ + background={ + height=1500, + image="classMonk:Class3", + section="AscendancyBackground", + width=1500, + x=14789.528406194, + y=-4760.4625576072 + }, + id="Acolyte of Chayula", + internalId="Monk3", + name="Acolyte of Chayula" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classMonk:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=11, + ["base_int"]=11, + ["base_str"]=7, + integerId=10, + name="Monk" + }, + [8]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="classDruid:Class1", + section="AscendancyBackground", + width=1500, + x=-14155.444383374, + y=-6404.3382600554 + }, + id="Oracle", + internalId="Druid1", + name="Oracle" + }, + [2]={ + background={ + height=1500, + image="classDruid:Class2", + section="AscendancyBackground", + width=1500, + x=-12514.577164701, + y=-9207.4704793849 + }, + id="Shaman", + internalId="Druid2", + name="Shaman" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="classDruid:Class0", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=11, + ["base_str"]=11, + integerId=11, + name="Druid" + } + }, + connectionArt={ + ascendancy="CharacterAscendancy", + default="Character" + }, + constants={ + PSSCentreInnerRadius=130, + characterAttributes={ + Dexterity=1, + Intelligence=2, + Strength=0 + }, + classes={ + DexClass=2, + DexIntClass=6, + IntClass=3, + StrClass=1, + StrDexClass=4, + StrDexIntClass=0, + StrIntClass=5 + }, + orbitAnglesByOrbit={ + [1]={ + [1]=0, + [2]=6.2831853071796 + }, + [2]={ + [1]=0, + [2]=0.5235987755983, + [3]=1.0471975511966, + [4]=1.5707963267949, + [5]=2.0943951023932, + [6]=2.6179938779915, + [7]=3.1415926535898, + [8]=3.6651914291881, + [9]=4.1887902047864, + [10]=4.7123889803847, + [11]=5.235987755983, + [12]=5.7595865315813, + [13]=6.2831853071796 + }, + [3]={ + [1]=0, + [2]=0.26179938779915, + [3]=0.5235987755983, + [4]=0.78539816339745, + [5]=1.0471975511966, + [6]=1.3089969389957, + [7]=1.5707963267949, + [8]=1.832595714594, + [9]=2.0943951023932, + [10]=2.3561944901923, + [11]=2.6179938779915, + [12]=2.8797932657906, + [13]=3.1415926535898, + [14]=3.4033920413889, + [15]=3.6651914291881, + [16]=3.9269908169872, + [17]=4.1887902047864, + [18]=4.4505895925855, + [19]=4.7123889803847, + [20]=4.9741883681838, + [21]=5.235987755983, + [22]=5.4977871437821, + [23]=5.7595865315813, + [24]=6.0213859193804, + [25]=6.2831853071796 + }, + [4]={ + [1]=0, + [2]=0.26179938779915, + [3]=0.5235987755983, + [4]=0.78539816339745, + [5]=1.0471975511966, + [6]=1.3089969389957, + [7]=1.5707963267949, + [8]=1.832595714594, + [9]=2.0943951023932, + [10]=2.3561944901923, + [11]=2.6179938779915, + [12]=2.8797932657906, + [13]=3.1415926535898, + [14]=3.4033920413889, + [15]=3.6651914291881, + [16]=3.9269908169872, + [17]=4.1887902047864, + [18]=4.4505895925855, + [19]=4.7123889803847, + [20]=4.9741883681838, + [21]=5.235987755983, + [22]=5.4977871437821, + [23]=5.7595865315813, + [24]=6.0213859193804, + [25]=6.2831853071796 + }, + [5]={ + [1]=0, + [2]=0.087266462599716, + [3]=0.17453292519943, + [4]=0.26179938779915, + [5]=0.34906585039887, + [6]=0.43633231299858, + [7]=0.5235987755983, + [8]=0.61086523819802, + [9]=0.69813170079773, + [10]=0.78539816339745, + [11]=0.87266462599716, + [12]=0.95993108859688, + [13]=1.0471975511966, + [14]=1.1344640137963, + [15]=1.221730476396, + [16]=1.3089969389957, + [17]=1.3962634015955, + [18]=1.4835298641952, + [19]=1.5707963267949, + [20]=1.6580627893946, + [21]=1.7453292519943, + [22]=1.832595714594, + [23]=1.9198621771938, + [24]=2.0071286397935, + [25]=2.0943951023932, + [26]=2.1816615649929, + [27]=2.2689280275926, + [28]=2.3561944901923, + [29]=2.4434609527921, + [30]=2.5307274153918, + [31]=2.6179938779915, + [32]=2.7052603405912, + [33]=2.7925268031909, + [34]=2.8797932657906, + [35]=2.9670597283904, + [36]=3.0543261909901, + [37]=3.1415926535898, + [38]=3.2288591161895, + [39]=3.3161255787892, + [40]=3.4033920413889, + [41]=3.4906585039887, + [42]=3.5779249665884, + [43]=3.6651914291881, + [44]=3.7524578917878, + [45]=3.8397243543875, + [46]=3.9269908169872, + [47]=4.014257279587, + [48]=4.1015237421867, + [49]=4.1887902047864, + [50]=4.2760566673861, + [51]=4.3633231299858, + [52]=4.4505895925855, + [53]=4.5378560551853, + [54]=4.625122517785, + [55]=4.7123889803847, + [56]=4.7996554429844, + [57]=4.8869219055841, + [58]=4.9741883681838, + [59]=5.0614548307836, + [60]=5.1487212933833, + [61]=5.235987755983, + [62]=5.3232542185827, + [63]=5.4105206811824, + [64]=5.4977871437821, + [65]=5.5850536063819, + [66]=5.6723200689816, + [67]=5.7595865315813, + [68]=5.846852994181, + [69]=5.9341194567807, + [70]=6.0213859193804, + [71]=6.1086523819802, + [72]=6.1959188445799, + [73]=6.2831853071796 + }, + [6]={ + [1]=0, + [2]=0.087266462599716, + [3]=0.17453292519943, + [4]=0.26179938779915, + [5]=0.34906585039887, + [6]=0.43633231299858, + [7]=0.5235987755983, + [8]=0.61086523819802, + [9]=0.69813170079773, + [10]=0.78539816339745, + [11]=0.87266462599716, + [12]=0.95993108859688, + [13]=1.0471975511966, + [14]=1.1344640137963, + [15]=1.221730476396, + [16]=1.3089969389957, + [17]=1.3962634015955, + [18]=1.4835298641952, + [19]=1.5707963267949, + [20]=1.6580627893946, + [21]=1.7453292519943, + [22]=1.832595714594, + [23]=1.9198621771938, + [24]=2.0071286397935, + [25]=2.0943951023932, + [26]=2.1816615649929, + [27]=2.2689280275926, + [28]=2.3561944901923, + [29]=2.4434609527921, + [30]=2.5307274153918, + [31]=2.6179938779915, + [32]=2.7052603405912, + [33]=2.7925268031909, + [34]=2.8797932657906, + [35]=2.9670597283904, + [36]=3.0543261909901, + [37]=3.1415926535898, + [38]=3.2288591161895, + [39]=3.3161255787892, + [40]=3.4033920413889, + [41]=3.4906585039887, + [42]=3.5779249665884, + [43]=3.6651914291881, + [44]=3.7524578917878, + [45]=3.8397243543875, + [46]=3.9269908169872, + [47]=4.014257279587, + [48]=4.1015237421867, + [49]=4.1887902047864, + [50]=4.2760566673861, + [51]=4.3633231299858, + [52]=4.4505895925855, + [53]=4.5378560551853, + [54]=4.625122517785, + [55]=4.7123889803847, + [56]=4.7996554429844, + [57]=4.8869219055841, + [58]=4.9741883681838, + [59]=5.0614548307836, + [60]=5.1487212933833, + [61]=5.235987755983, + [62]=5.3232542185827, + [63]=5.4105206811824, + [64]=5.4977871437821, + [65]=5.5850536063819, + [66]=5.6723200689816, + [67]=5.7595865315813, + [68]=5.846852994181, + [69]=5.9341194567807, + [70]=6.0213859193804, + [71]=6.1086523819802, + [72]=6.1959188445799, + [73]=6.2831853071796 + }, + [7]={ + [1]=0, + [2]=0.087266462599716, + [3]=0.17453292519943, + [4]=0.26179938779915, + [5]=0.34906585039887, + [6]=0.43633231299858, + [7]=0.5235987755983, + [8]=0.61086523819802, + [9]=0.69813170079773, + [10]=0.78539816339745, + [11]=0.87266462599716, + [12]=0.95993108859688, + [13]=1.0471975511966, + [14]=1.1344640137963, + [15]=1.221730476396, + [16]=1.3089969389957, + [17]=1.3962634015955, + [18]=1.4835298641952, + [19]=1.5707963267949, + [20]=1.6580627893946, + [21]=1.7453292519943, + [22]=1.832595714594, + [23]=1.9198621771938, + [24]=2.0071286397935, + [25]=2.0943951023932, + [26]=2.1816615649929, + [27]=2.2689280275926, + [28]=2.3561944901923, + [29]=2.4434609527921, + [30]=2.5307274153918, + [31]=2.6179938779915, + [32]=2.7052603405912, + [33]=2.7925268031909, + [34]=2.8797932657906, + [35]=2.9670597283904, + [36]=3.0543261909901, + [37]=3.1415926535898, + [38]=3.2288591161895, + [39]=3.3161255787892, + [40]=3.4033920413889, + [41]=3.4906585039887, + [42]=3.5779249665884, + [43]=3.6651914291881, + [44]=3.7524578917878, + [45]=3.8397243543875, + [46]=3.9269908169872, + [47]=4.014257279587, + [48]=4.1015237421867, + [49]=4.1887902047864, + [50]=4.2760566673861, + [51]=4.3633231299858, + [52]=4.4505895925855, + [53]=4.5378560551853, + [54]=4.625122517785, + [55]=4.7123889803847, + [56]=4.7996554429844, + [57]=4.8869219055841, + [58]=4.9741883681838, + [59]=5.0614548307836, + [60]=5.1487212933833, + [61]=5.235987755983, + [62]=5.3232542185827, + [63]=5.4105206811824, + [64]=5.4977871437821, + [65]=5.5850536063819, + [66]=5.6723200689816, + [67]=5.7595865315813, + [68]=5.846852994181, + [69]=5.9341194567807, + [70]=6.0213859193804, + [71]=6.1086523819802, + [72]=6.1959188445799, + [73]=6.2831853071796 + }, + [8]={ + [1]=0, + [2]=0.26179938779915, + [3]=0.5235987755983, + [4]=0.78539816339745, + [5]=1.0471975511966, + [6]=1.3089969389957, + [7]=1.5707963267949, + [8]=1.832595714594, + [9]=2.0943951023932, + [10]=2.3561944901923, + [11]=2.6179938779915, + [12]=2.8797932657906, + [13]=3.1415926535898, + [14]=3.4033920413889, + [15]=3.6651914291881, + [16]=3.9269908169872, + [17]=4.1887902047864, + [18]=4.4505895925855, + [19]=4.7123889803847, + [20]=4.9741883681838, + [21]=5.235987755983, + [22]=5.4977871437821, + [23]=5.7595865315813, + [24]=6.0213859193804, + [25]=6.2831853071796 + }, + [9]={ + [1]=0, + [2]=0.087266462599716, + [3]=0.17453292519943, + [4]=0.26179938779915, + [5]=0.34906585039887, + [6]=0.43633231299858, + [7]=0.5235987755983, + [8]=0.61086523819802, + [9]=0.69813170079773, + [10]=0.78539816339745, + [11]=0.87266462599716, + [12]=0.95993108859688, + [13]=1.0471975511966, + [14]=1.1344640137963, + [15]=1.221730476396, + [16]=1.3089969389957, + [17]=1.3962634015955, + [18]=1.4835298641952, + [19]=1.5707963267949, + [20]=1.6580627893946, + [21]=1.7453292519943, + [22]=1.832595714594, + [23]=1.9198621771938, + [24]=2.0071286397935, + [25]=2.0943951023932, + [26]=2.1816615649929, + [27]=2.2689280275926, + [28]=2.3561944901923, + [29]=2.4434609527921, + [30]=2.5307274153918, + [31]=2.6179938779915, + [32]=2.7052603405912, + [33]=2.7925268031909, + [34]=2.8797932657906, + [35]=2.9670597283904, + [36]=3.0543261909901, + [37]=3.1415926535898, + [38]=3.2288591161895, + [39]=3.3161255787892, + [40]=3.4033920413889, + [41]=3.4906585039887, + [42]=3.5779249665884, + [43]=3.6651914291881, + [44]=3.7524578917878, + [45]=3.8397243543875, + [46]=3.9269908169872, + [47]=4.014257279587, + [48]=4.1015237421867, + [49]=4.1887902047864, + [50]=4.2760566673861, + [51]=4.3633231299858, + [52]=4.4505895925855, + [53]=4.5378560551853, + [54]=4.625122517785, + [55]=4.7123889803847, + [56]=4.7996554429844, + [57]=4.8869219055841, + [58]=4.9741883681838, + [59]=5.0614548307836, + [60]=5.1487212933833, + [61]=5.235987755983, + [62]=5.3232542185827, + [63]=5.4105206811824, + [64]=5.4977871437821, + [65]=5.5850536063819, + [66]=5.6723200689816, + [67]=5.7595865315813, + [68]=5.846852994181, + [69]=5.9341194567807, + [70]=6.0213859193804, + [71]=6.1086523819802, + [72]=6.1959188445799, + [73]=6.2831853071796 + }, + [10]={ + [1]=0, + [2]=0.043633231299858, + [3]=0.087266462599716, + [4]=0.13089969389957, + [5]=0.17453292519943, + [6]=0.21816615649929, + [7]=0.26179938779915, + [8]=0.30543261909901, + [9]=0.34906585039887, + [10]=0.39269908169872, + [11]=0.43633231299858, + [12]=0.47996554429844, + [13]=0.5235987755983, + [14]=0.56723200689816, + [15]=0.61086523819802, + [16]=0.65449846949787, + [17]=0.69813170079773, + [18]=0.74176493209759, + [19]=0.78539816339745, + [20]=0.82903139469731, + [21]=0.87266462599716, + [22]=0.91629785729702, + [23]=0.95993108859688, + [24]=1.0035643198967, + [25]=1.0471975511966, + [26]=1.0908307824965, + [27]=1.1344640137963, + [28]=1.1780972450962, + [29]=1.221730476396, + [30]=1.2653637076959, + [31]=1.3089969389957, + [32]=1.3526301702956, + [33]=1.3962634015955, + [34]=1.4398966328953, + [35]=1.4835298641952, + [36]=1.527163095495, + [37]=1.5707963267949, + [38]=1.6144295580948, + [39]=1.6580627893946, + [40]=1.7016960206945, + [41]=1.7453292519943, + [42]=1.7889624832942, + [43]=1.832595714594, + [44]=1.8762289458939, + [45]=1.9198621771938, + [46]=1.9634954084936, + [47]=2.0071286397935, + [48]=2.0507618710933, + [49]=2.0943951023932, + [50]=2.1380283336931, + [51]=2.1816615649929, + [52]=2.2252947962928, + [53]=2.2689280275926, + [54]=2.3125612588925, + [55]=2.3561944901923, + [56]=2.3998277214922, + [57]=2.4434609527921, + [58]=2.4870941840919, + [59]=2.5307274153918, + [60]=2.5743606466916, + [61]=2.6179938779915, + [62]=2.6616271092914, + [63]=2.7052603405912, + [64]=2.7488935718911, + [65]=2.7925268031909, + [66]=2.8361600344908, + [67]=2.8797932657906, + [68]=2.9234264970905, + [69]=2.9670597283904, + [70]=3.0106929596902, + [71]=3.0543261909901, + [72]=3.0979594222899, + [73]=3.1415926535898, + [74]=3.1852258848897, + [75]=3.2288591161895, + [76]=3.2724923474894, + [77]=3.3161255787892, + [78]=3.3597588100891, + [79]=3.4033920413889, + [80]=3.4470252726888, + [81]=3.4906585039887, + [82]=3.5342917352885, + [83]=3.5779249665884, + [84]=3.6215581978882, + [85]=3.6651914291881, + [86]=3.708824660488, + [87]=3.7524578917878, + [88]=3.7960911230877, + [89]=3.8397243543875, + [90]=3.8833575856874, + [91]=3.9269908169872, + [92]=3.9706240482871, + [93]=4.014257279587, + [94]=4.0578905108868, + [95]=4.1015237421867, + [96]=4.1451569734865, + [97]=4.1887902047864, + [98]=4.2324234360862, + [99]=4.2760566673861, + [100]=4.319689898686, + [101]=4.3633231299858, + [102]=4.4069563612857, + [103]=4.4505895925855, + [104]=4.4942228238854, + [105]=4.5378560551853, + [106]=4.5814892864851, + [107]=4.625122517785, + [108]=4.6687557490848, + [109]=4.7123889803847, + [110]=4.7560222116845, + [111]=4.7996554429844, + [112]=4.8432886742843, + [113]=4.8869219055841, + [114]=4.930555136884, + [115]=4.9741883681838, + [116]=5.0178215994837, + [117]=5.0614548307836, + [118]=5.1050880620834, + [119]=5.1487212933833, + [120]=5.1923545246831, + [121]=5.235987755983, + [122]=5.2796209872828, + [123]=5.3232542185827, + [124]=5.3668874498826, + [125]=5.4105206811824, + [126]=5.4541539124823, + [127]=5.4977871437821, + [128]=5.541420375082, + [129]=5.5850536063819, + [130]=5.6286868376817, + [131]=5.6723200689816, + [132]=5.7159533002814, + [133]=5.7595865315813, + [134]=5.8032197628811, + [135]=5.846852994181, + [136]=5.8904862254809, + [137]=5.9341194567807, + [138]=5.9777526880806, + [139]=6.0213859193804, + [140]=6.0650191506803, + [141]=6.1086523819802, + [142]=6.15228561328, + [143]=6.1959188445799, + [144]=6.2395520758797, + [145]=6.2831853071796 + } + }, + orbitRadii={ + [1]=0, + [2]=82, + [3]=162, + [4]=335, + [5]=493, + [6]=662, + [7]=846, + [8]=251, + [9]=1080, + [10]=1322 + }, + skillsPerOrbit={ + [1]=1, + [2]=12, + [3]=24, + [4]=24, + [5]=72, + [6]=72, + [7]=72, + [8]=24, + [9]=72, + [10]=144 + } + }, + ddsCoords={ + }, + groups={ + [1]={ + nodes={ + [1]=42761 + }, + orbits={ + [1]=0 + }, + x=-15304.977987687, + y=-7077.2398075007 + }, + [2]={ + nodes={ + [1]=25092 + }, + orbits={ + [1]=0 + }, + x=-14965.477987687, + y=-7075.5498075007 + }, + [3]={ + nodes={ + }, + orbits={ + [1]=4 + }, + x=-22257, + y=-6513.5 + }, + [4]={ + nodes={ + [1]=11335 + }, + orbits={ + [1]=0 + }, + x=-14964.277987687, + y=-6594.1698075007 + }, + [5]={ + nodes={ + [1]=22541 + }, + orbits={ + [1]=0 + }, + x=-16119.08508937, + y=4438.4478075847 + }, + [6]={ + nodes={ + [1]=5386 + }, + orbits={ + [1]=0 + }, + x=-16119.08508937, + y=4819.1478075847 + }, + [7]={ + nodes={ + [1]=15275 + }, + orbits={ + [1]=0 + }, + x=-14735.877987687, + y=-7075.5498075007 + }, + [8]={ + nodes={ + [1]=21284 + }, + orbits={ + [1]=0 + }, + x=-14735.877987687, + y=-6823.9798075007 + }, + [9]={ + nodes={ + [1]=57959 + }, + orbits={ + [1]=0 + }, + x=-15906.48508937, + y=4073.9178075847 + }, + [10]={ + nodes={ + [1]=14960 + }, + orbits={ + [1]=0 + }, + x=-15906.48508937, + y=4819.1478075847 + }, + [11]={ + nodes={ + [1]=5571 + }, + orbits={ + [1]=0 + }, + x=-14615.877987687, + y=-6148.0298075007 + }, + [12]={ + nodes={ + [1]=34313 + }, + orbits={ + [1]=0 + }, + x=-14615.877987687, + y=-7507.0898075007 + }, + [13]={ + nodes={ + [1]=56505 + }, + orbits={ + [1]=0 + }, + x=-14615.877987687, + y=-6937.0898075007 + }, + [14]={ + nodes={ + [1]=39659 + }, + orbits={ + [1]=0 + }, + x=-14615.877987687, + y=-6709.0198075007 + }, + [15]={ + nodes={ + [1]=60298 + }, + orbits={ + [1]=0 + }, + x=-15694.48508937, + y=4438.4478075847 + }, + [16]={ + nodes={ + [1]=47236 + }, + orbits={ + [1]=0 + }, + x=-15694.48508937, + y=4819.1478075847 + }, + [17]={ + nodes={ + [1]=47184 + }, + orbits={ + [1]=0 + }, + x=-15482.48508937, + y=4438.4478075847 + }, + [18]={ + nodes={ + [1]=20895 + }, + orbits={ + [1]=0 + }, + x=-15482.48508937, + y=4819.1478075847 + }, + [19]={ + nodes={ + [1]=64962 + }, + orbits={ + [1]=0 + }, + x=-15479.98508937, + y=5558.0678075847 + }, + [20]={ + nodes={ + [1]=110 + }, + orbits={ + [1]=0 + }, + x=-15422.88508937, + y=5718.0078075847 + }, + [21]={ + nodes={ + [1]=52374 + }, + orbits={ + [1]=0 + }, + x=-14144.777987687, + y=-7263.4298075007 + }, + [22]={ + nodes={ + [1]=30904 + }, + orbits={ + [1]=0 + }, + x=-14144.777987687, + y=-6823.9798075007 + }, + [23]={ + nodes={ + [1]=32905, + [2]=55135 + }, + orbits={ + }, + x=-14123.977987687, + y=-6819.8598075007 + }, + [24]={ + nodes={ + [1]=22908 + }, + orbits={ + [1]=0 + }, + x=-15325.08508937, + y=5867.8478075847 + }, + [25]={ + nodes={ + [1]=48537 + }, + orbits={ + [1]=0 + }, + x=-15270.48508937, + y=4438.4478075847 + }, + [26]={ + nodes={ + [1]=63401 + }, + orbits={ + [1]=0 + }, + x=-15270.38508937, + y=4073.9178075847 + }, + [27]={ + nodes={ + [1]=8525 + }, + orbits={ + [1]=0 + }, + x=-15190.18508937, + y=5992.6978075847 + }, + [28]={ + nodes={ + [1]=49380 + }, + orbits={ + [1]=0 + }, + x=-14606.841216069, + y=7334.0330236967 + }, + [29]={ + nodes={ + [1]=58704 + }, + orbits={ + [1]=0 + }, + x=-14606.841216069, + y=7697.0330236967 + }, + [30]={ + nodes={ + [1]=38769 + }, + orbits={ + [1]=0 + }, + x=-14606.841216069, + y=8060.0330236967 + }, + [31]={ + nodes={ + [1]=36659 + }, + orbits={ + [1]=0 + }, + x=-14539.741216069, + y=7083.8630236967 + }, + [32]={ + nodes={ + [1]=9997 + }, + orbits={ + [1]=0 + }, + x=-15031.58508937, + y=6079.4078075847 + }, + [33]={ + nodes={ + [1]=6127 + }, + orbits={ + [1]=0 + }, + x=-14450.041216069, + y=7505.7430236967 + }, + [34]={ + nodes={ + [1]=18585 + }, + orbits={ + [1]=0 + }, + x=-14450.041216069, + y=7918.8930236967 + }, + [35]={ + nodes={ + [1]=378 + }, + orbits={ + [1]=0 + }, + x=-13677.677987687, + y=-7508.0898075007 + }, + [36]={ + nodes={ + [1]=4197 + }, + orbits={ + [1]=0 + }, + x=-13677.677987687, + y=-6937.0898075007 + }, + [37]={ + nodes={ + [1]=37782 + }, + orbits={ + [1]=0 + }, + x=-13677.677987687, + y=-6709.0398075007 + }, + [38]={ + nodes={ + [1]=47190 + }, + orbits={ + [1]=0 + }, + x=-13677.677987687, + y=-6148.0298075007 + }, + [39]={ + nodes={ + [1]=13772 + }, + orbits={ + [1]=0 + }, + x=-14861.48508937, + y=6123.0278075847 + }, + [40]={ + nodes={ + [1]=40915 + }, + orbits={ + [1]=0 + }, + x=-14352.341216069, + y=7083.8230236967 + }, + [41]={ + nodes={ + [1]=5852 + }, + orbits={ + }, + x=-14787.68508937, + y=4798.4078075847 + }, + [42]={ + nodes={ + [1]=1994 + }, + orbits={ + [1]=0 + }, + x=-14285.441216069, + y=8598.0130236967 + }, + [43]={ + nodes={ + [1]=48682 + }, + orbits={ + [1]=0 + }, + x=-14285.341216069, + y=7334.0330236967 + }, + [44]={ + nodes={ + [1]=39411 + }, + orbits={ + [1]=0 + }, + x=-14285.341216069, + y=7697.0330236967 + }, + [45]={ + nodes={ + [1]=25935 + }, + orbits={ + [1]=0 + }, + x=-14285.341216069, + y=8423.8130236967 + }, + [46]={ + nodes={ + [1]=39365 + }, + orbits={ + [1]=0 + }, + x=-14284.641216069, + y=8060.0330236967 + }, + [47]={ + nodes={ + [1]=9988 + }, + orbits={ + [1]=0 + }, + x=-14769.68508937, + y=5458.4078075847 + }, + [48]={ + nodes={ + [1]=25438 + }, + orbits={ + [1]=0 + }, + x=-14678.28508937, + y=6123.0278075847 + }, + [49]={ + nodes={ + [1]=49340 + }, + orbits={ + [1]=0 + }, + x=-14510.98508937, + y=6079.4078075847 + }, + [50]={ + nodes={ + [1]=35535 + }, + orbits={ + [1]=0 + }, + x=-13664.110769014, + y=-9880.3720268302 + }, + [51]={ + nodes={ + [1]=33812 + }, + orbits={ + }, + x=-13880.241216069, + y=8004.3130236967 + }, + [52]={ + nodes={ + [1]=60913 + }, + orbits={ + [1]=0 + }, + x=-14353.18508937, + y=5992.6978075847 + }, + [53]={ + nodes={ + [1]=47097 + }, + orbits={ + [1]=0 + }, + x=-13831.541216069, + y=8677.0530236967 + }, + [54]={ + nodes={ + [1]=23005 + }, + orbits={ + [1]=0 + }, + x=-13827.741216069, + y=8346.6230236967 + }, + [55]={ + nodes={ + [1]=61039 + }, + orbits={ + [1]=0 + }, + x=-14229.18508937, + y=5867.8478075847 + }, + [56]={ + nodes={ + [1]=20195 + }, + orbits={ + [1]=0 + }, + x=-14136.98508937, + y=5718.0078075847 + }, + [57]={ + nodes={ + [1]=16276 + }, + orbits={ + [1]=0 + }, + x=-14062.58508937, + y=5558.0678075847 + }, + [58]={ + nodes={ + [1]=16204 + }, + orbits={ + [1]=0 + }, + x=-13233.310769014, + y=-9716.9520268302 + }, + [59]={ + nodes={ + [1]=10072 + }, + orbits={ + [1]=0 + }, + x=-13456.741216069, + y=8286.9330236967 + }, + [60]={ + nodes={ + [1]=52068 + }, + orbits={ + [1]=0 + }, + x=-13427.841216069, + y=8705.9430236967 + }, + [61]={ + nodes={ + }, + orbits={ + [1]=4 + }, + x=-19756.1, + y=-6783.25 + }, + [62]={ + nodes={ + [1]=42253 + }, + orbits={ + [1]=0 + }, + x=-12936.010769014, + y=-9284.4920268302 + }, + [63]={ + nodes={ + [1]=33824 + }, + orbits={ + [1]=0 + }, + x=-12936.010769014, + y=-8851.4920268302 + }, + [64]={ + nodes={ + [1]=54512 + }, + orbits={ + [1]=0 + }, + x=-12658.910769014, + y=-8617.4120268302 + }, + [65]={ + nodes={ + [1]=58646, + [2]=28022, + [3]=61722, + [4]=1855 + }, + orbits={ + }, + x=-12394.310769014, + y=-9283.8120268302 + }, + [66]={ + nodes={ + [1]=35762 + }, + orbits={ + [1]=0 + }, + x=-11956.210769014, + y=-9716.9520268302 + }, + [67]={ + nodes={ + [1]=35920 + }, + orbits={ + [1]=0 + }, + x=-11956.210769014, + y=-9241.1420268302 + }, + [68]={ + nodes={ + [1]=56933 + }, + orbits={ + [1]=0 + }, + x=-11956.210769014, + y=-8744.4820268302 + }, + [69]={ + nodes={ + [1]=24807 + }, + orbits={ + [1]=0 + }, + x=-12395.916965386, + y=9837.1071603696 + }, + [70]={ + nodes={ + [1]=61983 + }, + orbits={ + [1]=0 + }, + x=-11751.610769014, + y=-9863.9320268302 + }, + [71]={ + nodes={ + [1]=46654 + }, + orbits={ + [1]=0 + }, + x=-11751.610769014, + y=-9304.2420268302 + }, + [72]={ + nodes={ + [1]=28745 + }, + orbits={ + [1]=0 + }, + x=-11486.510769014, + y=-10044.11202683 + }, + [73]={ + nodes={ + [1]=26063 + }, + orbits={ + [1]=0 + }, + x=-11483.310769014, + y=-9396.9020268302 + }, + [74]={ + nodes={ + [1]=62523 + }, + orbits={ + [1]=0 + }, + x=-11481.410769014, + y=-8744.5120268302 + }, + [75]={ + nodes={ + [1]=38014 + }, + orbits={ + [1]=0 + }, + x=-11999.016965386, + y=9614.2071603696 + }, + [76]={ + nodes={ + [1]=42275 + }, + orbits={ + [1]=0 + }, + x=-11821.116965386, + y=10122.99716037 + }, + [77]={ + nodes={ + [1]=3762, + [2]=59540, + [3]=30115, + [4]=60634, + [5]=35453, + [6]=13715, + [7]=19424, + [8]=27418, + [9]=51690, + [10]=29323, + [11]=32534 + }, + orbits={ + [1]=4 + }, + x=-11560.116965386, + y=10394.98716037 + }, + [78]={ + nodes={ + [1]=12000 + }, + orbits={ + [1]=0 + }, + x=-11494.616965386, + y=11397.90716037 + }, + [79]={ + nodes={ + [1]=59372 + }, + orbits={ + [1]=0 + }, + x=-11454.316965386, + y=10756.75716037 + }, + [80]={ + nodes={ + [1]=56842 + }, + orbits={ + [1]=0 + }, + x=-11100.616965386, + y=11172.50716037 + }, + [81]={ + nodes={ + }, + orbits={ + [1]=2, + [2]=4 + }, + x=-17313.1, + y=-6714.12 + }, + [82]={ + nodes={ + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-16901.8, + y=-2885.56 + }, + [83]={ + nodes={ + }, + orbits={ + [1]=3 + }, + x=-16868.2, + y=9579.89 + }, + [84]={ + nodes={ + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-15691.8, + y=7553.92 + }, + [85]={ + nodes={ + }, + orbits={ + [1]=4 + }, + x=-14544.8, + y=9493.43 + }, + [86]={ + nodes={ + [1]=58058, + [2]=21218, + [3]=60708, + [4]=45226, + [5]=11666, + [6]=13950, + [7]=7066, + [8]=23932, + [9]=8423, + [10]=17894 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-12135.7, + y=-1230.15 + }, + [87]={ + nodes={ + [1]=47753 + }, + orbits={ + [1]=0 + }, + x=-11896.8, + y=-1926.84 + }, + [88]={ + nodes={ + [1]=36025, + [2]=57079, + [3]=44309, + [4]=44485, + [5]=829, + [6]=19966, + [7]=43385, + [8]=22221, + [9]=7553, + [10]=64139, + [11]=15842 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-11682.6, + y=-5712.79 + }, + [89]={ + nodes={ + [1]=18353, + [2]=42762, + [3]=11984, + [4]=20496, + [5]=3544, + [6]=19953, + [7]=50142, + [8]=58197, + [9]=35980 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-11664.2, + y=614.3 + }, + [90]={ + nodes={ + [1]=38320 + }, + orbits={ + [1]=0 + }, + x=-11504.9, + y=-1807.32 + }, + [91]={ + nodes={ + [1]=28201, + [2]=56174, + [3]=1887, + [4]=10713, + [5]=16615, + [6]=10636, + [7]=38697, + [8]=20391, + [9]=16947, + [10]=18713 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-11380.7, + y=-3346 + }, + [92]={ + nodes={ + [1]=32845, + [2]=23630, + [3]=64819, + [4]=31746, + [5]=51868, + [6]=19794, + [7]=17885, + [8]=11392 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=-11338.9, + y=-2050.8 + }, + [93]={ + nodes={ + [1]=65, + [2]=36504, + [3]=55260, + [4]=19751, + [5]=15698, + [6]=35618 + }, + orbits={ + [1]=2 + }, + x=-11081.7, + y=-622.39 + }, + [94]={ + nodes={ + [1]=28589, + [2]=7395, + [3]=38670, + [4]=30007, + [5]=12565, + [6]=3245, + [7]=30300, + [8]=3188, + [9]=46051 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3 + }, + x=-11072.2, + y=1430.79 + }, + [95]={ + nodes={ + [1]=55190 + }, + orbits={ + [1]=1 + }, + x=-10939.4, + y=88.4 + }, + [96]={ + nodes={ + [1]=41012 + }, + orbits={ + [1]=0 + }, + x=-10916.6, + y=-2156.56 + }, + [97]={ + nodes={ + [1]=24630 + }, + orbits={ + [1]=0 + }, + x=-10708.8, + y=2443.13 + }, + [98]={ + nodes={ + [1]=1200 + }, + orbits={ + [1]=4 + }, + x=-10682.8, + y=445.31 + }, + [99]={ + nodes={ + [1]=28982 + }, + orbits={ + [1]=0 + }, + x=-10667.7, + y=-1117.08 + }, + [100]={ + nodes={ + [1]=64489, + [2]=25162, + [3]=6952, + [4]=750 + }, + orbits={ + [1]=2 + }, + x=-10654.4, + y=2047.3 + }, + [101]={ + nodes={ + [1]=3348 + }, + orbits={ + [1]=0 + }, + x=-10650, + y=-3724.53 + }, + [102]={ + nodes={ + [1]=48314 + }, + orbits={ + [1]=0 + }, + x=-10650, + y=-3509.98 + }, + [103]={ + nodes={ + [1]=43941 + }, + orbits={ + [1]=0 + }, + x=-10648.1, + y=-3316.27 + }, + [104]={ + nodes={ + [1]=17348, + [2]=11433, + [3]=15522, + [4]=13893, + [5]=11275, + [6]=42390, + [7]=44753, + [8]=63608 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-10615.2, + y=3051.94 + }, + [105]={ + nodes={ + [1]=440 + }, + orbits={ + [1]=0 + }, + x=-10594.1, + y=-4757.69 + }, + [106]={ + nodes={ + [1]=14509, + [2]=589, + [3]=46399, + [4]=50820, + [5]=65472, + [6]=9323, + [7]=40395 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-10593.4, + y=-2769.62 + }, + [107]={ + nodes={ + [1]=65192, + [2]=33423, + [3]=15672, + [4]=6999, + [5]=59908, + [6]=36197, + [7]=27096, + [8]=45400, + [9]=63170, + [10]=13691 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-10575.7, + y=-6386.38 + }, + [108]={ + nodes={ + [1]=8850 + }, + orbits={ + [1]=0 + }, + x=-10520.3, + y=-3933.98 + }, + [109]={ + nodes={ + [1]=61896 + }, + orbits={ + [1]=0 + }, + x=-10520.3, + y=-3710.82 + }, + [110]={ + nodes={ + [1]=61393 + }, + orbits={ + [1]=0 + }, + x=-10448.6, + y=-3316.27 + }, + [111]={ + nodes={ + [1]=55897 + }, + orbits={ + [1]=0 + }, + x=-10443.8, + y=-4121.17 + }, + [112]={ + nodes={ + [1]=50767, + [2]=20289 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-10439.9, + y=-3500.92 + }, + [113]={ + nodes={ + [1]=14432 + }, + orbits={ + [1]=0 + }, + x=-10437.9, + y=-4316.54 + }, + [114]={ + nodes={ + [1]=20989, + [2]=42984, + [3]=21184, + [4]=20251 + }, + orbits={ + [1]=1, + [2]=3 + }, + x=-10401.1, + y=-377.95 + }, + [115]={ + nodes={ + [1]=41768 + }, + orbits={ + [1]=0 + }, + x=-10398.4, + y=-2166.4 + }, + [116]={ + nodes={ + [1]=17349, + [2]=5728, + [3]=23940, + [4]=14342, + [5]=49256, + [6]=14439, + [7]=58138, + [8]=46384, + [9]=33402, + [10]=58125, + [11]=6133, + [12]=10681, + [13]=27581, + [14]=50510 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=-10375, + y=-5305.09 + }, + [117]={ + nodes={ + [1]=55888 + }, + orbits={ + [1]=0 + }, + x=-10371.3, + y=-4590.02 + }, + [118]={ + nodes={ + [1]=53354 + }, + orbits={ + [1]=0 + }, + x=-10368.8, + y=-3710.82 + }, + [119]={ + nodes={ + [1]=33408 + }, + orbits={ + [1]=0 + }, + x=-10368.6, + y=-3933.98 + }, + [120]={ + nodes={ + [1]=30141 + }, + orbits={ + [1]=0 + }, + x=-10364.8, + y=5.97 + }, + [121]={ + nodes={ + [1]=59785 + }, + orbits={ + [1]=0 + }, + x=-10358.7, + y=2132.05 + }, + [122]={ + nodes={ + [1]=14511, + [2]=54999, + [3]=64900, + [4]=30780, + [5]=53261, + [6]=18207, + [7]=17112, + [8]=5410, + [9]=4331 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-10266.2, + y=5666.88 + }, + [123]={ + nodes={ + [1]=36250 + }, + orbits={ + [1]=0 + }, + x=-10252.9, + y=-3509.98 + }, + [124]={ + nodes={ + [1]=56368 + }, + orbits={ + [1]=0 + }, + x=-10251.2, + y=-3312.73 + }, + [125]={ + nodes={ + [1]=49214 + }, + orbits={ + [1]=0 + }, + x=-10248.8, + y=-3724.53 + }, + [126]={ + nodes={ + [1]=375, + [2]=12276, + [3]=14693, + [4]=13937, + [5]=13980, + [6]=17791, + [7]=526, + [8]=2645, + [9]=52829, + [10]=14832 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-10240.1, + y=4633.75 + }, + [127]={ + nodes={ + [1]=18684 + }, + orbits={ + [1]=0 + }, + x=-10198.3, + y=3732.13 + }, + [128]={ + nodes={ + [1]=18746 + }, + orbits={ + [1]=0 + }, + x=-10160.4, + y=-4757.69 + }, + [129]={ + nodes={ + [1]=51749 + }, + orbits={ + [1]=0 + }, + x=-10158.4, + y=296.7 + }, + [130]={ + nodes={ + [1]=29611 + }, + orbits={ + [1]=0 + }, + x=-10134.3, + y=-3151.93 + }, + [131]={ + nodes={ + [1]=33590 + }, + orbits={ + [1]=0 + }, + x=-10129, + y=5639.94 + }, + [132]={ + nodes={ + [1]=21291, + [2]=32836, + [3]=675, + [4]=13489, + [5]=47517 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-10100.7, + y=1717.72 + }, + [133]={ + nodes={ + [1]=11656, + [2]=9106, + [3]=53822, + [4]=54937 + }, + orbits={ + [1]=1 + }, + x=-10089.3, + y=1201.49 + }, + [134]={ + nodes={ + [1]=37484 + }, + orbits={ + [1]=0 + }, + x=-10073.8, + y=-2358.14 + }, + [135]={ + nodes={ + [1]=9352, + [2]=31295, + [3]=32071, + [4]=49111, + [5]=39190, + [6]=8800, + [7]=15427, + [8]=57379 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-10026.1, + y=-1117.08 + }, + [136]={ + nodes={ + [1]=27296 + }, + orbits={ + [1]=0 + }, + x=-10009.8, + y=3405.64 + }, + [137]={ + nodes={ + [1]=31554, + [2]=49929, + [3]=31757 + }, + orbits={ + }, + x=-9932.89, + y=-7295.29 + }, + [138]={ + nodes={ + [1]=51535, + [2]=18397, + [3]=55063, + [4]=8852, + [5]=4139 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-9927.8, + y=2362.11 + }, + [139]={ + nodes={ + [1]=9328 + }, + orbits={ + [1]=0 + }, + x=-9903.54, + y=-6537.44 + }, + [140]={ + nodes={ + [1]=58496 + }, + orbits={ + [1]=0 + }, + x=-9903.54, + y=-6355.19 + }, + [141]={ + nodes={ + [1]=39598, + [2]=3949, + [3]=28613, + [4]=15247, + [5]=46683 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-9851.18, + y=2995.92 + }, + [142]={ + nodes={ + [1]=1130, + [2]=50847, + [3]=33393, + [4]=42914 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-9825.21, + y=-3241.28 + }, + [143]={ + nodes={ + [1]=32474 + }, + orbits={ + [1]=0 + }, + x=-9791.13, + y=-4500.02 + }, + [144]={ + nodes={ + [1]=4442, + [2]=59886, + [3]=62313, + [4]=62034, + [5]=55931, + [6]=33939, + [7]=6872 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-9765.33, + y=710.67 + }, + [145]={ + nodes={ + [1]=53123, + [2]=43250, + [3]=34818, + [4]=22697, + [5]=8421, + [6]=35404, + [7]=5862, + [8]=54982 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-9735.55, + y=-2055.78 + }, + [146]={ + nodes={ + [1]=14026 + }, + orbits={ + [1]=0 + }, + x=-9717.96, + y=-6634.67 + }, + [147]={ + nodes={ + [1]=37187 + }, + orbits={ + [1]=0 + }, + x=-9717.96, + y=-6452.32 + }, + [148]={ + nodes={ + [1]=55152, + [2]=42710, + [3]=65287, + [4]=56996, + [5]=9568, + [6]=41186, + [7]=58117, + [8]=13839, + [9]=5580 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-9716.02, + y=6484.44 + }, + [149]={ + nodes={ + [1]=59777 + }, + orbits={ + [1]=0 + }, + x=-9701.92, + y=4489.54 + }, + [150]={ + nodes={ + [1]=62670, + [2]=41497, + [3]=30554, + [4]=21164, + [5]=18245, + [6]=10055 + }, + orbits={ + [1]=0 + }, + x=-9699.83, + y=-2798.91 + }, + [151]={ + nodes={ + [1]=917, + [2]=44069, + [3]=65160, + [4]=21670, + [5]=29358 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-9636.83, + y=3334.63 + }, + [152]={ + nodes={ + [1]=30553 + }, + orbits={ + [1]=0 + }, + x=-9621.33, + y=3036.16 + }, + [153]={ + nodes={ + [1]=30457, + [2]=13293, + [3]=54416, + [4]=19236, + [5]=60274 + }, + orbits={ + [1]=0 + }, + x=-9598.42, + y=-542.53 + }, + [154]={ + nodes={ + [1]=18448 + }, + orbits={ + [1]=0 + }, + x=-9598.42, + y=4 + }, + [155]={ + nodes={ + [1]=19563, + [2]=34782, + [3]=34490, + [4]=18972 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-9524.42, + y=-6101.02 + }, + [156]={ + nodes={ + [1]=47931 + }, + orbits={ + [1]=0 + }, + x=-9524.42, + y=-5501.21 + }, + [157]={ + nodes={ + [1]=36100 + }, + orbits={ + [1]=0 + }, + x=-9522.16, + y=-6739.15 + }, + [158]={ + nodes={ + [1]=63085 + }, + orbits={ + [1]=0 + }, + x=-9522.16, + y=-6562.27 + }, + [159]={ + nodes={ + [1]=31290, + [2]=37609, + [3]=60332, + [4]=32764, + [5]=21213 + }, + orbits={ + [1]=0 + }, + x=-9479.92, + y=-3960.99 + }, + [160]={ + nodes={ + [1]=61942 + }, + orbits={ + [1]=0 + }, + x=-9449.45, + y=-4442.32 + }, + [161]={ + nodes={ + [1]=53719 + }, + orbits={ + [1]=0 + }, + x=-9427.5, + y=5442.15 + }, + [162]={ + nodes={ + [1]=10362, + [2]=10830, + [3]=9163, + [4]=59589, + [5]=44952, + [6]=6153, + [7]=52659 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-9363.33, + y=4400.29 + }, + [163]={ + nodes={ + [1]=63678 + }, + orbits={ + [1]=0 + }, + x=-9318.59, + y=-6631.85 + }, + [164]={ + nodes={ + [1]=43460 + }, + orbits={ + [1]=0 + }, + x=-9318.59, + y=-6434.75 + }, + [165]={ + nodes={ + [1]=61847 + }, + orbits={ + [1]=0 + }, + x=-9265.01, + y=-2982.99 + }, + [166]={ + nodes={ + [1]=17587, + [2]=59039, + [3]=28223, + [4]=6100, + [5]=20963 + }, + orbits={ + [1]=1, + [2]=2, + [3]=4 + }, + x=-9247.14, + y=-875.7 + }, + [167]={ + nodes={ + [1]=29098, + [2]=32549, + [3]=10727, + [4]=56237, + [5]=43588, + [6]=61835, + [7]=1825 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-9224.21, + y=-4865.33 + }, + [168]={ + nodes={ + [1]=41935 + }, + orbits={ + [1]=0 + }, + x=-9155.13, + y=-6541.86 + }, + [169]={ + nodes={ + [1]=6735 + }, + orbits={ + [1]=0 + }, + x=-9155.13, + y=-6351.08 + }, + [170]={ + nodes={ + [1]=33203, + [2]=55033, + [3]=17059, + [4]=6874, + [5]=34940 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-9153.31, + y=-1318.15 + }, + [171]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-9079.06, + y=2754.99 + }, + [172]={ + nodes={ + [1]=65154, + [2]=2575, + [3]=56757, + [4]=11292 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-9064.75, + y=362.33 + }, + [173]={ + nodes={ + [1]=49370, + [2]=32148, + [3]=8535, + [4]=43443 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-9058.33, + y=-2717.44 + }, + [174]={ + nodes={ + [1]=6502 + }, + orbits={ + [1]=0 + }, + x=-9056.17, + y=-2715.81 + }, + [175]={ + nodes={ + [1]=41747 + }, + orbits={ + [1]=0 + }, + x=-9050.55, + y=-3180.38 + }, + [176]={ + nodes={ + [1]=53440, + [2]=52300, + [3]=11178, + [4]=62439, + [5]=57880, + [6]=11306, + [7]=6269, + [8]=45990, + [9]=39448, + [10]=24224 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-9040.02, + y=6723.44 + }, + [177]={ + nodes={ + [1]=33452, + [2]=57471, + [3]=53823, + [4]=23192, + [5]=21684, + [6]=1214, + [7]=42578, + [8]=52796, + [9]=10508, + [10]=30371, + [11]=27687 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-8945, + y=1954.01 + }, + [178]={ + nodes={ + [1]=11525, + [2]=64724, + [3]=53329, + [4]=53030, + [5]=30334, + [6]=9324, + [7]=43939, + [8]=56214, + [9]=48267 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-8860.46, + y=-5419.21 + }, + [179]={ + nodes={ + [1]=10824, + [2]=25648, + [3]=43077, + [4]=58894, + [5]=15825, + [6]=45736, + [7]=26592, + [8]=30393 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-8850.17, + y=-2069.46 + }, + [180]={ + nodes={ + [1]=65042, + [2]=60068, + [3]=55925, + [4]=37869, + [5]=28892, + [6]=13845, + [7]=28408, + [8]=21413, + [9]=37290 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3 + }, + x=-8776.24, + y=-545.92 + }, + [181]={ + nodes={ + [1]=61811, + [2]=44452, + [3]=21809, + [4]=19162, + [5]=34143, + [6]=36408, + [7]=15141 + }, + orbits={ + }, + x=-8734.51, + y=-7310.38 + }, + [182]={ + nodes={ + [1]=21387 + }, + orbits={ + [1]=0 + }, + x=-8724.91, + y=5036.5 + }, + [183]={ + nodes={ + [1]=51129, + [2]=26437, + [3]=15892 + }, + orbits={ + [1]=3 + }, + x=-8699.47, + y=5504.76 + }, + [184]={ + nodes={ + [1]=52 + }, + orbits={ + [1]=0 + }, + x=-8682.17, + y=-4609.88 + }, + [185]={ + nodes={ + [1]=39131 + }, + orbits={ + [1]=0 + }, + x=-8680.79, + y=-5014.13 + }, + [186]={ + nodes={ + [1]=47606, + [2]=28981, + [3]=34871, + [4]=27980, + [5]=270, + [6]=56219, + [7]=52764 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=-8664.77, + y=-6794.46 + }, + [187]={ + nodes={ + [1]=33722 + }, + orbits={ + [1]=0 + }, + x=-8664.77, + y=-6378.53 + }, + [188]={ + nodes={ + [1]=47173, + [2]=51832, + [3]=6514, + [4]=31373, + [5]=47722, + [6]=12418, + [7]=50561, + [8]=3988 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-8647.35, + y=4650.55 + }, + [189]={ + nodes={ + [1]=10100 + }, + orbits={ + [1]=0 + }, + x=-8622.21, + y=522.51 + }, + [190]={ + nodes={ + [1]=23307 + }, + orbits={ + [1]=0 + }, + x=-8621.47, + y=988.33 + }, + [191]={ + nodes={ + [1]=27082 + }, + orbits={ + [1]=0 + }, + x=-8618.25, + y=6301.67 + }, + [192]={ + nodes={ + [1]=63243, + [2]=48160, + [3]=13108, + [4]=49543, + [5]=37778, + [6]=24929 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-8606.47, + y=-3419.53 + }, + [193]={ + nodes={ + [1]=8460, + [2]=40328, + [3]=62200, + [4]=9528, + [5]=38053, + [6]=29762, + [7]=28564 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-8509.27, + y=-1418.16 + }, + [194]={ + nodes={ + [1]=47263 + }, + orbits={ + [1]=0 + }, + x=-8484.8, + y=9.7 + }, + [195]={ + nodes={ + [1]=51210 + }, + orbits={ + [1]=0 + }, + x=-8483, + y=-2227.56 + }, + [196]={ + nodes={ + [1]=61404, + [2]=38923, + [3]=44902, + [4]=61429, + [5]=511 + }, + orbits={ + [1]=0 + }, + x=-8468.97, + y=-2457.13 + }, + [197]={ + nodes={ + [1]=13482 + }, + orbits={ + [1]=0 + }, + x=-8394.02, + y=5599.53 + }, + [198]={ + nodes={ + [1]=22626, + [2]=45227, + [3]=30136 + }, + orbits={ + [1]=3 + }, + x=-8335.67, + y=5293.12 + }, + [199]={ + nodes={ + [1]=42111, + [2]=48717 + }, + orbits={ + [1]=3 + }, + x=-8316.62, + y=5282.9 + }, + [200]={ + nodes={ + [1]=25300 + }, + orbits={ + [1]=0 + }, + x=-8308.16, + y=504.36 + }, + [201]={ + nodes={ + [1]=55048 + }, + orbits={ + [1]=0 + }, + x=-8287.77, + y=-6378.53 + }, + [202]={ + nodes={ + [1]=25315, + [2]=25591, + [3]=19820, + [4]=5686 + }, + orbits={ + [1]=2 + }, + x=-8258.71, + y=2390.73 + }, + [203]={ + nodes={ + [1]=55635, + [2]=57089, + [3]=53893, + [4]=55450, + [5]=21784, + [6]=50118, + [7]=51807, + [8]=52440, + [9]=34443 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=-8253.67, + y=-5967.44 + }, + [204]={ + nodes={ + [1]=59945 + }, + orbits={ + [1]=0 + }, + x=-8233.08, + y=1737.23 + }, + [205]={ + nodes={ + [1]=12005, + [2]=28489, + [3]=56890, + [4]=33562, + [5]=41609, + [6]=31010, + [7]=27611, + [8]=27216, + [9]=30546, + [10]=57273, + [11]=60619, + [12]=26104, + [13]=43282, + [14]=55672, + [15]=32186, + [16]=541 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=-8221.2, + y=-7830.17 + }, + [206]={ + nodes={ + [1]=50392 + }, + orbits={ + [1]=0 + }, + x=-8217.79, + y=6324.33 + }, + [207]={ + nodes={ + [1]=38365, + [2]=61142, + [3]=34626, + [4]=46499 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8210.95, + y=2826.15 + }, + [208]={ + nodes={ + [1]=32349 + }, + orbits={ + [1]=0 + }, + x=-8206.04, + y=7089.12 + }, + [209]={ + nodes={ + [1]=61796, + [2]=38066, + [3]=8260, + [4]=10286 + }, + orbits={ + }, + x=-8193.04, + y=453.74 + }, + [210]={ + nodes={ + [1]=31779, + [2]=20791, + [3]=13777, + [4]=38532 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8166.54, + y=-4543.78 + }, + [211]={ + nodes={ + [1]=38707 + }, + orbits={ + [1]=0 + }, + x=-8161.98, + y=-1195.09 + }, + [212]={ + nodes={ + [1]=24855, + [2]=17138, + [3]=53308, + [4]=51903, + [5]=39347, + [6]=48014, + [7]=55058, + [8]=63790 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-8158.65, + y=3447.68 + }, + [213]={ + nodes={ + [1]=11741 + }, + orbits={ + [1]=3 + }, + x=-8149.73, + y=-4707.52 + }, + [214]={ + nodes={ + [1]=41821 + }, + orbits={ + [1]=0 + }, + x=-8141.21, + y=7641.73 + }, + [215]={ + nodes={ + [1]=24801, + [2]=34305, + [3]=40736, + [4]=8171, + [5]=45162, + [6]=63031, + [7]=15606, + [8]=31545 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=-8131.61, + y=7618.79 + }, + [216]={ + nodes={ + [1]=52220, + [2]=60064, + [3]=3027, + [4]=54228, + [5]=64240 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8115.09, + y=-155.25 + }, + [217]={ + nodes={ + [1]=61409, + [2]=24646 + }, + orbits={ + [1]=3 + }, + x=-8111.51, + y=6128.94 + }, + [218]={ + nodes={ + [1]=59061, + [2]=2672, + [3]=8509, + [4]=45569, + [5]=55596, + [6]=28267, + [7]=35085 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-8101.59, + y=-5348.53 + }, + [219]={ + nodes={ + [1]=8272 + }, + orbits={ + [1]=0 + }, + x=-1028.4702997297, + y=15926.48515451 + }, + [220]={ + nodes={ + [1]=21453 + }, + orbits={ + [1]=0 + }, + x=-8091.65, + y=379.36 + }, + [221]={ + nodes={ + [1]=63114 + }, + orbits={ + [1]=3 + }, + x=-8046.92, + y=4659.56 + }, + [222]={ + nodes={ + [1]=13075 + }, + orbits={ + [1]=0 + }, + x=-8021.19, + y=6127.75 + }, + [223]={ + nodes={ + [1]=60916, + [2]=41701, + [3]=11027, + [4]=59433 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8013.96, + y=-4798.6 + }, + [224]={ + nodes={ + [1]=4140 + }, + orbits={ + [1]=0 + }, + x=-8008.17, + y=-7035.15 + }, + [225]={ + nodes={ + [1]=40105, + [2]=30258, + [3]=20558 + }, + orbits={ + [1]=2 + }, + x=-8001.4, + y=-2679.74 + }, + [226]={ + nodes={ + [1]=54849, + [2]=3723, + [3]=16413, + [4]=17092, + [5]=10484, + [6]=42660 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7994.15, + y=-746.38 + }, + [227]={ + nodes={ + [1]=49259, + [2]=25014, + [3]=62360, + [4]=36333, + [5]=50228, + [6]=20511, + [7]=42059, + [8]=53804, + [9]=56112 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-7989.53, + y=-3652.59 + }, + [228]={ + nodes={ + [1]=35048, + [2]=26176, + [3]=43650, + [4]=21070, + [5]=57388, + [6]=53386, + [7]=9698 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-7966.51, + y=4130.84 + }, + [229]={ + nodes={ + [1]=49734 + }, + orbits={ + [1]=0 + }, + x=-7956.51, + y=-1961.91 + }, + [230]={ + nodes={ + [1]=39102, + [2]=43486, + [3]=13228, + [4]=54289 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7915.44, + y=-3108.31 + }, + [231]={ + nodes={ + [1]=44017 + }, + orbits={ + [1]=0 + }, + x=-7860.53, + y=2931.66 + }, + [232]={ + nodes={ + [1]=41147, + [2]=23797, + [3]=31370, + [4]=32448 + }, + orbits={ + [1]=2 + }, + x=-7858.6, + y=6648.73 + }, + [233]={ + nodes={ + [1]=4621, + [2]=54297, + [3]=24993, + [4]=43721, + [5]=9554, + [6]=11160, + [7]=49769, + [8]=16332, + [9]=1628, + [10]=57202, + [11]=3681, + [12]=57386, + [13]=8723, + [14]=49258, + [15]=25678, + [16]=21374 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-7842.42, + y=-9697.42 + }, + [234]={ + nodes={ + [1]=3446 + }, + orbits={ + [1]=0 + }, + x=-7829.04, + y=7089.12 + }, + [235]={ + nodes={ + [1]=51737 + }, + orbits={ + [1]=0 + }, + x=-725.9702997297, + y=16707.18515451 + }, + [236]={ + nodes={ + [1]=4527 + }, + orbits={ + [1]=0 + }, + x=-7762.96, + y=2567.51 + }, + [237]={ + nodes={ + [1]=20115 + }, + orbits={ + [1]=0 + }, + x=-7745.48, + y=-2749.55 + }, + [238]={ + nodes={ + [1]=51812, + [2]=62757, + [3]=4673, + [4]=10047, + [5]=46741 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7735.13, + y=-1427.91 + }, + [239]={ + nodes={ + [1]=64807, + [2]=46674, + [3]=35921, + [4]=57405, + [5]=5642 + }, + orbits={ + [1]=2 + }, + x=-7728.69, + y=1935.05 + }, + [240]={ + nodes={ + [1]=58855 + }, + orbits={ + [1]=0 + }, + x=-7717.94, + y=1429.4 + }, + [241]={ + nodes={ + [1]=53527, + [2]=4985, + [3]=64525, + [4]=45327, + [5]=7204, + [6]=10251 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-7711.19, + y=1435.92 + }, + [242]={ + nodes={ + [1]=35369, + [2]=1459, + [3]=47252, + [4]=17282, + [5]=43579 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=-7642.03, + y=-4244.19 + }, + [243]={ + nodes={ + [1]=2946, + [2]=62518, + [3]=4547, + [4]=41414, + [5]=41363 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4 + }, + x=-7612.36, + y=8202.29 + }, + [244]={ + nodes={ + [1]=29197, + [2]=23436, + [3]=26300, + [4]=11428 + }, + orbits={ + [1]=2, + [2]=4 + }, + x=-7605.69, + y=-5466.48 + }, + [245]={ + nodes={ + [1]=15913, + [2]=7542, + [3]=36737, + [4]=61362, + [5]=28516, + [6]=32599 + }, + orbits={ + [1]=2 + }, + x=-7585.53, + y=-2160.61 + }, + [246]={ + nodes={ + [1]=17646 + }, + orbits={ + [1]=0 + }, + x=-515.8002997297, + y=15646.38515451 + }, + [247]={ + nodes={ + [1]=51821 + }, + orbits={ + [1]=0 + }, + x=-7574.92, + y=-3386.05 + }, + [248]={ + nodes={ + [1]=31159, + [2]=54962, + [3]=35849, + [4]=46017, + [5]=12382 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=-7523.03, + y=-4513.11 + }, + [249]={ + nodes={ + [1]=43653, + [2]=48171, + [3]=26518, + [4]=40803, + [5]=3218 + }, + orbits={ + [1]=4 + }, + x=-7479.31, + y=-755.12 + }, + [250]={ + nodes={ + [1]=58088, + [2]=16620, + [3]=41442, + [4]=21161, + [5]=64324, + [6]=10500, + [7]=26479, + [8]=6900, + [9]=45751 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-7472.17, + y=6094.06 + }, + [251]={ + nodes={ + [1]=9040 + }, + orbits={ + [1]=0 + }, + x=-7472.17, + y=6133.69 + }, + [252]={ + nodes={ + [1]=50616 + }, + orbits={ + [1]=0 + }, + x=-7470.27, + y=4966.83 + }, + [253]={ + nodes={ + [1]=46665 + }, + orbits={ + [1]=0 + }, + x=-7469.65, + y=409.35 + }, + [254]={ + nodes={ + [1]=18505, + [2]=18496, + [3]=18073, + [4]=36027, + [5]=49952, + [6]=45090, + [7]=13856 + }, + orbits={ + }, + x=-7463.54, + y=4960.9 + }, + [255]={ + nodes={ + [1]=24339, + [2]=7060, + [3]=28214, + [4]=1973, + [5]=8607, + [6]=53131 + }, + orbits={ + [1]=2 + }, + x=-7459.86, + y=371.69 + }, + [256]={ + nodes={ + [1]=39710 + }, + orbits={ + [1]=0 + }, + x=-7441.19, + y=-3885.12 + }, + [257]={ + nodes={ + [1]=52298 + }, + orbits={ + [1]=0 + }, + x=-7437.53, + y=3131.16 + }, + [258]={ + nodes={ + [1]=53216, + [2]=52126, + [3]=21885, + [4]=1352 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7437.53, + y=3624.13 + }, + [259]={ + nodes={ + [1]=45202 + }, + orbits={ + [1]=0 + }, + x=-7414.29, + y=-8107.33 + }, + [260]={ + nodes={ + [1]=34317, + [2]=8145, + [3]=2344, + [4]=23331, + [5]=30959, + [6]=31778, + [7]=12992, + [8]=16485, + [9]=296 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=-7383.29, + y=-7035.15 + }, + [261]={ + nodes={ + [1]=58295 + }, + orbits={ + [1]=2 + }, + x=-7366.84, + y=85 + }, + [262]={ + nodes={ + [1]=47242, + [2]=34493, + [3]=48565, + [4]=23078, + [5]=65328, + [6]=54964, + [7]=49593, + [8]=4725, + [9]=17229 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-7350.17, + y=-6377.15 + }, + [263]={ + nodes={ + [1]=26196 + }, + orbits={ + [1]=0 + }, + x=-7344.38, + y=-4246.42 + }, + [264]={ + nodes={ + [1]=40117, + [2]=31848, + [3]=1286, + [4]=21089, + [5]=17903, + [6]=54701, + [7]=64023 + }, + orbits={ + [1]=0 + }, + x=-7296.92, + y=2335.67 + }, + [265]={ + nodes={ + [1]=24430, + [2]=47191, + [3]=3601, + [4]=8554, + [5]=63037 + }, + orbits={ + [1]=4 + }, + x=-7251.15, + y=-371.1 + }, + [266]={ + nodes={ + [1]=50629 + }, + orbits={ + [1]=0 + }, + x=-7241.96, + y=-651.55 + }, + [267]={ + nodes={ + [1]=44298 + }, + orbits={ + [1]=0 + }, + x=-7240.77, + y=-656.16 + }, + [268]={ + nodes={ + [1]=17725, + [2]=24420, + [3]=33829, + [4]=18737, + [5]=9221, + [6]=9442, + [7]=37260, + [8]=30395 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=-7188.4, + y=-2426.53 + }, + [269]={ + nodes={ + [1]=12232, + [2]=36556, + [3]=872, + [4]=1502, + [5]=11087, + [6]=42635 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7167.85, + y=-3642.67 + }, + [270]={ + nodes={ + [1]=28774, + [2]=17505, + [3]=52106, + [4]=2999, + [5]=44005, + [6]=10295, + [7]=27733 + }, + orbits={ + [1]=4 + }, + x=-7140.48, + y=-10437.4 + }, + [271]={ + nodes={ + [1]=35966, + [2]=41105, + [3]=38835, + [4]=4091, + [5]=38368, + [6]=54288, + [7]=44316 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=-7138.53, + y=-5046.81 + }, + [272]={ + nodes={ + [1]=11048, + [2]=47420, + [3]=53444, + [4]=9065, + [5]=752, + [6]=64653, + [7]=52676 + }, + orbits={ + [1]=1, + [2]=2, + [3]=4 + }, + x=-7123.17, + y=-8949.18 + }, + [273]={ + nodes={ + [1]=50062, + [2]=64357, + [3]=6416, + [4]=506, + [5]=37641 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7080.06, + y=-3066.48 + }, + [274]={ + nodes={ + [1]=23930, + [2]=30662, + [3]=45383, + [4]=26291, + [5]=46024 + }, + orbits={ + [1]=4 + }, + x=-7073.34, + y=-821.89 + }, + [275]={ + nodes={ + [1]=65509, + [2]=41384, + [3]=51672, + [4]=31955 + }, + orbits={ + [1]=3 + }, + x=-7070.17, + y=-3075.76 + }, + [276]={ + nodes={ + [1]=59093 + }, + orbits={ + [1]=0 + }, + x=-7050.15, + y=-8009.76 + }, + [277]={ + nodes={ + [1]=61973, + [2]=38601, + [3]=43131, + [4]=40719, + [5]=61897, + [6]=34501, + [7]=7120 + }, + orbits={ + }, + x=22.379700270301, + y=15546.78515451 + }, + [278]={ + nodes={ + [1]=25172 + }, + orbits={ + [1]=0 + }, + x=22.379700270301, + y=16596.08515451 + }, + [279]={ + nodes={ + [1]=46535 + }, + orbits={ + [1]=0 + }, + x=26.729700270301, + y=15646.38515451 + }, + [280]={ + nodes={ + [1]=32559 + }, + orbits={ + [1]=0 + }, + x=26.729700270301, + y=15948.28515451 + }, + [281]={ + nodes={ + [1]=3704 + }, + orbits={ + [1]=0 + }, + x=26.729700270301, + y=16229.18515451 + }, + [282]={ + nodes={ + [1]=52993, + [2]=9414, + [3]=32768, + [4]=8107, + [5]=18081, + [6]=14980 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-7038.4, + y=-1699.91 + }, + [283]={ + nodes={ + [1]=25229, + [2]=7972, + [3]=21390, + [4]=5663 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7025.42, + y=7409.4 + }, + [284]={ + nodes={ + [1]=62498 + }, + orbits={ + [1]=0 + }, + x=-7025.42, + y=7906.98 + }, + [285]={ + nodes={ + [1]=12255, + [2]=989, + [3]=26416, + [4]=27740, + [5]=35792 + }, + orbits={ + [1]=2 + }, + x=-7025.42, + y=8507.21 + }, + [286]={ + nodes={ + [1]=45632, + [2]=25503, + [3]=27068, + [4]=35831, + [5]=27388, + [6]=28578, + [7]=904, + [8]=24551 + }, + orbits={ + [1]=0 + }, + x=-6938.5, + y=-5539.42 + }, + [287]={ + nodes={ + [1]=26725 + }, + orbits={ + [1]=0 + }, + x=-6934.34, + y=4002.72 + }, + [288]={ + nodes={ + [1]=31805, + [2]=44461, + [3]=54998, + [4]=29041, + [5]=31388, + [6]=51394, + [7]=29993 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-6908.33, + y=2821.11 + }, + [289]={ + nodes={ + [1]=43778, + [2]=36894, + [3]=17330, + [4]=3698, + [5]=61938, + [6]=14515, + [7]=61927, + [8]=33137 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-6902.9, + y=6655.38 + }, + [290]={ + nodes={ + [1]=21568 + }, + orbits={ + [1]=0 + }, + x=-6880.96, + y=-4712.38 + }, + [291]={ + nodes={ + [1]=1170, + [2]=53089, + [3]=16626, + [4]=64443, + [5]=41126, + [6]=10474, + [7]=53785, + [8]=9918, + [9]=62023 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-6862.15, + y=988.33 + }, + [292]={ + nodes={ + [1]=21127, + [2]=35974, + [3]=51105, + [4]=5398, + [5]=22484, + [6]=51820, + [7]=38124, + [8]=6355, + [9]=14110, + [10]=48979 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=-6849.4, + y=-7455.59 + }, + [293]={ + nodes={ + [1]=48935, + [2]=61367, + [3]=64239, + [4]=2733 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-6846.57, + y=-239.39 + }, + [294]={ + nodes={ + [1]=16249 + }, + orbits={ + [1]=0 + }, + x=2206.9487817384, + y=15163.083506955 + }, + [295]={ + nodes={ + [1]=50757, + [2]=62303, + [3]=33045, + [4]=59938 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-6813.53, + y=-3551.71 + }, + [296]={ + nodes={ + [1]=40511, + [2]=58368, + [3]=29985, + [4]=61113, + [5]=53910, + [6]=9212 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=-6753.23, + y=-6208.67 + }, + [297]={ + nodes={ + [1]=25031, + [2]=17999, + [3]=63979, + [4]=9750, + [5]=1169, + [6]=42026, + [7]=63813 + }, + orbits={ + [1]=0 + }, + x=-6714.29, + y=9037.67 + }, + [298]={ + nodes={ + [1]=11464, + [2]=27405, + [3]=30781, + [4]=63772, + [5]=37888, + [6]=29663 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-6663.73, + y=-1193.34 + }, + [299]={ + nodes={ + [1]=5800, + [2]=45075, + [3]=43149, + [4]=43507, + [5]=40292 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-6629.67, + y=5303.33 + }, + [300]={ + nodes={ + [1]=32560 + }, + orbits={ + [1]=0 + }, + x=2418.4487817384, + y=15529.383506955 + }, + [301]={ + nodes={ + [1]=45354, + [2]=64948, + [3]=48264, + [4]=12964 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6563.83, + y=-4540.94 + }, + [302]={ + nodes={ + [1]=6935 + }, + orbits={ + [1]=0 + }, + x=560.5497002703, + y=15646.38515451 + }, + [303]={ + nodes={ + [1]=10371 + }, + orbits={ + [1]=0 + }, + x=2527.9287817384, + y=15120.783506955 + }, + [304]={ + nodes={ + [1]=11248 + }, + orbits={ + [1]=0 + }, + x=-6473.32, + y=-5120.01 + }, + [305]={ + nodes={ + [1]=53921, + [2]=40596, + [3]=58838 + }, + orbits={ + }, + x=-6456.61, + y=5137.09 + }, + [306]={ + nodes={ + [1]=22975 + }, + orbits={ + [1]=0 + }, + x=-6409.48, + y=4911.79 + }, + [307]={ + nodes={ + [1]=15044 + }, + orbits={ + [1]=0 + }, + x=2629.9487817384, + y=15895.683506955 + }, + [308]={ + nodes={ + [1]=22270, + [2]=1144, + [3]=12471, + [4]=19942, + [5]=42070, + [6]=26148 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6401.88, + y=-5623.51 + }, + [309]={ + nodes={ + [1]=21861, + [2]=52807, + [3]=61836, + [4]=60551, + [5]=65243, + [6]=46421 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6391.25, + y=-308.27 + }, + [310]={ + nodes={ + [1]=38596 + }, + orbits={ + [1]=0 + }, + x=-6378, + y=-8168.88 + }, + [311]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-6370.88, + y=-1832.43 + }, + [312]={ + nodes={ + [1]=43711, + [2]=5544, + [3]=14459 + }, + orbits={ + [1]=2 + }, + x=-6370.69, + y=420.58 + }, + [313]={ + nodes={ + [1]=38921, + [2]=49023, + [3]=49198, + [4]=12817, + [5]=22967 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-6353.65, + y=4501.4 + }, + [314]={ + nodes={ + [1]=34187, + [2]=20848, + [3]=32239, + [4]=16721, + [5]=9009, + [6]=7128, + [7]=18270, + [8]=45874 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-6348.3, + y=-6484.17 + }, + [315]={ + nodes={ + [1]=18678 + }, + orbits={ + [1]=0 + }, + x=2726.8332494483, + y=-16520.161971397 + }, + [316]={ + nodes={ + [1]=63002 + }, + orbits={ + [1]=0 + }, + x=2726.8332494483, + y=-14316.361971397 + }, + [317]={ + nodes={ + [1]=42845 + }, + orbits={ + [1]=0 + }, + x=2739.4287817384, + y=15487.083506955 + }, + [318]={ + nodes={ + [1]=20830 + }, + orbits={ + [1]=0 + }, + x=799.8397002703, + y=16707.18515451 + }, + [319]={ + nodes={ + [1]=46380, + [2]=21327, + [3]=56876, + [4]=1104 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6249.06, + y=-4790.96 + }, + [320]={ + nodes={ + [1]=32777, + [2]=17625, + [3]=59710, + [4]=21567, + [5]=18822, + [6]=10873, + [7]=52618, + [8]=47790 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-6239.27, + y=-3222.72 + }, + [321]={ + nodes={ + [1]=39621, + [2]=14176, + [3]=18004, + [4]=8881 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-6234.38, + y=3368.19 + }, + [322]={ + nodes={ + [1]=11014, + [2]=16784, + [3]=26339, + [4]=62609, + [5]=18419, + [6]=25312, + [7]=24259, + [8]=23667, + [9]=64405, + [10]=31650, + [11]=16051, + [12]=31017 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3 + }, + x=-6210.4, + y=7289.19 + }, + [323]={ + nodes={ + [1]=51561 + }, + orbits={ + [1]=0 + }, + x=-6210.4, + y=8758.64 + }, + [324]={ + nodes={ + [1]=23382 + }, + orbits={ + [1]=0 + }, + x=-6208.88, + y=-8867.25 + }, + [325]={ + nodes={ + [1]=19674 + }, + orbits={ + [1]=3 + }, + x=-6203.21, + y=3942.14 + }, + [326]={ + nodes={ + [1]=10731 + }, + orbits={ + [1]=0 + }, + x=2828.7532494483, + y=-16082.561971397 + }, + [327]={ + nodes={ + [1]=27439 + }, + orbits={ + [1]=0 + }, + x=-6186.82, + y=5297.48 + }, + [328]={ + nodes={ + [1]=11786, + [2]=7716, + [3]=29447, + [4]=18157 + }, + orbits={ + [1]=2 + }, + x=-6167.94, + y=9255.09 + }, + [329]={ + nodes={ + [1]=29162 + }, + orbits={ + [1]=0 + }, + x=2869.6587817384, + y=16135.383506955 + }, + [330]={ + nodes={ + [1]=8982, + [2]=58926, + [3]=64572, + [4]=14952, + [5]=21985, + [6]=48925, + [7]=54887 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-6160.01, + y=-9509.97 + }, + [331]={ + nodes={ + [1]=35408, + [2]=24767 + }, + orbits={ + [1]=2 + }, + x=-6152.27, + y=-8668.35 + }, + [332]={ + nodes={ + [1]=31925 + }, + orbits={ + [1]=0 + }, + x=-6148.94, + y=-8372.25 + }, + [333]={ + nodes={ + [1]=3363, + [2]=38433, + [3]=4970, + [4]=23195, + [5]=55375, + [6]=62748 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6116.54, + y=-6010.78 + }, + [334]={ + nodes={ + [1]=41493 + }, + orbits={ + [1]=0 + }, + x=-6116.29, + y=3951.76 + }, + [335]={ + nodes={ + [1]=41180, + [2]=6222, + [3]=17260, + [4]=61703, + [5]=9037, + [6]=57608, + [7]=32353, + [8]=65189 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-6051.67, + y=-646.18 + }, + [336]={ + nodes={ + [1]=29126, + [2]=28770, + [3]=479 + }, + orbits={ + [1]=0 + }, + x=-6036.75, + y=-1514.07 + }, + [337]={ + nodes={ + [1]=21017, + [2]=26969, + [3]=16861, + [4]=55789, + [5]=41665, + [6]=27303, + [7]=50562, + [8]=43142 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-6026.21, + y=1197.89 + }, + [338]={ + nodes={ + [1]=14654 + }, + orbits={ + [1]=0 + }, + x=-6014.13, + y=4 + }, + [339]={ + nodes={ + [1]=54838 + }, + orbits={ + [1]=0 + }, + x=3024.1887817384, + y=14820.983506955 + }, + [340]={ + nodes={ + [1]=4245 + }, + orbits={ + [1]=0 + }, + x=3024.1887817384, + y=15243.983506955 + }, + [341]={ + nodes={ + [1]=44746 + }, + orbits={ + [1]=0 + }, + x=3024.1887817384, + y=15666.983506955 + }, + [342]={ + nodes={ + [1]=28153 + }, + orbits={ + [1]=0 + }, + x=3040.8032494483, + y=-15421.161971397 + }, + [343]={ + nodes={ + [1]=35977, + [2]=38130, + [3]=53194, + [4]=35876, + [5]=27540, + [6]=62216, + [7]=26070, + [8]=62973 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-5982.73, + y=2748.83 + }, + [344]={ + nodes={ + [1]=57703 + }, + orbits={ + [1]=0 + }, + x=-5982.73, + y=3453.31 + }, + [345]={ + nodes={ + [1]=37078 + }, + orbits={ + [1]=0 + }, + x=1106.1997002703, + y=15926.48515451 + }, + [346]={ + nodes={ + [1]=56342 + }, + orbits={ + [1]=0 + }, + x=-5952.13, + y=8688.45 + }, + [347]={ + nodes={ + [1]=7341 + }, + orbits={ + [1]=0 + }, + x=-5946.57, + y=8472.91 + }, + [348]={ + nodes={ + [1]=49938 + }, + orbits={ + [1]=0 + }, + x=-5945.28, + y=-3432.51 + }, + [349]={ + nodes={ + [1]=46522 + }, + orbits={ + [1]=0 + }, + x=3111.9287817384, + y=15994.383506955 + }, + [350]={ + nodes={ + [1]=50253 + }, + orbits={ + [1]=0 + }, + x=-5918.9, + y=4065.73 + }, + [351]={ + nodes={ + [1]=26638 + }, + orbits={ + [1]=0 + }, + x=3107.4532494483, + y=-14316.361971397 + }, + [352]={ + nodes={ + [1]=36474 + }, + orbits={ + [1]=0 + }, + x=-5914.3, + y=-8171.11 + }, + [353]={ + nodes={ + [1]=64318, + [2]=5088, + [3]=55101, + [4]=43893, + [5]=26739, + [6]=61063, + [7]=38535, + [8]=7777, + [9]=58016, + [10]=22873, + [11]=16596, + [12]=49537, + [13]=42205 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-5912.67, + y=-7670.09 + }, + [354]={ + nodes={ + [1]=23879, + [2]=51743, + [3]=42452, + [4]=57617, + [5]=41620, + [6]=35417, + [7]=57921, + [8]=16506, + [9]=14996, + [10]=37509 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-5885.4, + y=-2365.38 + }, + [355]={ + nodes={ + [1]=44872 + }, + orbits={ + [1]=0 + }, + x=-5846.29, + y=-5740.53 + }, + [356]={ + nodes={ + [1]=62948 + }, + orbits={ + [1]=0 + }, + x=-5841.98, + y=-6866.01 + }, + [357]={ + nodes={ + [1]=51795, + [2]=32271, + [3]=54311, + [4]=28482, + [5]=53632, + [6]=19846 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-5794.96, + y=-3968.54 + }, + [358]={ + nodes={ + [1]=42035, + [2]=10987, + [3]=50219, + [4]=54194 + }, + orbits={ + [1]=2 + }, + x=3230.3932494483, + y=-16146.861971397 + }, + [359]={ + nodes={ + [1]=22147 + }, + orbits={ + }, + x=3230.3932494483, + y=-15207.261971397 + }, + [360]={ + nodes={ + [1]=36252 + }, + orbits={ + }, + x=3252.2087817384, + y=15678.983506955 + }, + [361]={ + nodes={ + [1]=25890, + [2]=26863, + [3]=54378, + [4]=58198 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5772.9, + y=-8770.8 + }, + [362]={ + nodes={ + [1]=43128 + }, + orbits={ + [1]=4 + }, + x=3294.1632494483, + y=-16066.861971397 + }, + [363]={ + nodes={ + [1]=40377, + [2]=7554, + [3]=23039, + [4]=64770, + [5]=46318, + [6]=32964, + [7]=34617 + }, + orbits={ + [1]=3 + }, + x=-5724.5, + y=-6743.51 + }, + [364]={ + nodes={ + [1]=8600 + }, + orbits={ + [1]=0 + }, + x=-5721.96, + y=6102.63 + }, + [365]={ + nodes={ + [1]=32952 + }, + orbits={ + [1]=0 + }, + x=-4412.100248397, + y=15102.654685813 + }, + [366]={ + nodes={ + [1]=61471, + [2]=61977, + [3]=15580, + [4]=49153 + }, + orbits={ + [1]=4 + }, + x=-5699.67, + y=-4002.92 + }, + [367]={ + nodes={ + [1]=62015, + [2]=7668, + [3]=21982, + [4]=47371 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5694.65, + y=5052.28 + }, + [368]={ + nodes={ + [1]=64870, + [2]=34090, + [3]=14655, + [4]=372, + [5]=54340 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-5677.8, + y=5511.25 + }, + [369]={ + nodes={ + [1]=58747 + }, + orbits={ + [1]=0 + }, + x=3370.2432494483, + y=-14315.961971397 + }, + [370]={ + nodes={ + [1]=54892 + }, + orbits={ + [1]=0 + }, + x=3392.5287817384, + y=15994.283506955 + }, + [371]={ + nodes={ + [1]=3605 + }, + orbits={ + [1]=0 + }, + x=3402.7732494483, + y=-15421.161971397 + }, + [372]={ + nodes={ + [1]=37397 + }, + orbits={ + [1]=0 + }, + x=-4302.980248397, + y=14913.654685813 + }, + [373]={ + nodes={ + [1]=60287 + }, + orbits={ + [1]=0 + }, + x=-4302.980248397, + y=15039.654685813 + }, + [374]={ + nodes={ + [1]=7960 + }, + orbits={ + [1]=1 + }, + x=-5597.85, + y=-9484.56 + }, + [375]={ + nodes={ + [1]=40550, + [2]=46205, + [3]=41615, + [4]=49192, + [5]=44787, + [6]=43396, + [7]=10534, + [8]=33209, + [9]=2174, + [10]=51683, + [11]=19249 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-5585.44, + y=-521.46 + }, + [376]={ + nodes={ + [1]=33244, + [2]=52373, + [3]=16347, + [4]=52556, + [5]=37276 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5585.08, + y=8844.88 + }, + [377]={ + nodes={ + [1]=32637 + }, + orbits={ + [1]=0 + }, + x=3480.4987817384, + y=14819.983506955 + }, + [378]={ + nodes={ + [1]=30151 + }, + orbits={ + [1]=0 + }, + x=3480.4987817384, + y=15242.983506955 + }, + [379]={ + nodes={ + [1]=44371 + }, + orbits={ + [1]=0 + }, + x=3480.4987817384, + y=15665.983506955 + }, + [380]={ + nodes={ + [1]=20303, + [2]=9908 + }, + orbits={ + [1]=2 + }, + x=-5535.94, + y=811.34 + }, + [381]={ + nodes={ + [1]=16311, + [2]=32600, + [3]=6304, + [4]=12125 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5532.01, + y=426.09 + }, + [382]={ + nodes={ + [1]=20350, + [2]=47006, + [3]=43174, + [4]=4948, + [5]=62785, + [6]=28542 + }, + orbits={ + [1]=1, + [2]=3 + }, + x=-5498.11, + y=8167.23 + }, + [383]={ + nodes={ + [1]=63259 + }, + orbits={ + [1]=0 + }, + x=-4193.870248397, + y=15102.654685813 + }, + [384]={ + nodes={ + [1]=55582 + }, + orbits={ + [1]=0 + }, + x=-4167.100248397, + y=15546.754685813 + }, + [385]={ + nodes={ + [1]=25482, + [2]=51702, + [3]=54485, + [4]=60620, + [5]=61472 + }, + orbits={ + [1]=0 + }, + x=-5457.8, + y=4362.34 + }, + [386]={ + nodes={ + [1]=64995, + [2]=51867, + [3]=17924 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-5443.28, + y=6845.42 + }, + [387]={ + nodes={ + [1]=27990 + }, + orbits={ + [1]=0 + }, + x=3593.7232494483, + y=-16317.861971397 + }, + [388]={ + nodes={ + [1]=761, + [2]=22133, + [3]=39857, + [4]=4663 + }, + orbits={ + [1]=0 + }, + x=-5431.35, + y=-1790.04 + }, + [389]={ + nodes={ + [1]=2491 + }, + orbits={ + [1]=1 + }, + x=-5399.53, + y=9533.46 + }, + [390]={ + nodes={ + [1]=762 + }, + orbits={ + [1]=0 + }, + x=3635.4587817384, + y=16134.683506955 + }, + [391]={ + nodes={ + [1]=49049 + }, + orbits={ + [1]=0 + }, + x=3628.0432494483, + y=-16082.561971397 + }, + [392]={ + nodes={ + [1]=14777, + [2]=37226, + [3]=4015, + [4]=47429, + [5]=9187, + [6]=59466 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-5387.75, + y=7424.52 + }, + [393]={ + nodes={ + [1]=14429 + }, + orbits={ + [1]=0 + }, + x=-4082.430248397, + y=14628.054685813 + }, + [394]={ + nodes={ + [1]=44783, + [2]=19277, + [3]=35171, + [4]=10029, + [5]=8660, + [6]=18846, + [7]=22949, + [8]=14113 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-5358.85, + y=-5492.92 + }, + [395]={ + nodes={ + [1]=8629 + }, + orbits={ + [1]=0 + }, + x=-5326.03, + y=2555.07 + }, + [396]={ + nodes={ + [1]=16084 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=2655.72 + }, + [397]={ + nodes={ + [1]=13474 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=2829.25 + }, + [398]={ + nodes={ + [1]=10602, + [2]=24871, + [3]=57552, + [4]=46696 + }, + orbits={ + [1]=4 + }, + x=-5314.13, + y=2922.83 + }, + [399]={ + nodes={ + [1]=54811 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=3067.3 + }, + [400]={ + nodes={ + [1]=34210 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=3397.64 + }, + [401]={ + nodes={ + [1]=25934, + [2]=6923, + [3]=1087, + [4]=64939, + [5]=30123, + [6]=26092, + [7]=52392 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-5314.13, + y=3520.75 + }, + [402]={ + nodes={ + [1]=20015 + }, + orbits={ + [1]=0 + }, + x=-5307.75, + y=7323.33 + }, + [403]={ + nodes={ + [1]=20499, + [2]=34327, + [3]=32078, + [4]=16940, + [5]=25446, + [6]=2336, + [7]=63402, + [8]=29881 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=-5305.62, + y=-3550.7 + }, + [404]={ + nodes={ + [1]=1579 + }, + orbits={ + [1]=0 + }, + x=3733.3932494483, + y=-16527.261971397 + }, + [405]={ + nodes={ + [1]=32856 + }, + orbits={ + [1]=0 + }, + x=3733.3932494483, + y=-14315.961971397 + }, + [406]={ + nodes={ + [1]=12054 + }, + orbits={ + [1]=0 + }, + x=3775.7387817384, + y=16377.683506955 + }, + [407]={ + nodes={ + [1]=45248 + }, + orbits={ + [1]=0 + }, + x=-3946.560248397, + y=15135.154685813 + }, + [408]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-5238.15, + y=5102.77 + }, + [409]={ + nodes={ + [1]=44406, + [2]=63451, + [3]=57846 + }, + orbits={ + }, + x=-5197.82, + y=6507.02 + }, + [410]={ + nodes={ + [1]=63470, + [2]=50302, + [3]=16090 + }, + orbits={ + [1]=3 + }, + x=-5165.01, + y=833.39 + }, + [411]={ + nodes={ + [1]=61490 + }, + orbits={ + [1]=0 + }, + x=-5159.25, + y=6455.65 + }, + [412]={ + nodes={ + [1]=28304 + }, + orbits={ + [1]=0 + }, + x=-5153.8, + y=8943.84 + }, + [413]={ + nodes={ + [1]=8693, + [2]=35393, + [3]=23708, + [4]=3896, + [5]=56320 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5140.8, + y=745.05 + }, + [414]={ + nodes={ + [1]=11641 + }, + orbits={ + [1]=0 + }, + x=-3810.670248397, + y=15642.254685813 + }, + [415]={ + nodes={ + [1]=56703, + [2]=28839, + [3]=56762, + [4]=20032, + [5]=28680 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5107.55, + y=-6981.78 + }, + [416]={ + nodes={ + [1]=1988 + }, + orbits={ + [1]=0 + }, + x=3929.0387817384, + y=15965.183506955 + }, + [417]={ + nodes={ + [1]=28002 + }, + orbits={ + [1]=0 + }, + x=-5095.02, + y=-2941.61 + }, + [418]={ + nodes={ + [1]=2955, + [2]=28800, + [3]=55308, + [4]=38313, + [5]=30701 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5085.88, + y=-2565.83 + }, + [419]={ + nodes={ + [1]=51183, + [2]=10635, + [3]=45301, + [4]=31724, + [5]=2074 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5081.34, + y=-791.75 + }, + [420]={ + nodes={ + [1]=64042, + [2]=55422, + [3]=34415, + [4]=48387, + [5]=54640, + [6]=27900, + [7]=62376 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-5055.9, + y=-4742.69 + }, + [421]={ + nodes={ + [1]=18441, + [2]=34181, + [3]=45422 + }, + orbits={ + }, + x=-5039.48, + y=-3334.46 + }, + [422]={ + nodes={ + [1]=51369, + [2]=56061, + [3]=6544, + [4]=45503, + [5]=37746, + [6]=42604 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=-5034.82, + y=1520.57 + }, + [423]={ + nodes={ + [1]=34412, + [2]=25915, + [3]=8916, + [4]=20547, + [5]=33340, + [6]=51267, + [7]=11886 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-5003.08, + y=-1341.35 + }, + [424]={ + nodes={ + [1]=45918 + }, + orbits={ + [1]=0 + }, + x=-4999.75, + y=-8120.71 + }, + [425]={ + nodes={ + [1]=49547 + }, + orbits={ + [1]=0 + }, + x=-4997.46, + y=-3305.76 + }, + [426]={ + nodes={ + [1]=10305, + [2]=45586, + [3]=35011, + [4]=14761, + [5]=53187, + [6]=45215 + }, + orbits={ + [1]=2 + }, + x=-4989.69, + y=6154.73 + }, + [427]={ + nodes={ + [1]=57775 + }, + orbits={ + [1]=0 + }, + x=-4987.35, + y=6165.44 + }, + [428]={ + nodes={ + [1]=34882 + }, + orbits={ + [1]=0 + }, + x=-3674.790248397, + y=16149.354685813 + }, + [429]={ + nodes={ + [1]=46628 + }, + orbits={ + [1]=4 + }, + x=-4966.28, + y=-5972.03 + }, + [430]={ + nodes={ + [1]=37523 + }, + orbits={ + [1]=0 + }, + x=4069.3087817384, + y=16208.183506955 + }, + [431]={ + nodes={ + [1]=36880, + [2]=15628, + [3]=27626, + [4]=2244, + [5]=54067, + [6]=43036 + }, + orbits={ + [1]=4 + }, + x=-4903.32, + y=-8409.77 + }, + [432]={ + nodes={ + [1]=48552 + }, + orbits={ + [1]=0 + }, + x=-4902.61, + y=-8434.54 + }, + [433]={ + nodes={ + [1]=10452, + [2]=1878, + [3]=44213, + [4]=14328, + [5]=869, + [6]=18959, + [7]=55843 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4876.25, + y=-7652.71 + }, + [434]={ + nodes={ + [1]=34990, + [2]=25337, + [3]=50184, + [4]=46069, + [5]=6088, + [6]=54380 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4860.65, + y=-5812 + }, + [435]={ + nodes={ + [1]=47316, + [2]=2888, + [3]=21716, + [4]=8827, + [5]=16691, + [6]=9583, + [7]=28862 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-4814.59, + y=10580.1 + }, + [436]={ + nodes={ + [1]=37258 + }, + orbits={ + [1]=0 + }, + x=-4805.94, + y=8363.52 + }, + [437]={ + nodes={ + [1]=59367, + [2]=10774, + [3]=26568, + [4]=51732, + [5]=35863 + }, + orbits={ + [1]=2 + }, + x=-4801.92, + y=7834.96 + }, + [438]={ + nodes={ + [1]=23825, + [2]=11572, + [3]=24325, + [4]=32923, + [5]=58215, + [6]=40006, + [7]=9896 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-4788.34, + y=-9175.84 + }, + [439]={ + nodes={ + [1]=292 + }, + orbits={ + [1]=0 + }, + x=-4776.07, + y=-9046.02 + }, + [440]={ + nodes={ + [1]=23062, + [2]=19122, + [3]=28432, + [4]=20416 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4747.08, + y=-251.95 + }, + [441]={ + nodes={ + [1]=24696 + }, + orbits={ + [1]=0 + }, + x=4295.1587817384, + y=15983.183506955 + }, + [442]={ + nodes={ + [1]=38965, + [2]=11284, + [3]=24764, + [4]=12324, + [5]=30985, + [6]=31697, + [7]=51303 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-4715.21, + y=-10129.8 + }, + [443]={ + nodes={ + [1]=56595, + [2]=23861, + [3]=54886, + [4]=56997, + [5]=64312 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-4713.07, + y=5643.94 + }, + [444]={ + nodes={ + [1]=15782 + }, + orbits={ + [1]=0 + }, + x=-4694.67, + y=-6892.17 + }, + [445]={ + nodes={ + [1]=54814, + [2]=59498, + [3]=53675, + [4]=16114 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4694.67, + y=-6482.36 + }, + [446]={ + nodes={ + [1]=31419, + [2]=35787, + [3]=42813, + [4]=55491 + }, + orbits={ + [1]=1 + }, + x=-4660.69, + y=223.67 + }, + [447]={ + nodes={ + [1]=31238 + }, + orbits={ + [1]=0 + }, + x=-4643.88, + y=-7996.23 + }, + [448]={ + nodes={ + [1]=2653, + [2]=19203, + [3]=10260, + [4]=30896, + [5]=49172, + [6]=33730, + [7]=60809 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4628.58, + y=-3070.51 + }, + [449]={ + nodes={ + [1]=65226 + }, + orbits={ + [1]=0 + }, + x=-4621.23, + y=-10104.9 + }, + [450]={ + nodes={ + [1]=38876 + }, + orbits={ + [1]=0 + }, + x=-4606.4, + y=6774.82 + }, + [451]={ + nodes={ + [1]=5681 + }, + orbits={ + [1]=0 + }, + x=-4573.05, + y=9245.21 + }, + [452]={ + nodes={ + [1]=4086 + }, + orbits={ + [1]=0 + }, + x=4459.7287817384, + y=15683.483506955 + }, + [453]={ + nodes={ + [1]=3339, + [2]=23036, + [3]=46931, + [4]=45585, + [5]=55617, + [6]=29914, + [7]=17825, + [8]=19546, + [9]=59208 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4572.75, + y=9245.92 + }, + [454]={ + nodes={ + [1]=39083 + }, + orbits={ + [1]=0 + }, + x=-4542.4, + y=925.6 + }, + [455]={ + nodes={ + [1]=14686, + [2]=53795, + [3]=64804, + [4]=53324, + [5]=19318, + [6]=62210 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-4528.5, + y=-8746.5 + }, + [456]={ + nodes={ + [1]=33978, + [2]=30390, + [3]=31609, + [4]=36163, + [5]=62581 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4507.44, + y=2159.3 + }, + [457]={ + nodes={ + [1]=55536 + }, + orbits={ + }, + x=-3208.350248397, + y=15211.554685813 + }, + [458]={ + nodes={ + [1]=10245, + [2]=34308, + [3]=65193, + [4]=36478, + [5]=48714, + [6]=43014, + [7]=37414 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4432.96, + y=-2172.08 + }, + [459]={ + nodes={ + [1]=14540 + }, + orbits={ + [1]=0 + }, + x=-4431.15, + y=7184.65 + }, + [460]={ + nodes={ + [1]=7878, + [2]=48745, + [3]=53901, + [4]=34375, + [5]=45612 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4431.08, + y=-684.43 + }, + [461]={ + nodes={ + [1]=9417 + }, + orbits={ + [1]=0 + }, + x=-4427.82, + y=4646.67 + }, + [462]={ + nodes={ + [1]=48505, + [2]=10372, + [3]=48240, + [4]=36191, + [5]=59213, + [6]=7392, + [7]=10571, + [8]=60886, + [9]=40325 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-4422.17, + y=-1471.64 + }, + [463]={ + nodes={ + [1]=7642, + [2]=6356, + [3]=71, + [4]=32859, + [5]=12189, + [6]=56547, + [7]=15114 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-4418.06, + y=-4540.25 + }, + [464]={ + nodes={ + [1]=13171 + }, + orbits={ + [1]=0 + }, + x=-4346.51, + y=4339.79 + }, + [465]={ + nodes={ + [1]=9638 + }, + orbits={ + [1]=0 + }, + x=-4339.42, + y=843.27 + }, + [466]={ + nodes={ + [1]=54283, + [2]=26324, + [3]=27950, + [4]=4128, + [5]=26532, + [6]=46023, + [7]=52462 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4335.51, + y=3287.25 + }, + [467]={ + nodes={ + [1]=41657, + [2]=21286, + [3]=45992, + [4]=17029 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-4335.51, + y=3380.39 + }, + [468]={ + nodes={ + [1]=26798 + }, + orbits={ + [1]=0 + }, + x=-4335.1, + y=619.91 + }, + [469]={ + nodes={ + [1]=51052, + [2]=22616, + [3]=17468, + [4]=53405, + [5]=22558 + }, + orbits={ + }, + x=-4308.23, + y=0.54 + }, + [470]={ + nodes={ + [1]=59006 + }, + orbits={ + [1]=0 + }, + x=-4296.44, + y=407.49 + }, + [471]={ + nodes={ + [1]=48631 + }, + orbits={ + [1]=0 + }, + x=-4289.92, + y=0.54 + }, + [472]={ + nodes={ + [1]=14294, + [2]=48530, + [3]=4623, + [4]=39130, + [5]=48524 + }, + orbits={ + [1]=2 + }, + x=-4288.8, + y=-6798.65 + }, + [473]={ + nodes={ + [1]=43818 + }, + orbits={ + [1]=0 + }, + x=-4285.55, + y=-6819.23 + }, + [474]={ + nodes={ + [1]=14505, + [2]=3866, + [3]=22331, + [4]=19644, + [5]=32258, + [6]=14712, + [7]=33612, + [8]=40200, + [9]=61842, + [10]=33240, + [11]=45343, + [12]=57021, + [13]=8957, + [14]=37594, + [15]=50483, + [16]=8983 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3, + [5]=4 + }, + x=-4283.82, + y=-11017 + }, + [475]={ + nodes={ + [1]=34552, + [2]=61026, + [3]=17378, + [4]=40894, + [5]=1218, + [6]=8357, + [7]=10742, + [8]=41991, + [9]=1447, + [10]=38972, + [11]=14945, + [12]=22393, + [13]=28458 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-4261.32, + y=-5891.9 + }, + [476]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-4261.32, + y=-5204.4 + }, + [477]={ + nodes={ + [1]=28175 + }, + orbits={ + [1]=0 + }, + x=-4254.59, + y=10064.4 + }, + [478]={ + nodes={ + [1]=17745 + }, + orbits={ + [1]=0 + }, + x=-4238.73, + y=4457.57 + }, + [479]={ + nodes={ + [1]=62378, + [2]=47633, + [3]=57002, + [4]=48761 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4230.17, + y=-789.73 + }, + [480]={ + nodes={ + [1]=16725 + }, + orbits={ + [1]=0 + }, + x=-4227.25, + y=2439.49 + }, + [481]={ + nodes={ + [1]=4681, + [2]=25058, + [3]=48828, + [4]=26228 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4208.73, + y=-7738.4 + }, + [482]={ + nodes={ + [1]=50104 + }, + orbits={ + [1]=0 + }, + x=-4185.36, + y=-10001.8 + }, + [483]={ + nodes={ + [1]=47212, + [2]=17417, + [3]=43843, + [4]=3652, + [5]=56714, + [6]=27999, + [7]=45777 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3 + }, + x=-4166, + y=10952.5 + }, + [484]={ + nodes={ + [1]=56605 + }, + orbits={ + [1]=0 + }, + x=-4163.59, + y=6722.67 + }, + [485]={ + nodes={ + [1]=18146 + }, + orbits={ + [1]=0 + }, + x=-2863.190248397, + y=15383.954685813 + }, + [486]={ + nodes={ + [1]=48121 + }, + orbits={ + [1]=0 + }, + x=-4120.96, + y=4565.35 + }, + [487]={ + nodes={ + [1]=4931, + [2]=42825, + [3]=21404, + [4]=27674, + [5]=44082, + [6]=27307 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4117.42, + y=-8135.44 + }, + [488]={ + nodes={ + [1]=32745 + }, + orbits={ + [1]=0 + }, + x=-4116.33, + y=-9838.01 + }, + [489]={ + nodes={ + [1]=24438 + }, + orbits={ + [1]=0 + }, + x=-4114.17, + y=4317.84 + }, + [490]={ + nodes={ + [1]=40276 + }, + orbits={ + [1]=0 + }, + x=-4113.12, + y=-9545.42 + }, + [491]={ + nodes={ + [1]=60241 + }, + orbits={ + [1]=0 + }, + x=-4113.12, + y=-9254.29 + }, + [492]={ + nodes={ + [1]=51618, + [2]=43324, + [3]=57596, + [4]=13468, + [5]=11580, + [6]=34769, + [7]=52115, + [8]=51454 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-4109.59, + y=-3555.51 + }, + [493]={ + nodes={ + [1]=17762, + [2]=2964, + [3]=18374, + [4]=28476 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4107.23, + y=6275.65 + }, + [494]={ + nodes={ + [1]=46742 + }, + orbits={ + [1]=0 + }, + x=-4102.54, + y=-10310.9 + }, + [495]={ + nodes={ + [1]=95 + }, + orbits={ + [1]=0 + }, + x=-4084.76, + y=-7312.1 + }, + [496]={ + nodes={ + [1]=26895 + }, + orbits={ + [1]=0 + }, + x=-4082.88, + y=287.25 + }, + [497]={ + nodes={ + [1]=17411, + [2]=61444, + [3]=58096, + [4]=6008, + [5]=29652, + [6]=15180, + [7]=34096 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4077.15, + y=-2691.85 + }, + [498]={ + nodes={ + [1]=26490, + [2]=12751, + [3]=6229, + [4]=13356, + [5]=18489 + }, + orbits={ + [1]=2 + }, + x=-4066.8, + y=8524.92 + }, + [499]={ + nodes={ + [1]=31903 + }, + orbits={ + [1]=0 + }, + x=-4066.02, + y=7086.81 + }, + [500]={ + nodes={ + [1]=3084 + }, + orbits={ + [1]=0 + }, + x=-2738.300248397, + y=16153.054685813 + }, + [501]={ + nodes={ + [1]=32278, + [2]=58183 + }, + orbits={ + [1]=2 + }, + x=-4030.62, + y=-9550.54 + }, + [502]={ + nodes={ + [1]=25990, + [2]=43461, + [3]=25753, + [4]=32932, + [5]=63268, + [6]=29372, + [7]=53989, + [8]=36389, + [9]=7720, + [10]=14205 + }, + orbits={ + [1]=1, + [2]=4 + }, + x=-4027.59, + y=5238.17 + }, + [503]={ + nodes={ + [1]=57819 + }, + orbits={ + [1]=0 + }, + x=-2727.050248397, + y=14875.854685813 + }, + [504]={ + nodes={ + [1]=46748 + }, + orbits={ + [1]=0 + }, + x=-3995.5, + y=4196.65 + }, + [505]={ + nodes={ + [1]=4661, + [2]=53367, + [3]=10835, + [4]=20842, + [5]=12821, + [6]=65439, + [7]=48026, + [8]=6623, + [9]=65353 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3 + }, + x=-3978.69, + y=9586.58 + }, + [506]={ + nodes={ + [1]=61179 + }, + orbits={ + [1]=0 + }, + x=-3955.44, + y=-9600.64 + }, + [507]={ + nodes={ + [1]=259 + }, + orbits={ + [1]=0 + }, + x=-3931.69, + y=7603.71 + }, + [508]={ + nodes={ + [1]=38010, + [2]=13352, + [3]=59180, + [4]=54923, + [5]=27638, + [6]=50023, + [7]=13524, + [8]=4921 + }, + orbits={ + [1]=4 + }, + x=-3931.58, + y=7588.67 + }, + [509]={ + nodes={ + [1]=37956 + }, + orbits={ + [1]=0 + }, + x=-3921.6, + y=394.73 + }, + [510]={ + nodes={ + [1]=35645 + }, + orbits={ + [1]=0 + }, + x=-3915.69, + y=-7172.57 + }, + [511]={ + nodes={ + [1]=1928 + }, + orbits={ + [1]=0 + }, + x=-3908.2, + y=-7290.56 + }, + [512]={ + nodes={ + [1]=5284 + }, + orbits={ + [1]=0 + }, + x=-3905.88, + y=-9191.64 + }, + [513]={ + nodes={ + [1]=30996 + }, + orbits={ + [1]=0 + }, + x=-2602.160248397, + y=15644.954685813 + }, + [514]={ + nodes={ + [1]=35581 + }, + orbits={ + [1]=0 + }, + x=-3872.48, + y=156.69 + }, + [515]={ + nodes={ + [1]=51485, + [2]=41338, + [3]=31673, + [4]=48649 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3861.26, + y=-1010.61 + }, + [516]={ + nodes={ + [1]=32847 + }, + orbits={ + [1]=0 + }, + x=-3856.25, + y=-7033.48 + }, + [517]={ + nodes={ + [1]=8867, + [2]=42522, + [3]=39204, + [4]=12882, + [5]=38578, + [6]=2857, + [7]=39640, + [8]=61985, + [9]=18849, + [10]=49189, + [11]=64789, + [12]=44484, + [13]=7246, + [14]=65413, + [15]=25618, + [16]=49759, + [17]=7998, + [18]=13673, + [19]=29398, + [20]=12488, + [21]=40721 + }, + orbits={ + }, + x=0.11316937030612, + y=-15546.79999962 + }, + [518]={ + nodes={ + [1]=21245 + }, + orbits={ + [1]=0 + }, + x=-3804.23, + y=-9338.75 + }, + [519]={ + nodes={ + [1]=57178 + }, + orbits={ + [1]=0 + }, + x=-3804.23, + y=-8886.17 + }, + [520]={ + nodes={ + [1]=1442 + }, + orbits={ + [1]=0 + }, + x=-2502.440248397, + y=16388.854685813 + }, + [521]={ + nodes={ + [1]=53762 + }, + orbits={ + [1]=0 + }, + x=-2466.020248397, + y=15136.854685813 + }, + [522]={ + nodes={ + [1]=45962, + [2]=48589, + [3]=7922, + [4]=7183, + [5]=15617 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-3759.41, + y=5937.79 + }, + [523]={ + nodes={ + [1]=56284 + }, + orbits={ + [1]=0 + }, + x=-3754.39, + y=-7303 + }, + [524]={ + nodes={ + [1]=9226, + [2]=13500, + [3]=47591, + [4]=41044 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-3746.22, + y=-5464.19 + }, + [525]={ + nodes={ + [1]=46565 + }, + orbits={ + [1]=0 + }, + x=-3736.26, + y=12649.7 + }, + [526]={ + nodes={ + [1]=34487, + [2]=4882, + [3]=60568, + [4]=38172, + [5]=51206, + [6]=49642, + [7]=52348 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-3727.22, + y=3905.64 + }, + [527]={ + nodes={ + [1]=53443, + [2]=20645, + [3]=59767, + [4]=31292, + [5]=64284, + [6]=58528, + [7]=45363, + [8]=19011, + [9]=27373, + [10]=22928 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-3724.22, + y=1390.39 + }, + [528]={ + nodes={ + [1]=27290 + }, + orbits={ + [1]=0 + }, + x=-3711.3, + y=11983.9 + }, + [529]={ + nodes={ + [1]=6077 + }, + orbits={ + [1]=0 + }, + x=-3709.27, + y=-7173.96 + }, + [530]={ + nodes={ + [1]=8248, + [2]=48079, + [3]=60014, + [4]=38474 + }, + orbits={ + [1]=2 + }, + x=-3702.66, + y=-823.68 + }, + [531]={ + nodes={ + [1]=8737 + }, + orbits={ + [1]=0 + }, + x=-3697.15, + y=-7461.02 + }, + [532]={ + nodes={ + [1]=53108 + }, + orbits={ + [1]=0 + }, + x=-2366.050248397, + y=15879.854685813 + }, + [533]={ + nodes={ + [1]=35265 + }, + orbits={ + [1]=0 + }, + x=-3657.51, + y=6318.1 + }, + [534]={ + nodes={ + [1]=36728 + }, + orbits={ + [1]=0 + }, + x=-2329.880248397, + y=14628.754685813 + }, + [535]={ + nodes={ + [1]=25927 + }, + orbits={ + [1]=0 + }, + x=-3622.31, + y=-7106.13 + }, + [536]={ + nodes={ + [1]=20637, + [2]=25570, + [3]=21549, + [4]=37694, + [5]=44560, + [6]=64083, + [7]=27572, + [8]=12940 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-3604.52, + y=-11358.1 + }, + [537]={ + nodes={ + [1]=62122, + [2]=6748, + [3]=37327, + [4]=34248, + [5]=48618, + [6]=4295 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-3593.46, + y=-8544.35 + }, + [538]={ + nodes={ + [1]=34840 + }, + orbits={ + [1]=0 + }, + x=-3593.46, + y=-7995.13 + }, + [539]={ + nodes={ + [1]=25011, + [2]=60404, + [3]=20691, + [4]=41739 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3589.42, + y=6610.21 + }, + [540]={ + nodes={ + [1]=33601, + [2]=5692, + [3]=35708, + [4]=41154, + [5]=2863 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3556.93, + y=-337.57 + }, + [541]={ + nodes={ + [1]=23364, + [2]=33781, + [3]=65493, + [4]=43854, + [5]=48614, + [6]=9018, + [7]=35918 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-3555.35, + y=-3914.61 + }, + [542]={ + nodes={ + [1]=52038 + }, + orbits={ + [1]=0 + }, + x=-3550.74, + y=-3918.97 + }, + [543]={ + nodes={ + [1]=36822 + }, + orbits={ + [1]=0 + }, + x=-2229.640248397, + y=15370.754685813 + }, + [544]={ + nodes={ + [1]=2511, + [2]=19802, + [3]=64399 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-3517.31, + y=5116.13 + }, + [545]={ + nodes={ + [1]=2071, + [2]=37543, + [3]=38420, + [4]=16647 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3516.49, + y=-3235.91 + }, + [546]={ + nodes={ + [1]=33397, + [2]=51248, + [3]=53294, + [4]=38292, + [5]=39594 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3498.41, + y=321.55 + }, + [547]={ + nodes={ + [1]=44733 + }, + orbits={ + [1]=2 + }, + x=-3497.77, + y=-6221.4 + }, + [548]={ + nodes={ + [1]=49363 + }, + orbits={ + [1]=0 + }, + x=-3496.22, + y=-6579.23 + }, + [549]={ + nodes={ + [1]=49550, + [2]=61935, + [3]=55746, + [4]=4624 + }, + orbits={ + [1]=0 + }, + x=-3484.73, + y=4125.9 + }, + [550]={ + nodes={ + [1]=43842, + [2]=5695, + [3]=32309, + [4]=59070, + [5]=28092, + [6]=17061, + [7]=31773, + [8]=55011 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-3480.21, + y=-9844.83 + }, + [551]={ + nodes={ + [1]=26697 + }, + orbits={ + [1]=0 + }, + x=-3462.24, + y=12165.8 + }, + [552]={ + nodes={ + [1]=41511 + }, + orbits={ + [1]=0 + }, + x=-3445.11, + y=-7610.06 + }, + [553]={ + nodes={ + [1]=62661 + }, + orbits={ + [1]=0 + }, + x=-3443.04, + y=-4769.59 + }, + [554]={ + nodes={ + [1]=1433 + }, + orbits={ + }, + x=-3428.17, + y=-7186.71 + }, + [555]={ + nodes={ + [1]=35284, + [2]=3921, + [3]=38398, + [4]=31898, + [5]=7473, + [6]=2211, + [7]=8154 + }, + orbits={ + [1]=0 + }, + x=-3422.22, + y=11010.7 + }, + [556]={ + nodes={ + [1]=12786 + }, + orbits={ + [1]=0 + }, + x=-3421.76, + y=-1975.64 + }, + [557]={ + nodes={ + [1]=15374, + [2]=48035, + [3]=54676, + [4]=39759, + [5]=11329 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3410.15, + y=7031.06 + }, + [558]={ + nodes={ + [1]=52746, + [2]=9796, + [3]=62310, + [4]=54148, + [5]=36325, + [6]=56934 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=-3408.23, + y=9916.18 + }, + [559]={ + nodes={ + [1]=58591 + }, + orbits={ + [1]=0 + }, + x=-2093.240248397, + y=14861.754685813 + }, + [560]={ + nodes={ + [1]=37612 + }, + orbits={ + [1]=0 + }, + x=-3366.12, + y=7490.9 + }, + [561]={ + nodes={ + [1]=8531, + [2]=24483, + [3]=32660, + [4]=8631, + [5]=59256, + [6]=51534, + [7]=46760 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-3360.01, + y=-4893.8 + }, + [562]={ + nodes={ + [1]=37963, + [2]=15855, + [3]=59263, + [4]=61441, + [5]=54138 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-3314.67, + y=11934.6 + }, + [563]={ + nodes={ + [1]=64223 + }, + orbits={ + [1]=0 + }, + x=5660.5400339301, + y=-14377.730670469 + }, + [564]={ + nodes={ + [1]=9762, + [2]=10783, + [3]=38564, + [4]=20091 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-3296.49, + y=11928 + }, + [565]={ + nodes={ + [1]=51299 + }, + orbits={ + [1]=2 + }, + x=-3292.33, + y=5858.65 + }, + [566]={ + nodes={ + [1]=46060, + [2]=29788, + [3]=44419, + [4]=7251, + [5]=29270, + [6]=7488 + }, + orbits={ + [1]=0 + }, + x=-3285.98, + y=4891.42 + }, + [567]={ + nodes={ + [1]=17655, + [2]=64299, + [3]=50558, + [4]=12462, + [5]=18465, + [6]=39540, + [7]=36602, + [8]=6744, + [9]=49357, + [10]=32194, + [11]=58651, + [12]=5777, + [13]=44951, + [14]=37629, + [15]=55933 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-3281.46, + y=-1894.64 + }, + [568]={ + nodes={ + [1]=60191, + [2]=54985, + [3]=14602, + [4]=42737 + }, + orbits={ + }, + x=-3244.55, + y=7079.31 + }, + [569]={ + nodes={ + [1]=47168 + }, + orbits={ + [1]=0 + }, + x=-3225.69, + y=-10395.8 + }, + [570]={ + nodes={ + [1]=38235, + [2]=34671, + [3]=61934, + [4]=24477, + [5]=17532, + [6]=48418 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3224.09, + y=7913.29 + }, + [571]={ + nodes={ + [1]=57373 + }, + orbits={ + [1]=0 + }, + x=-3215.38, + y=-6401.48 + }, + [572]={ + nodes={ + [1]=25303 + }, + orbits={ + [1]=0 + }, + x=-3196.2, + y=-8995.5 + }, + [573]={ + nodes={ + [1]=39935 + }, + orbits={ + [1]=0 + }, + x=-3184.23, + y=-9385.96 + }, + [574]={ + nodes={ + [1]=38323 + }, + orbits={ + [1]=0 + }, + x=-3154.84, + y=556.13 + }, + [575]={ + nodes={ + [1]=48305 + }, + orbits={ + [1]=0 + }, + x=-3144.84, + y=-551.55 + }, + [576]={ + nodes={ + [1]=4956 + }, + orbits={ + [1]=0 + }, + x=-3121.95, + y=-1268.74 + }, + [577]={ + nodes={ + [1]=35560 + }, + orbits={ + [1]=0 + }, + x=-3116.51, + y=-7680.34 + }, + [578]={ + nodes={ + [1]=22045, + [2]=63209, + [3]=30704, + [4]=13505 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3115.35, + y=-1267.96 + }, + [579]={ + nodes={ + [1]=30979 + }, + orbits={ + [1]=0 + }, + x=-3109.62, + y=-5381.56 + }, + [580]={ + nodes={ + [1]=30265 + }, + orbits={ + [1]=0 + }, + x=5882.3600339301, + y=-15234.730670469 + }, + [581]={ + nodes={ + [1]=4407 + }, + orbits={ + [1]=0 + }, + x=-3069.12, + y=-8364.27 + }, + [582]={ + nodes={ + [1]=64327, + [2]=18629, + [3]=39517, + [4]=49391, + [5]=36629, + [6]=44659, + [7]=62732, + [8]=53373, + [9]=64192, + [10]=18742 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-3067.29, + y=2529.2 + }, + [583]={ + nodes={ + [1]=43366 + }, + orbits={ + [1]=0 + }, + x=-3061.21, + y=-8608.16 + }, + [584]={ + nodes={ + [1]=33618, + [2]=12610, + [3]=4873, + [4]=12683, + [5]=61974, + [6]=39990, + [7]=20718, + [8]=13294 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-3049.94, + y=-5891.57 + }, + [585]={ + nodes={ + [1]=15194 + }, + orbits={ + [1]=0 + }, + x=-3049.19, + y=-8762.37 + }, + [586]={ + nodes={ + [1]=34747, + [2]=24753, + [3]=56567, + [4]=151, + [5]=6274 + }, + orbits={ + [1]=0 + }, + x=-3044.02, + y=6253.4 + }, + [587]={ + nodes={ + [1]=43895, + [2]=13562 + }, + orbits={ + }, + x=-2998.56, + y=4483.94 + }, + [588]={ + nodes={ + [1]=23650, + [2]=56616, + [3]=41415 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2977.66, + y=4483.94 + }, + [589]={ + nodes={ + [1]=30219, + [2]=45177, + [3]=39732 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-2974.98, + y=3611.49 + }, + [590]={ + nodes={ + [1]=61657, + [2]=45808, + [3]=17750, + [4]=3191, + [5]=65324, + [6]=24736, + [7]=1861, + [8]=9863, + [9]=658, + [10]=35623 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=-2957.14, + y=8505.46 + }, + [591]={ + nodes={ + [1]=29148 + }, + orbits={ + [1]=0 + }, + x=-2904.82, + y=-7995.13 + }, + [592]={ + nodes={ + [1]=38300 + }, + orbits={ + [1]=0 + }, + x=-2893.96, + y=-6643.12 + }, + [593]={ + nodes={ + [1]=17517, + [2]=13233, + [3]=19873 + }, + orbits={ + [1]=0 + }, + x=-2880.6, + y=-1668.56 + }, + [594]={ + nodes={ + [1]=44344 + }, + orbits={ + [1]=0 + }, + x=-2864.23, + y=-9385.96 + }, + [595]={ + nodes={ + [1]=27726, + [2]=32416, + [3]=6529 + }, + orbits={ + [1]=2 + }, + x=-2851.04, + y=1645.22 + }, + [596]={ + nodes={ + [1]=8406, + [2]=6015, + [3]=35426 + }, + orbits={ + [1]=3 + }, + x=-2849.6, + y=0.54 + }, + [597]={ + nodes={ + [1]=2606, + [2]=21606, + [3]=20388 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-2824.48, + y=-8749.27 + }, + [598]={ + nodes={ + [1]=64471 + }, + orbits={ + [1]=4 + }, + x=-2808.97, + y=10498.4 + }, + [599]={ + nodes={ + [1]=45824 + }, + orbits={ + [1]=0 + }, + x=-2787.46, + y=11061 + }, + [600]={ + nodes={ + [1]=6898 + }, + orbits={ + [1]=0 + }, + x=-2774.38, + y=-1070.72 + }, + [601]={ + nodes={ + [1]=3282, + [2]=58817, + [3]=53607, + [4]=37302, + [5]=52860, + [6]=45494, + [7]=40975, + [8]=24368, + [9]=40597 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-2756.41, + y=10024.9 + }, + [602]={ + nodes={ + [1]=65016, + [2]=21206, + [3]=6752, + [4]=7378, + [5]=968, + [6]=45899, + [7]=54911, + [8]=31326, + [9]=39716, + [10]=44092, + [11]=11505 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-2750.44, + y=-7108.15 + }, + [603]={ + nodes={ + [1]=61615 + }, + orbits={ + [1]=0 + }, + x=-2744.4, + y=-4969.4 + }, + [604]={ + nodes={ + [1]=14575 + }, + orbits={ + [1]=0 + }, + x=-2730.42, + y=-9028.75 + }, + [605]={ + nodes={ + [1]=32128 + }, + orbits={ + [1]=0 + }, + x=-2720.45, + y=-5537.28 + }, + [606]={ + nodes={ + [1]=56090, + [2]=59136, + [3]=17729, + [4]=56466 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-2701.66, + y=-4273.5 + }, + [607]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-2697.32, + y=-12038.7 + }, + [608]={ + nodes={ + [1]=55412, + [2]=22538, + [3]=64659, + [4]=25211, + [5]=11330, + [6]=22185, + [7]=17796, + [8]=12412, + [9]=3355 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-2697.32, + y=-11149 + }, + [609]={ + nodes={ + [1]=38105, + [2]=49455, + [3]=13537, + [4]=44299, + [5]=6006, + [6]=23939, + [7]=59425, + [8]=2508, + [9]=51797, + [10]=22141, + [11]=857, + [12]=58789, + [13]=46275, + [14]=13307, + [15]=26614, + [16]=3894 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-2697.32, + y=-10245.5 + }, + [610]={ + nodes={ + [1]=63469, + [2]=57967, + [3]=50216, + [4]=30834 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2656.19, + y=-2063.25 + }, + [611]={ + nodes={ + [1]=56857, + [2]=10561, + [3]=43426, + [4]=45602, + [5]=23265, + [6]=25653, + [7]=36109, + [8]=64591, + [9]=25683, + [10]=14131, + [11]=46091, + [12]=2810, + [13]=20701, + [14]=36891, + [15]=32705, + [16]=13289, + [17]=34207, + [18]=35880, + [19]=9843, + [20]=8305 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=6319.4900339301, + y=-14679.530670469 + }, + [612]={ + nodes={ + [1]=3414 + }, + orbits={ + [1]=0 + }, + x=-2625.49, + y=-8808.47 + }, + [613]={ + nodes={ + [1]=23227, + [2]=39564, + [3]=3516 + }, + orbits={ + [1]=4 + }, + x=-2620.07, + y=7375.23 + }, + [614]={ + nodes={ + [1]=38663, + [2]=49618, + [3]=62039 + }, + orbits={ + [1]=0 + }, + x=-2620.07, + y=7379.36 + }, + [615]={ + nodes={ + [1]=55348 + }, + orbits={ + [1]=0 + }, + x=-2620.07, + y=7389.42 + }, + [616]={ + nodes={ + [1]=13279 + }, + orbits={ + [1]=0 + }, + x=-2620.07, + y=7921.63 + }, + [617]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-2595.86, + y=24.31 + }, + [618]={ + nodes={ + [1]=47284 + }, + orbits={ + [1]=0 + }, + x=-2588.8, + y=-8604.12 + }, + [619]={ + nodes={ + [1]=1865, + [2]=54934, + [3]=15494, + [4]=43584 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2568.32, + y=3948.16 + }, + [620]={ + nodes={ + [1]=8493 + }, + orbits={ + [1]=0 + }, + x=-2554.96, + y=10828.4 + }, + [621]={ + nodes={ + [1]=42177, + [2]=5049, + [3]=43183, + [4]=11153, + [5]=49231 + }, + orbits={ + [1]=0 + }, + x=-2553.76, + y=5504.65 + }, + [622]={ + nodes={ + [1]=41838, + [2]=38103, + [3]=25429, + [4]=34084 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-2541.03, + y=-1462.22 + }, + [623]={ + nodes={ + [1]=3332 + }, + orbits={ + [1]=0 + }, + x=-2530.04, + y=-8376.52 + }, + [624]={ + nodes={ + [1]=53396, + [2]=64370, + [3]=45923, + [4]=52319 + }, + orbits={ + }, + x=-2522.24, + y=-1450.05 + }, + [625]={ + nodes={ + [1]=51921 + }, + orbits={ + }, + x=-2502.19, + y=3479.47 + }, + [626]={ + nodes={ + [1]=59442 + }, + orbits={ + [1]=0 + }, + x=-2496.77, + y=-4970.02 + }, + [627]={ + nodes={ + [1]=18101 + }, + orbits={ + [1]=0 + }, + x=-2496.26, + y=-5249.94 + }, + [628]={ + nodes={ + [1]=44850 + }, + orbits={ + [1]=0 + }, + x=-2494.67, + y=-5247.26 + }, + [629]={ + nodes={ + [1]=15801 + }, + orbits={ + [1]=0 + }, + x=-2494.45, + y=-5536.38 + }, + [630]={ + nodes={ + [1]=5920, + [2]=52574, + [3]=55478, + [4]=48006, + [5]=33604 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2481, + y=3401.68 + }, + [631]={ + nodes={ + [1]=32523 + }, + orbits={ + [1]=0 + }, + x=-2460.75, + y=-3489.54 + }, + [632]={ + nodes={ + [1]=58930, + [2]=52429, + [3]=6294, + [4]=4847, + [5]=14934, + [6]=858, + [7]=58387, + [8]=52454, + [9]=46604, + [10]=2138, + [11]=1546, + [12]=38827, + [13]=31890, + [14]=25745, + [15]=21081 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-2457.53, + y=-3479.88 + }, + [633]={ + nodes={ + [1]=35745, + [2]=12601, + [3]=483, + [4]=50908 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2431.32, + y=-2692.66 + }, + [634]={ + nodes={ + [1]=27992 + }, + orbits={ + [1]=0 + }, + x=-2415.33, + y=11530.7 + }, + [635]={ + nodes={ + [1]=23373, + [2]=23428, + [3]=47623, + [4]=53895, + [5]=17026, + [6]=17303, + [7]=38570 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-2399.07, + y=11558.8 + }, + [636]={ + nodes={ + [1]=5710, + [2]=14923, + [3]=46325, + [4]=33556, + [5]=55473, + [6]=43164, + [7]=1207, + [8]=13397, + [9]=39581, + [10]=6839 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-2393.09, + y=1033.71 + }, + [637]={ + nodes={ + [1]=61042 + }, + orbits={ + [1]=0 + }, + x=-2364.29, + y=-8977.68 + }, + [638]={ + nodes={ + [1]=11679 + }, + orbits={ + [1]=0 + }, + x=-2364.29, + y=-7995.11 + }, + [639]={ + nodes={ + [1]=54453, + [2]=19006, + [3]=39461, + [4]=229, + [5]=46365 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2362.28, + y=-9378.04 + }, + [640]={ + nodes={ + [1]=38856 + }, + orbits={ + }, + x=-2351.05, + y=-3487.38 + }, + [641]={ + nodes={ + [1]=39207, + [2]=33518, + [3]=37519, + [4]=17045, + [5]=32564, + [6]=63579, + [7]=55131 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-2309.42, + y=8451.88 + }, + [642]={ + nodes={ + [1]=28950 + }, + orbits={ + [1]=0 + }, + x=-2308.21, + y=-1862.64 + }, + [643]={ + nodes={ + [1]=46358, + [2]=50423, + [3]=59376 + }, + orbits={ + }, + x=-2291.85, + y=-4007.49 + }, + [644]={ + nodes={ + [1]=59438 + }, + orbits={ + [1]=0 + }, + x=-2280.15, + y=-5538.98 + }, + [645]={ + nodes={ + [1]=59413 + }, + orbits={ + [1]=0 + }, + x=-2250.63, + y=-4971.77 + }, + [646]={ + nodes={ + [1]=19240 + }, + orbits={ + [1]=0 + }, + x=-2241.38, + y=-4242.75 + }, + [647]={ + nodes={ + [1]=13241 + }, + orbits={ + }, + x=-2221.54, + y=3539.9 + }, + [648]={ + nodes={ + [1]=56783 + }, + orbits={ + [1]=0 + }, + x=6756.6800339301, + y=-15234.730670469 + }, + [649]={ + nodes={ + [1]=53589 + }, + orbits={ + [1]=0 + }, + x=-2199.44, + y=3805.96 + }, + [650]={ + nodes={ + [1]=17584, + [2]=28446, + [3]=12430, + [4]=61067, + [5]=1143, + [6]=58170 + }, + orbits={ + [1]=2 + }, + x=-2188.85, + y=-968.66 + }, + [651]={ + nodes={ + [1]=28718 + }, + orbits={ + [1]=0 + }, + x=-2187.5, + y=-962.96 + }, + [652]={ + nodes={ + [1]=54521 + }, + orbits={ + [1]=0 + }, + x=-2171.82, + y=-10395.8 + }, + [653]={ + nodes={ + [1]=48670 + }, + orbits={ + }, + x=-2134.26, + y=3688.8 + }, + [654]={ + nodes={ + [1]=6714, + [2]=5066, + [3]=51788, + [4]=42583, + [5]=10499 + }, + orbits={ + [1]=2 + }, + x=-2097.34, + y=4206.32 + }, + [655]={ + nodes={ + [1]=1913, + [2]=4665, + [3]=61534, + [4]=7721, + [5]=64683, + [6]=41031, + [7]=23570, + [8]=36709, + [9]=63393 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-2092.78, + y=1554.69 + }, + [656]={ + nodes={ + [1]=10772, + [2]=21468, + [3]=2119, + [4]=39274, + [5]=53505 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-2087.68, + y=7594.08 + }, + [657]={ + nodes={ + [1]=38430 + }, + orbits={ + [1]=0 + }, + x=-2087.38, + y=4208.07 + }, + [658]={ + nodes={ + [1]=2864 + }, + orbits={ + [1]=0 + }, + x=-2086.96, + y=8229.42 + }, + [659]={ + nodes={ + [1]=48581, + [2]=15969, + [3]=41129, + [4]=24338, + [5]=15838, + [6]=33242, + [7]=13387 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=-2076.24, + y=-4701.25 + }, + [660]={ + nodes={ + [1]=1543, + [2]=14096, + [3]=44293 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-2074.7, + y=-4534.38 + }, + [661]={ + nodes={ + [1]=54232 + }, + orbits={ + [1]=0 + }, + x=-2059.23, + y=2453.77 + }, + [662]={ + nodes={ + [1]=44372, + [2]=25829, + [3]=57791, + [4]=52229 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2012.26, + y=-7643.07 + }, + [663]={ + nodes={ + [1]=41646 + }, + orbits={ + [1]=0 + }, + x=-2012.03, + y=4519.75 + }, + [664]={ + nodes={ + [1]=28860, + [2]=56104, + [3]=14091, + [4]=23993, + [5]=8115, + [6]=36449, + [7]=42981, + [8]=52684 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=-2012.03, + y=4750.59 + }, + [665]={ + nodes={ + [1]=58674, + [2]=17867, + [3]=37092, + [4]=55817 + }, + orbits={ + }, + x=-1966.11, + y=4165.53 + }, + [666]={ + nodes={ + [1]=2397, + [2]=54437, + [3]=16111, + [4]=5324, + [5]=46268 + }, + orbits={ + [1]=0 + }, + x=-1955.88, + y=11130.6 + }, + [667]={ + nodes={ + [1]=43791, + [2]=53320, + [3]=16385, + [4]=41651, + [5]=5098 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-1945.48, + y=5858.53 + }, + [668]={ + nodes={ + [1]=3367 + }, + orbits={ + [1]=0 + }, + x=-1941.19, + y=-330.32 + }, + [669]={ + nodes={ + [1]=20119, + [2]=18160, + [3]=15809, + [4]=26945, + [5]=31175, + [6]=22783, + [7]=30720, + [8]=54036, + [9]=17501, + [10]=18485 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-1940.55, + y=-8386.27 + }, + [670]={ + nodes={ + [1]=39087 + }, + orbits={ + [1]=0 + }, + x=-1940.44, + y=-177.33 + }, + [671]={ + nodes={ + [1]=23960 + }, + orbits={ + [1]=0 + }, + x=-1938.69, + y=-17 + }, + [672]={ + nodes={ + [1]=26178 + }, + orbits={ + [1]=0 + }, + x=-1938.53, + y=141.45 + }, + [673]={ + nodes={ + [1]=62152 + }, + orbits={ + [1]=0 + }, + x=-1936.2, + y=295.6 + }, + [674]={ + nodes={ + [1]=50626, + [2]=32597, + [3]=12777, + [4]=3918, + [5]=54708, + [6]=59695 + }, + orbits={ + [1]=2 + }, + x=-1927.77, + y=-1422.19 + }, + [675]={ + nodes={ + [1]=44948 + }, + orbits={ + [1]=0 + }, + x=-1923.59, + y=-1417.27 + }, + [676]={ + nodes={ + [1]=7424, + [2]=27491, + [3]=1823, + [4]=36994, + [5]=29432, + [6]=4061, + [7]=3471, + [8]=34531, + [9]=25363, + [10]=44098 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-1909.32, + y=-6475.67 + }, + [677]={ + nodes={ + [1]=3041, + [2]=47555, + [3]=53697, + [4]=10156, + [5]=59795 + }, + orbits={ + [1]=3 + }, + x=-1892.34, + y=-3294.04 + }, + [678]={ + nodes={ + [1]=13942, + [2]=65023, + [3]=18186, + [4]=6626, + [5]=32354, + [6]=34433, + [7]=24009, + [8]=46475, + [9]=16744, + [10]=4716, + [11]=24748 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-1863.48, + y=6665.33 + }, + [679]={ + nodes={ + [1]=3685, + [2]=55700, + [3]=44983, + [4]=32151 + }, + orbits={ + [1]=2, + [2]=4 + }, + x=-1788.73, + y=10569 + }, + [680]={ + nodes={ + [1]=7628 + }, + orbits={ + }, + x=-1769.02, + y=3906.89 + }, + [681]={ + nodes={ + [1]=33369 + }, + orbits={ + [1]=0 + }, + x=-1760.47, + y=8417.92 + }, + [682]={ + nodes={ + [1]=61170, + [2]=25763, + [3]=27186, + [4]=62963 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-1731.48, + y=-9989.29 + }, + [683]={ + nodes={ + [1]=43647, + [2]=32727, + [3]=53524, + [4]=32507, + [5]=12851, + [6]=57555, + [7]=52973, + [8]=37608 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=-1682.34, + y=-9147.25 + }, + [684]={ + nodes={ + [1]=3999, + [2]=9737, + [3]=59480, + [4]=36522, + [5]=37665, + [6]=4577, + [7]=42410, + [8]=24813, + [9]=20397, + [10]=35739, + [11]=26356, + [12]=15590, + [13]=57863, + [14]=8556 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-1653.23, + y=9760.91 + }, + [685]={ + nodes={ + [1]=56388, + [2]=21096, + [3]=57616, + [4]=63360, + [5]=18801, + [6]=62258, + [7]=11752, + [8]=62455 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-1626.68, + y=7851.58 + }, + [686]={ + nodes={ + [1]=1220 + }, + orbits={ + [1]=0 + }, + x=-1614.94, + y=-5019.94 + }, + [687]={ + nodes={ + [1]=6655 + }, + orbits={ + [1]=2 + }, + x=-1610.62, + y=8920.12 + }, + [688]={ + nodes={ + [1]=35015 + }, + orbits={ + [1]=0 + }, + x=-1587.62, + y=8880.27 + }, + [689]={ + nodes={ + [1]=36286, + [2]=14033, + [3]=41130, + [4]=34553, + [5]=8397 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-1573.72, + y=-4956.19 + }, + [690]={ + nodes={ + [1]=15885 + }, + orbits={ + [1]=0 + }, + x=-1545.44, + y=-7995.13 + }, + [691]={ + nodes={ + [1]=47796, + [2]=62640, + [3]=38501, + [4]=27108, + [5]=24880, + [6]=17294, + [7]=27501, + [8]=19330, + [9]=45916, + [10]=34340, + [11]=16168, + [12]=45969, + [13]=25374 + }, + orbits={ + [1]=2, + [2]=4 + }, + x=-1533.68, + y=2648.54 + }, + [692]={ + nodes={ + [1]=50084 + }, + orbits={ + [1]=0 + }, + x=-1527.89, + y=-734.8 + }, + [693]={ + nodes={ + [1]=3936 + }, + orbits={ + [1]=0 + }, + x=-1525.89, + y=733.42 + }, + [694]={ + nodes={ + [1]=35720, + [2]=7258, + [3]=11861, + [4]=3281 + }, + orbits={ + [1]=0 + }, + x=-1513.28, + y=-2332.55 + }, + [695]={ + nodes={ + [1]=39416 + }, + orbits={ + [1]=0 + }, + x=-1509.88, + y=-10892.1 + }, + [696]={ + nodes={ + [1]=58718 + }, + orbits={ + [1]=0 + }, + x=-1482.46, + y=8698.1 + }, + [697]={ + nodes={ + [1]=53853, + [2]=36170, + [3]=28693, + [4]=49280, + [5]=57320 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-1456.07, + y=3778.76 + }, + [698]={ + nodes={ + [1]=45497 + }, + orbits={ + [1]=0 + }, + x=-1446.33, + y=-10165.6 + }, + [699]={ + nodes={ + [1]=17057, + [2]=22784, + [3]=17025, + [4]=13515, + [5]=14601 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-1446.33, + y=-9722.75 + }, + [700]={ + nodes={ + [1]=34058 + }, + orbits={ + [1]=0 + }, + x=-1432.94, + y=-4703.73 + }, + [701]={ + nodes={ + [1]=4345, + [2]=14598, + [3]=50837, + [4]=43979, + [5]=26926, + [6]=45333, + [7]=59781 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-1411.57, + y=-10845.8 + }, + [702]={ + nodes={ + [1]=40336 + }, + orbits={ + [1]=0 + }, + x=-1410.85, + y=8880.27 + }, + [703]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-1406.42, + y=2428.11 + }, + [704]={ + nodes={ + [1]=38646 + }, + orbits={ + [1]=0 + }, + x=-1397.89, + y=957.2 + }, + [705]={ + nodes={ + [1]=13855 + }, + orbits={ + [1]=0 + }, + x=-1396.89, + y=-954.58 + }, + [706]={ + nodes={ + [1]=42680 + }, + orbits={ + [1]=0 + }, + x=-1385.44, + y=-8272.26 + }, + [707]={ + nodes={ + [1]=54099 + }, + orbits={ + [1]=0 + }, + x=-1367.15, + y=10828.4 + }, + [708]={ + nodes={ + [1]=17150, + [2]=23888, + [3]=29399, + [4]=7390, + [5]=53647, + [6]=51446, + [7]=19750 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-1367.15, + y=11595 + }, + [709]={ + nodes={ + [1]=44707, + [2]=32885, + [3]=54785, + [4]=51735, + [5]=6689, + [6]=45599 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=-1349.52, + y=4972.79 + }, + [710]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-1349.52, + y=5917.08 + }, + [711]={ + nodes={ + [1]=36358, + [2]=19112, + [3]=12367, + [4]=3492, + [5]=60313, + [6]=56956, + [7]=54632, + [8]=36507 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-1346.98, + y=-7376.61 + }, + [712]={ + nodes={ + [1]=8349, + [2]=56564, + [3]=42077, + [4]=31644, + [5]=49235, + [6]=14739, + [7]=2102 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-1322.31, + y=-4290.85 + }, + [713]={ + nodes={ + [1]=39886 + }, + orbits={ + [1]=0 + }, + x=-1309.39, + y=-3298.79 + }, + [714]={ + nodes={ + [1]=65322 + }, + orbits={ + [1]=0 + }, + x=-1305.68, + y=8391.66 + }, + [715]={ + nodes={ + [1]=47709 + }, + orbits={ + [1]=0 + }, + x=-1305.68, + y=8698.1 + }, + [716]={ + nodes={ + [1]=47175 + }, + orbits={ + [1]=0 + }, + x=-1271.19, + y=733.1 + }, + [717]={ + nodes={ + [1]=61525 + }, + orbits={ + [1]=0 + }, + x=-1245.18, + y=-728.89 + }, + [718]={ + nodes={ + [1]=23450, + [2]=558, + [3]=23091, + [4]=63021, + [5]=11366, + [6]=39515, + [7]=39228, + [8]=62603, + [9]=19715, + [10]=46300, + [11]=52774, + [12]=57832, + [13]=34290, + [14]=5084, + [15]=35324, + [16]=34927 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-1218.9, + y=-11527.9 + }, + [719]={ + nodes={ + [1]=63814 + }, + orbits={ + [1]=0 + }, + x=-1200.68, + y=8879.97 + }, + [720]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=-1178.84, + y=-2058.22 + }, + [721]={ + nodes={ + [1]=54818 + }, + orbits={ + [1]=0 + }, + x=-1170.69, + y=8229.42 + }, + [722]={ + nodes={ + [1]=47157, + [2]=516, + [3]=7201, + [4]=61347, + [5]=64488, + [6]=48215 + }, + orbits={ + [1]=0 + }, + x=-1169.57, + y=7550.25 + }, + [723]={ + nodes={ + [1]=13333, + [2]=1091, + [3]=1700, + [4]=48699 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-1161.05, + y=-9989.29 + }, + [724]={ + nodes={ + [1]=13425 + }, + orbits={ + [1]=0 + }, + x=-1137.16, + y=8698.1 + }, + [725]={ + nodes={ + [1]=28492 + }, + orbits={ + [1]=0 + }, + x=-1099.85, + y=11095.7 + }, + [726]={ + nodes={ + [1]=45885 + }, + orbits={ + [1]=0 + }, + x=-1051.9, + y=-10395.8 + }, + [727]={ + nodes={ + [1]=40043, + [2]=9857, + [3]=55231, + [4]=37361, + [5]=54990 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-1048.42, + y=4248.9 + }, + [728]={ + nodes={ + [1]=315 + }, + orbits={ + [1]=0 + }, + x=-1032.12, + y=8879.97 + }, + [729]={ + nodes={ + [1]=33216 + }, + orbits={ + [1]=2 + }, + x=-1009.12, + y=8919.8 + }, + [730]={ + nodes={ + [1]=18086, + [2]=32427, + [3]=62844, + [4]=24655, + [5]=42127, + [6]=41573, + [7]=4456, + [8]=14363, + [9]=61338, + [10]=4776, + [11]=7333 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-949.02, + y=-5546.35 + }, + [731]={ + nodes={ + [1]=46343 + }, + orbits={ + [1]=0 + }, + x=-767.04, + y=5189.25 + }, + [732]={ + nodes={ + [1]=18407 + }, + orbits={ + [1]=0 + }, + x=-752.95, + y=-2537.92 + }, + [733]={ + nodes={ + [1]=13359, + [2]=8382, + [3]=61863, + [4]=42045, + [5]=50535, + [6]=10612, + [7]=31943 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-692.15, + y=-10845.9 + }, + [734]={ + nodes={ + [1]=10398, + [2]=3472, + [3]=56640, + [4]=26682 + }, + orbits={ + }, + x=-691.89, + y=-7030.08 + }, + [735]={ + nodes={ + [1]=18158 + }, + orbits={ + [1]=0 + }, + x=-9473.4486450215, + y=-13344.19650466 + }, + [736]={ + nodes={ + [1]=58714, + [2]=29514, + [3]=21077, + [4]=3109, + [5]=36169, + [6]=354, + [7]=48429, + [8]=52274, + [9]=39431 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-617.09, + y=6556.71 + }, + [737]={ + nodes={ + [1]=13882 + }, + orbits={ + [1]=0 + }, + x=-616.96, + y=-7619.15 + }, + [738]={ + nodes={ + [1]=49512 + }, + orbits={ + [1]=0 + }, + x=-613.83, + y=-7995.13 + }, + [739]={ + nodes={ + [1]=22439, + [2]=44498, + [3]=25101, + [4]=52199, + [5]=43139, + [6]=65248, + [7]=39752, + [8]=56409, + [9]=38068, + [10]=5936 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=-612.8, + y=-8637.76 + }, + [740]={ + nodes={ + [1]=51194, + [2]=24060, + [3]=3091, + [4]=18793, + [5]=33639, + [6]=24087, + [7]=8782 + }, + orbits={ + [1]=2 + }, + x=-611.9, + y=-7670.28 + }, + [741]={ + nodes={ + [1]=15182 + }, + orbits={ + [1]=0 + }, + x=-593.45, + y=8229.42 + }, + [742]={ + nodes={ + [1]=52003 + }, + orbits={ + [1]=2 + }, + x=-509.64, + y=-10901.4 + }, + [743]={ + nodes={ + [1]=38270, + [2]=23724, + [3]=7275, + [4]=29402, + [5]=4046, + [6]=8875, + [7]=50687 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=-484.77, + y=9710.46 + }, + [744]={ + nodes={ + [1]=63484 + }, + orbits={ + [1]=0 + }, + x=-9303.9886450215, + y=-13507.59650466 + }, + [745]={ + nodes={ + [1]=22821, + [2]=22314 + }, + orbits={ + [1]=0 + }, + x=-478.29, + y=-3316.19 + }, + [746]={ + nodes={ + [1]=51184 + }, + orbits={ + [1]=0 + }, + x=-478.29, + y=-3030.38 + }, + [747]={ + nodes={ + [1]=3823, + [2]=60230, + [3]=51968, + [4]=51335, + [5]=64046, + [6]=45522, + [7]=5726, + [8]=58362, + [9]=10192, + [10]=55909 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4 + }, + x=-478.24, + y=-3752.19 + }, + [748]={ + nodes={ + [1]=56935 + }, + orbits={ + [1]=0 + }, + x=-478.02, + y=-4703.73 + }, + [749]={ + nodes={ + [1]=22419 + }, + orbits={ + [1]=0 + }, + x=-478, + y=-2158.22 + }, + [750]={ + nodes={ + [1]=55066, + [2]=19796, + [3]=15899, + [4]=18308, + [5]=21721, + [6]=21627, + [7]=9290, + [8]=19129, + [9]=62194 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-477.53, + y=10441.9 + }, + [751]={ + nodes={ + [1]=7049, + [2]=25711, + [3]=31566, + [4]=24766, + [5]=22556, + [6]=11257, + [7]=10271, + [8]=58038, + [9]=35028, + [10]=51974 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-466.62, + y=8827.24 + }, + [752]={ + nodes={ + [1]=50383 + }, + orbits={ + [1]=0 + }, + x=-458.17, + y=-9486.35 + }, + [753]={ + nodes={ + [1]=29391, + [2]=50715, + [3]=61354, + [4]=29800 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-429.99, + y=-9489.3 + }, + [754]={ + nodes={ + [1]=47363, + [2]=13708, + [3]=9164, + [4]=25513, + [5]=51825, + [6]=47856, + [7]=32561 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=-420.12, + y=4842.33 + }, + [755]={ + nodes={ + [1]=62588 + }, + orbits={ + [1]=0 + }, + x=-405, + y=3700.21 + }, + [756]={ + nodes={ + [1]=14997 + }, + orbits={ + [1]=0 + }, + x=-376.01, + y=4798.23 + }, + [757]={ + nodes={ + [1]=55807, + [2]=6686, + [3]=1922, + [4]=41965, + [5]=1755, + [6]=18845 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-374.22, + y=-2574.13 + }, + [758]={ + nodes={ + [1]=32976, + [2]=34202, + [3]=14428, + [4]=49285, + [5]=6287, + [6]=38776, + [7]=57816, + [8]=364 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=-344.32, + y=11065.6 + }, + [759]={ + nodes={ + [1]=36564, + [2]=17754, + [3]=24039, + [4]=46644, + [5]=18348, + [6]=25239, + [7]=61267, + [8]=13174, + [9]=34419, + [10]=19482, + [11]=39470, + [12]=770, + [13]=46016, + [14]=8854, + [15]=7793, + [16]=64379, + [17]=63894, + [18]=23880, + [19]=24135, + [20]=32699 + }, + orbits={ + }, + x=-9132.2086450215, + y=-12579.59650466 + }, + [760]={ + nodes={ + [1]=53975, + [2]=55104, + [3]=33254, + [4]=19125 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-296.2, + y=-5775.53 + }, + [761]={ + nodes={ + [1]=28510, + [2]=61438, + [3]=42350 + }, + orbits={ + }, + x=-262.23, + y=3156.44 + }, + [762]={ + nodes={ + [1]=5407 + }, + orbits={ + [1]=0 + }, + x=-257.48, + y=2491.06 + }, + [763]={ + nodes={ + [1]=934, + [2]=9825, + [3]=12526 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=-248.37, + y=7972.75 + }, + [764]={ + nodes={ + [1]=44605, + [2]=2455, + [3]=48588, + [4]=13081 + }, + orbits={ + }, + x=-203.43, + y=2592.67 + }, + [765]={ + nodes={ + [1]=57039, + [2]=14572, + [3]=11037 + }, + orbits={ + [1]=3 + }, + x=-152.71, + y=3700.23 + }, + [766]={ + nodes={ + [1]=29328, + [2]=43201, + [3]=43383, + [4]=37450 + }, + orbits={ + [1]=4 + }, + x=-150.3, + y=3572.61 + }, + [767]={ + nodes={ + [1]=59779 + }, + orbits={ + [1]=0 + }, + x=-133.15, + y=1690.41 + }, + [768]={ + nodes={ + }, + orbits={ + [1]=0, + [2]=4 + }, + x=-100.91, + y=18196.4 + }, + [769]={ + nodes={ + [1]=35492, + [2]=30523, + [3]=11376, + [4]=50720, + [5]=34199, + [6]=43557 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=-73.93, + y=-9897.76 + }, + [770]={ + nodes={ + [1]=44871 + }, + orbits={ + [1]=3 + }, + x=-30.93, + y=-1405.7 + }, + [771]={ + nodes={ + [1]=46819 + }, + orbits={ + [1]=0 + }, + x=-0.88, + y=-7031.82 + }, + [772]={ + nodes={ + [1]=59362 + }, + orbits={ + [1]=0 + }, + x=0.01, + y=-10395.8 + }, + [773]={ + nodes={ + [1]=29009 + }, + orbits={ + [1]=0 + }, + x=0.01, + y=-9772.2 + }, + [774]={ + nodes={ + [1]=5314 + }, + orbits={ + [1]=4 + }, + x=0.01, + y=-9671.2 + }, + [775]={ + nodes={ + [1]=61419 + }, + orbits={ + [1]=0 + }, + x=0.01, + y=-7995.13 + }, + [776]={ + nodes={ + [1]=8616 + }, + orbits={ + [1]=0 + }, + x=0.01, + y=-5955.17 + }, + [777]={ + nodes={ + [1]=57710 + }, + orbits={ + }, + x=0.01, + y=-4700.35 + }, + [778]={ + nodes={ + [1]=22290, + [2]=5501, + [3]=48821, + [4]=15618, + [5]=32404 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=0.01, + y=-4439.9 + }, + [779]={ + nodes={ + [1]=29502, + [2]=47307, + [3]=36302, + [4]=3242, + [5]=13769, + [6]=59636, + [7]=48007 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=0.01, + y=-3031.45 + }, + [780]={ + nodes={ + [1]=54447 + }, + orbits={ + [1]=0 + }, + x=0.01, + y=-1490.58 + }, + [781]={ + nodes={ + [1]=52125 + }, + orbits={ + [1]=0 + }, + x=0.14, + y=10105.9 + }, + [782]={ + nodes={ + [1]=2847 + }, + orbits={ + [1]=0 + }, + x=0.14, + y=10828.4 + }, + [783]={ + nodes={ + [1]=11337, + [2]=29369, + [3]=23427, + [4]=47270, + [5]=52799, + [6]=60515, + [7]=44455, + [8]=19955, + [9]=62914, + [10]=41669, + [11]=55250, + [12]=56649, + [13]=41972, + [14]=17380 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4 + }, + x=0.44, + y=-11452.5 + }, + [784]={ + nodes={ + [1]=54417, + [2]=49657 + }, + orbits={ + }, + x=1.25, + y=3822.38 + }, + [785]={ + nodes={ + [1]=10247, + [2]=28370 + }, + orbits={ + }, + x=1.63, + y=3822.38 + }, + [786]={ + nodes={ + [1]=50986 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=1469.82 + }, + [787]={ + nodes={ + [1]=52442, + [2]=14254, + [3]=97 + }, + orbits={ + [1]=2 + }, + x=1.95, + y=2418.36 + }, + [788]={ + nodes={ + [1]=47150, + [2]=38779, + [3]=44836 + }, + orbits={ + [1]=2 + }, + x=1.95, + y=2829.7 + }, + [789]={ + nodes={ + [1]=48635 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=6250.78 + }, + [790]={ + nodes={ + [1]=21755 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=7013.94 + }, + [791]={ + nodes={ + [1]=57805, + [2]=43444, + [3]=7788 + }, + orbits={ + [1]=4 + }, + x=3.72, + y=5712 + }, + [792]={ + nodes={ + [1]=38003, + [2]=28361, + [3]=47782 + }, + orbits={ + [1]=4 + }, + x=4.1, + y=5712 + }, + [793]={ + nodes={ + [1]=40691, + [2]=36746, + [3]=25893, + [4]=51169, + [5]=43576, + [6]=14324, + [7]=1468, + [8]=7971 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=5.06, + y=-6484.35 + }, + [794]={ + nodes={ + [1]=63526 + }, + orbits={ + [1]=0 + }, + x=6.25, + y=5223.21 + }, + [795]={ + nodes={ + [1]=44176, + [2]=16618, + [3]=10273, + [4]=49696, + [5]=42280, + [6]=24511, + [7]=45272, + [8]=21205, + [9]=57047, + [10]=35688, + [11]=38138, + [12]=45278, + [13]=4492 + }, + orbits={ + [1]=0 + }, + x=7.01, + y=11943 + }, + [796]={ + nodes={ + [1]=54127 + }, + orbits={ + [1]=0 + }, + x=8.31, + y=8229.42 + }, + [797]={ + nodes={ + [1]=54282 + }, + orbits={ + [1]=3 + }, + x=8.31, + y=9742.42 + }, + [798]={ + nodes={ + [1]=4739 + }, + orbits={ + [1]=3 + }, + x=28.95, + y=-1404.7 + }, + [799]={ + nodes={ + [1]=59915 + }, + orbits={ + [1]=0 + }, + x=136.85, + y=1689.33 + }, + [800]={ + nodes={ + [1]=41210, + [2]=43578, + [3]=59028, + [4]=8092 + }, + orbits={ + [1]=4 + }, + x=150.01, + y=3572.63 + }, + [801]={ + nodes={ + [1]=50609, + [2]=14926, + [3]=11916 + }, + orbits={ + [1]=3 + }, + x=151.5, + y=3700.21 + }, + [802]={ + nodes={ + [1]=11311, + [2]=38057, + [3]=34061, + [4]=56910 + }, + orbits={ + }, + x=225.42, + y=2596.07 + }, + [803]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=239.13, + y=-10147.6 + }, + [804]={ + nodes={ + [1]=16538, + [2]=9217, + [3]=61281, + [4]=47733, + [5]=5108, + [6]=44330 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=260.71, + y=6565.73 + }, + [805]={ + nodes={ + [1]=10694 + }, + orbits={ + [1]=0 + }, + x=-8561.5586450215, + y=-13001.49650466 + }, + [806]={ + nodes={ + [1]=7741, + [2]=42500, + [3]=59881 + }, + orbits={ + }, + x=262.02, + y=3155.84 + }, + [807]={ + nodes={ + [1]=17340, + [2]=40341, + [3]=62051 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=265.15, + y=7972.57 + }, + [808]={ + nodes={ + [1]=26648, + [2]=22565, + [3]=17994, + [4]=24256, + [5]=63541 + }, + orbits={ + [1]=2 + }, + x=266.81, + y=10482.9 + }, + [809]={ + nodes={ + [1]=2461 + }, + orbits={ + [1]=0 + }, + x=273.71, + y=2491.06 + }, + [810]={ + nodes={ + [1]=34367 + }, + orbits={ + [1]=0 + }, + x=275.94, + y=-5926.79 + }, + [811]={ + nodes={ + [1]=30346, + [2]=34006, + [3]=15408, + [4]=29695, + [5]=43736, + [6]=6338 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=371.91, + y=-2574.13 + }, + [812]={ + nodes={ + [1]=58090 + }, + orbits={ + [1]=0 + }, + x=399.3, + y=-5702.27 + }, + [813]={ + nodes={ + [1]=1477 + }, + orbits={ + [1]=0 + }, + x=407.71, + y=3700.23 + }, + [814]={ + nodes={ + [1]=48774 + }, + orbits={ + [1]=0 + }, + x=410.91, + y=-6145.21 + }, + [815]={ + nodes={ + [1]=4017, + [2]=12918, + [3]=26447, + [4]=10079, + [5]=49633 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=418.52, + y=-9235.2 + }, + [816]={ + nodes={ + [1]=517 + }, + orbits={ + [1]=0 + }, + x=419.3, + y=-4284.19 + }, + [817]={ + nodes={ + [1]=45570, + [2]=43713, + [3]=3051, + [4]=35602, + [5]=27009, + [6]=30459 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=452.02, + y=-9772.2 + }, + [818]={ + nodes={ + [1]=56216 + }, + orbits={ + [1]=0 + }, + x=472.38, + y=-2158.22 + }, + [819]={ + nodes={ + [1]=14666, + [2]=9642, + [3]=17973, + [4]=4748, + [5]=61027 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=480.3, + y=-3752.19 + }, + [820]={ + nodes={ + [1]=39037 + }, + orbits={ + [1]=0 + }, + x=486.62, + y=-4703.51 + }, + [821]={ + nodes={ + [1]=2254 + }, + orbits={ + [1]=0 + }, + x=486.99, + y=-3030.38 + }, + [822]={ + nodes={ + [1]=4113, + [2]=36782, + [3]=55572, + [4]=44179 + }, + orbits={ + [1]=0 + }, + x=494.7, + y=-8434.59 + }, + [823]={ + nodes={ + [1]=1151, + [2]=4627, + [3]=57626 + }, + orbits={ + }, + x=494.7, + y=-8404.42 + }, + [824]={ + nodes={ + [1]=3025 + }, + orbits={ + [1]=0 + }, + x=497.14, + y=-7995.13 + }, + [825]={ + nodes={ + [1]=34030, + [2]=42614, + [3]=25594, + [4]=13634, + [5]=47441, + [6]=61992 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=497.14, + y=-7601.82 + }, + [826]={ + nodes={ + [1]=44765, + [2]=22533, + [3]=11066, + [4]=26663, + [5]=32233 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=502.66, + y=8723.77 + }, + [827]={ + nodes={ + [1]=27492 + }, + orbits={ + [1]=0 + }, + x=538.54, + y=-5918.05 + }, + [828]={ + nodes={ + [1]=45576, + [2]=51944, + [3]=55060, + [4]=43829, + [5]=49406, + [6]=47683, + [7]=51728, + [8]=33037, + [9]=6505 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=541.38, + y=9564.7 + }, + [829]={ + nodes={ + [1]=13909, + [2]=31037, + [3]=34866, + [4]=40985, + [5]=62679 + }, + orbits={ + [1]=2 + }, + x=545.49, + y=-7039.3 + }, + [830]={ + nodes={ + [1]=22691 + }, + orbits={ + [1]=0 + }, + x=552.41, + y=-4284.19 + }, + [831]={ + nodes={ + [1]=56978 + }, + orbits={ + [1]=0 + }, + x=610.22, + y=8229.3 + }, + [832]={ + nodes={ + [1]=8872 + }, + orbits={ + [1]=0 + }, + x=615.53, + y=5034.86 + }, + [833]={ + nodes={ + [1]=63267, + [2]=65424, + [3]=4377, + [4]=45488, + [5]=50273, + [6]=47893, + [7]=57774, + [8]=2394, + [9]=3131 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=615.53, + y=5034.86 + }, + [834]={ + nodes={ + [1]=34813, + [2]=7218, + [3]=62505, + [4]=32436, + [5]=60203, + [6]=472, + [7]=3744, + [8]=5332 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=624.45, + y=11228.4 + }, + [835]={ + nodes={ + [1]=13542 + }, + orbits={ + [1]=0 + }, + x=664.82, + y=-6148.06 + }, + [836]={ + nodes={ + [1]=21540 + }, + orbits={ + [1]=0 + }, + x=682.79, + y=-5708.98 + }, + [837]={ + nodes={ + }, + orbits={ + [1]=3, + [2]=4 + }, + x=685.14, + y=16471.7 + }, + [838]={ + nodes={ + [1]=15984 + }, + orbits={ + [1]=0 + }, + x=728.79, + y=-10884.2 + }, + [839]={ + nodes={ + [1]=19223, + [2]=25213, + [3]=37872, + [4]=21871, + [5]=51847, + [6]=33974, + [7]=31189, + [8]=64665, + [9]=26194, + [10]=53166, + [11]=28863 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=729.71, + y=7013.94 + }, + [840]={ + nodes={ + [1]=50150, + [2]=11873, + [3]=37279, + [4]=41159, + [5]=27434, + [6]=51234, + [7]=15991 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=743.22, + y=-10817.7 + }, + [841]={ + nodes={ + [1]=9485 + }, + orbits={ + [1]=0 + }, + x=756.52, + y=-2537.92 + }, + [842]={ + nodes={ + [1]=27658 + }, + orbits={ + [1]=0 + }, + x=787.35, + y=-5929.12 + }, + [843]={ + nodes={ + [1]=7104, + [2]=54733, + [3]=13123, + [4]=62723, + [5]=14258 + }, + orbits={ + [1]=2, + [2]=4 + }, + x=825.94, + y=-8807.18 + }, + [844]={ + nodes={ + [1]=15083 + }, + orbits={ + [1]=0 + }, + x=905.74, + y=-11253.8 + }, + [845]={ + nodes={ + [1]=25619, + [2]=42354, + [3]=57196, + [4]=23702, + [5]=43562, + [6]=3660, + [7]=63445, + [8]=59501 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=924.87, + y=10235.5 + }, + [846]={ + nodes={ + [1]=35653 + }, + orbits={ + [1]=0 + }, + x=940.85, + y=11379 + }, + [847]={ + nodes={ + [1]=58109 + }, + orbits={ + [1]=0 + }, + x=1010.78, + y=4639.54 + }, + [848]={ + nodes={ + [1]=22271 + }, + orbits={ + [1]=0 + }, + x=1029.73, + y=-11468.6 + }, + [849]={ + nodes={ + [1]=46124, + [2]=63009, + [3]=37593, + [4]=63739 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1060.36, + y=-5120.17 + }, + [850]={ + nodes={ + [1]=40783 + }, + orbits={ + [1]=0 + }, + x=1061.08, + y=-5546.35 + }, + [851]={ + nodes={ + [1]=38732 + }, + orbits={ + [1]=0 + }, + x=1063.41, + y=-7995.13 + }, + [852]={ + nodes={ + [1]=17107 + }, + orbits={ + [1]=0 + }, + x=1069.2, + y=-7546.83 + }, + [853]={ + nodes={ + [1]=40345, + [2]=42290, + [3]=52254, + [4]=37991 + }, + orbits={ + }, + x=1070.74, + y=-9412.83 + }, + [854]={ + nodes={ + [1]=50540 + }, + orbits={ + [1]=0 + }, + x=1073.28, + y=-9540.92 + }, + [855]={ + nodes={ + [1]=17711 + }, + orbits={ + [1]=0 + }, + x=1074.78, + y=-6113.73 + }, + [856]={ + nodes={ + [1]=36639, + [2]=32009, + [3]=36814, + [4]=16499 + }, + orbits={ + }, + x=1075.8, + y=-9669 + }, + [857]={ + nodes={ + [1]=60685 + }, + orbits={ + [1]=0 + }, + x=1089.99, + y=-3001.45 + }, + [858]={ + nodes={ + [1]=18651 + }, + orbits={ + [1]=0 + }, + x=1129.94, + y=-11238.3 + }, + [859]={ + nodes={ + [1]=55554 + }, + orbits={ + [1]=0 + }, + x=1139.73, + y=-11659.1 + }, + [860]={ + nodes={ + [1]=27853, + [2]=59289, + [3]=3365, + [4]=52576, + [5]=64550, + [6]=22532 + }, + orbits={ + [1]=2 + }, + x=1152.97, + y=4158.69 + }, + [861]={ + nodes={ + [1]=33180, + [2]=11788, + [3]=14355, + [4]=60269, + [5]=8483, + [6]=46989, + [7]=6588 + }, + orbits={ + [1]=0 + }, + x=1162.02, + y=-6821.54 + }, + [862]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=1168.19, + y=-2023.36 + }, + [863]={ + nodes={ + [1]=55802 + }, + orbits={ + [1]=0 + }, + x=1168.66, + y=10828.4 + }, + [864]={ + nodes={ + [1]=3717 + }, + orbits={ + [1]=0 + }, + x=1168.66, + y=11146.2 + }, + [865]={ + nodes={ + [1]=60488 + }, + orbits={ + [1]=0 + }, + x=1170.11, + y=4170.02 + }, + [866]={ + nodes={ + [1]=21274 + }, + orbits={ + [1]=0 + }, + x=1188.06, + y=8229.3 + }, + [867]={ + nodes={ + [1]=57190, + [2]=27859, + [3]=38694, + [4]=38763, + [5]=22188 + }, + orbits={ + [1]=1 + }, + x=1188.06, + y=8669.62 + }, + [868]={ + nodes={ + [1]=62237, + [2]=59281, + [3]=14394, + [4]=1221, + [5]=50124, + [6]=35743, + [7]=60116 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=1234.8, + y=5027.55 + }, + [869]={ + nodes={ + [1]=62677 + }, + orbits={ + [1]=0 + }, + x=1235.03, + y=-10395.6 + }, + [870]={ + nodes={ + [1]=26905 + }, + orbits={ + [1]=3 + }, + x=1247.12, + y=-11855.8 + }, + [871]={ + nodes={ + [1]=11736, + [2]=8821, + [3]=28975 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=1249.73, + y=-11514.7 + }, + [872]={ + nodes={ + [1]=44683 + }, + orbits={ + [1]=0 + }, + x=1270.43, + y=-728.83 + }, + [873]={ + nodes={ + [1]=50459 + }, + orbits={ + [1]=0 + }, + x=1274.68, + y=735.85 + }, + [874]={ + nodes={ + [1]=1826 + }, + orbits={ + [1]=0 + }, + x=1308.1, + y=-3294.7 + }, + [875]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=1348.97, + y=2324.75 + }, + [876]={ + nodes={ + [1]=44566 + }, + orbits={ + [1]=0 + }, + x=1353.57, + y=9646.22 + }, + [877]={ + nodes={ + [1]=65468 + }, + orbits={ + [1]=0 + }, + x=1366.53, + y=11380.9 + }, + [878]={ + nodes={ + [1]=63863, + [2]=27785 + }, + orbits={ + [1]=0 + }, + x=1367.44, + y=-11645.1 + }, + [879]={ + nodes={ + [1]=36293, + [2]=55708 + }, + orbits={ + [1]=0 + }, + x=1381.34, + y=-11239.6 + }, + [880]={ + nodes={ + [1]=13828 + }, + orbits={ + [1]=0 + }, + x=1402.97, + y=958.27 + }, + [881]={ + nodes={ + [1]=48030, + [2]=6715, + [3]=62436, + [4]=116, + [5]=3215, + [6]=41372, + [7]=44359 + }, + orbits={ + [1]=0 + }, + x=1423.72, + y=-4183.63 + }, + [882]={ + nodes={ + [1]=47759 + }, + orbits={ + [1]=0 + }, + x=1436.89, + y=-10147.3 + }, + [883]={ + nodes={ + [1]=3995, + [2]=12311, + [3]=64119, + [4]=18115, + [5]=48856, + [6]=17882, + [7]=33596 + }, + orbits={ + [1]=0 + }, + x=1450.76, + y=7777.62 + }, + [884]={ + nodes={ + [1]=53996, + [2]=17686, + [3]=43575, + [4]=41512 + }, + orbits={ + }, + x=1474.81, + y=3454.96 + }, + [885]={ + nodes={ + [1]=42736 + }, + orbits={ + [1]=0 + }, + x=1484.79, + y=-2826.54 + }, + [886]={ + nodes={ + [1]=60741, + [2]=49804, + [3]=6950, + [4]=24035, + [5]=33922 + }, + orbits={ + [1]=2 + }, + x=1505.67, + y=-5546.35 + }, + [887]={ + nodes={ + [1]=10909, + [2]=16489, + [3]=28556 + }, + orbits={ + [1]=3 + }, + x=1516.21, + y=2614.41 + }, + [888]={ + nodes={ + [1]=56651 + }, + orbits={ + [1]=0 + }, + x=1535.77, + y=727.99 + }, + [889]={ + nodes={ + [1]=19998 + }, + orbits={ + [1]=0 + }, + x=1559.69, + y=11253.6 + }, + [890]={ + nodes={ + [1]=11672 + }, + orbits={ + [1]=0 + }, + x=1563.03, + y=-4703.51 + }, + [891]={ + nodes={ + [1]=2486, + [2]=11410, + [3]=22976, + [4]=19341, + [5]=56118, + [6]=61487, + [7]=36596, + [8]=8440, + [9]=63732, + [10]=45013, + [11]=58884 + }, + orbits={ + [1]=0, + [2]=1, + [3]=4 + }, + x=1569.52, + y=6131.98 + }, + [892]={ + nodes={ + [1]=48401, + [2]=15507, + [3]=1140 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=1574.14, + y=1708.94 + }, + [893]={ + nodes={ + [1]=39116, + [2]=9941, + [3]=38888 + }, + orbits={ + [1]=3 + }, + x=1598.81, + y=3240.19 + }, + [894]={ + nodes={ + [1]=42076, + [2]=46972, + [3]=17706 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1600.36, + y=-3445.28 + }, + [895]={ + nodes={ + [1]=54783 + }, + orbits={ + [1]=1 + }, + x=1609.09, + y=-3526.5 + }, + [896]={ + nodes={ + [1]=58783, + [2]=37190, + [3]=35855, + [4]=48583, + [5]=26520, + [6]=35859 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1632.43, + y=4050.7 + }, + [897]={ + nodes={ + [1]=48846 + }, + orbits={ + [1]=0 + }, + x=1657.19, + y=9770.52 + }, + [898]={ + nodes={ + [1]=2978 + }, + orbits={ + [1]=0 + }, + x=1663.34, + y=10309.6 + }, + [899]={ + nodes={ + [1]=6266, + [2]=60085, + [3]=15839, + [4]=11667, + [5]=1915, + [6]=48617 + }, + orbits={ + [1]=1 + }, + x=1670.41, + y=10295.6 + }, + [900]={ + nodes={ + [1]=30117 + }, + orbits={ + [1]=0 + }, + x=-7077.2017180656, + y=-15153.615461435 + }, + [901]={ + nodes={ + [1]=25807 + }, + orbits={ + [1]=0 + }, + x=1694.19, + y=11468.7 + }, + [902]={ + nodes={ + [1]=30555 + }, + orbits={ + [1]=0 + }, + x=1695.71, + y=-2698.11 + }, + [903]={ + nodes={ + [1]=27234 + }, + orbits={ + [1]=0 + }, + x=1713.31, + y=-4986.63 + }, + [904]={ + nodes={ + [1]=4203 + }, + orbits={ + [1]=0 + }, + x=1714.69, + y=-2969.93 + }, + [905]={ + nodes={ + [1]=14340 + }, + orbits={ + [1]=0 + }, + x=1734.98, + y=4453 + }, + [906]={ + nodes={ + [1]=58939, + [2]=26319, + [3]=30990, + [4]=44608 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1737.77, + y=4778 + }, + [907]={ + nodes={ + [1]=2732, + [2]=65393, + [3]=52241, + [4]=58115, + [5]=94, + [6]=16790 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=1746.18, + y=-5035.12 + }, + [908]={ + nodes={ + [1]=49691, + [2]=31409, + [3]=50437, + [4]=32274, + [5]=61106, + [6]=59653, + [7]=35987 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=1759.97, + y=1320.44 + }, + [909]={ + nodes={ + [1]=48551 + }, + orbits={ + [1]=0 + }, + x=-7001.4017180656, + y=-14067.615461435 + }, + [910]={ + nodes={ + [1]=15876, + [2]=7947, + [3]=26061, + [4]=4579 + }, + orbits={ + [1]=2 + }, + x=1776.09, + y=-10680.1 + }, + [911]={ + nodes={ + [1]=17672 + }, + orbits={ + [1]=0 + }, + x=1797.54, + y=-7995.13 + }, + [912]={ + nodes={ + [1]=11230 + }, + orbits={ + [1]=0 + }, + x=1797.54, + y=-7675.13 + }, + [913]={ + nodes={ + [1]=48290, + [2]=49088, + [3]=47155, + [4]=55180, + [5]=17394, + [6]=45530, + [7]=3443, + [8]=63545 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=1798.44, + y=-7166.71 + }, + [914]={ + nodes={ + [1]=20140 + }, + orbits={ + [1]=0 + }, + x=1800.67, + y=-8634.27 + }, + [915]={ + nodes={ + [1]=20861, + [2]=8522, + [3]=26236, + [4]=38069, + [5]=45350, + [6]=338, + [7]=24491, + [8]=3438, + [9]=18856 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=1802.15, + y=-8810.16 + }, + [916]={ + nodes={ + [1]=7576, + [2]=33866, + [3]=10364, + [4]=42857, + [5]=20024, + [6]=44223, + [7]=55342, + [8]=17248, + [9]=10429, + [10]=49220 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=4 + }, + x=1821.35, + y=-1202.94 + }, + [917]={ + nodes={ + [1]=39298 + }, + orbits={ + [1]=0 + }, + x=1824.91, + y=8228.37 + }, + [918]={ + nodes={ + [1]=10998, + [2]=9736, + [3]=61396, + [4]=61318, + [5]=2843, + [6]=1019, + [7]=45037, + [8]=21438, + [9]=62235 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=1826.62, + y=8513.85 + }, + [919]={ + nodes={ + [1]=7062, + [2]=16680, + [3]=48137, + [4]=33887, + [5]=43155, + [6]=31763, + [7]=33415, + [8]=6178 + }, + orbits={ + [1]=4 + }, + x=1857.66, + y=11423.8 + }, + [920]={ + nodes={ + [1]=64726, + [2]=19573, + [3]=17553, + [4]=46296, + [5]=38479, + [6]=19342, + [7]=27493 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=1899.93, + y=6744.84 + }, + [921]={ + nodes={ + [1]=53683 + }, + orbits={ + [1]=0 + }, + x=1904.34, + y=11525 + }, + [922]={ + nodes={ + [1]=44430 + }, + orbits={ + [1]=0 + }, + x=1949.12, + y=11357.8 + }, + [923]={ + nodes={ + [1]=44343, + [2]=55276, + [3]=52980, + [4]=17366, + [5]=18970, + [6]=29361, + [7]=11938, + [8]=39964, + [9]=1215, + [10]=48198 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=4 + }, + x=1958.85, + y=-978.14 + }, + [924]={ + nodes={ + [1]=33225 + }, + orbits={ + [1]=0 + }, + x=1960.52, + y=-9606.62 + }, + [925]={ + nodes={ + [1]=21779, + [2]=9185, + [3]=40760, + [4]=60107, + [5]=57204, + [6]=47833 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1978.8, + y=-4255.94 + }, + [926]={ + nodes={ + [1]=19779, + [2]=63891, + [3]=63074, + [4]=42999, + [5]=4925 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=1999.54, + y=-11112.8 + }, + [927]={ + nodes={ + [1]=35660, + [2]=18548, + [3]=62628, + [4]=4313, + [5]=35234, + [6]=6789, + [7]=28992 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=2012.88, + y=865.02 + }, + [928]={ + nodes={ + [1]=17726, + [2]=11826 + }, + orbits={ + }, + x=2015.32, + y=2999.71 + }, + [929]={ + nodes={ + [1]=11315 + }, + orbits={ + [1]=0 + }, + x=2015.42, + y=9673.14 + }, + [930]={ + nodes={ + [1]=64427, + [2]=51892, + [3]=44188, + [4]=59387 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2081.9, + y=-8262.87 + }, + [931]={ + nodes={ + [1]=23153, + [2]=31112, + [3]=56897, + [4]=57785, + [5]=63828, + [6]=23996 + }, + orbits={ + [1]=0 + }, + x=2082.55, + y=7631.77 + }, + [932]={ + nodes={ + [1]=30082 + }, + orbits={ + [1]=0 + }, + x=2092.43, + y=11575.4 + }, + [933]={ + nodes={ + [1]=46554 + }, + orbits={ + [1]=0 + }, + x=2107.3, + y=-10394.2 + }, + [934]={ + nodes={ + [1]=41225, + [2]=48611, + [3]=4271, + [4]=62887 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2107.3, + y=-9931.58 + }, + [935]={ + nodes={ + [1]=47177 + }, + orbits={ + [1]=0 + }, + x=2110.12, + y=-4703.51 + }, + [936]={ + nodes={ + [1]=61768 + }, + orbits={ + [1]=0 + }, + x=2157.18, + y=-9511.45 + }, + [937]={ + nodes={ + [1]=61432 + }, + orbits={ + [1]=0 + }, + x=2164.6, + y=11512.6 + }, + [938]={ + nodes={ + [1]=56926, + [2]=44255, + [3]=14548, + [4]=59541, + [5]=10320, + [6]=28573, + [7]=15358, + [8]=41905 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=2165.23, + y=-6650.5 + }, + [939]={ + nodes={ + [1]=2841, + [2]=33059, + [3]=39839, + [4]=20205 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2192.99, + y=4717.44 + }, + [940]={ + nodes={ + [1]=52703 + }, + orbits={ + [1]=0 + }, + x=-6563.2817180656, + y=-13772.915461435 + }, + [941]={ + nodes={ + [1]=48568 + }, + orbits={ + [1]=0 + }, + x=2199.2, + y=3806.76 + }, + [942]={ + nodes={ + [1]=49046 + }, + orbits={ + [1]=0 + }, + x=2214.93, + y=-3836.38 + }, + [943]={ + nodes={ + [1]=62159, + [2]=59603, + [3]=57110, + [4]=46561 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2229.99, + y=-3149.3 + }, + [944]={ + nodes={ + [1]=16460, + [2]=43746, + [3]=38143 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=2235.52, + y=536.07 + }, + [945]={ + nodes={ + [1]=57810 + }, + orbits={ + [1]=0 + }, + x=2257.86, + y=-8717.37 + }, + [946]={ + nodes={ + [1]=5961 + }, + orbits={ + [1]=0 + }, + x=2260.4, + y=9939.27 + }, + [947]={ + nodes={ + [1]=54675 + }, + orbits={ + [1]=0 + }, + x=2281.59, + y=10332.1 + }, + [948]={ + nodes={ + [1]=58329, + [2]=31950, + [3]=8569 + }, + orbits={ + }, + x=2292.18, + y=-3970.17 + }, + [949]={ + nodes={ + }, + orbits={ + [1]=3, + [2]=4 + }, + x=2313.75, + y=18279 + }, + [950]={ + nodes={ + [1]=39987, + [2]=12419, + [3]=18913, + [4]=56063 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=2317.51, + y=-5438.63 + }, + [951]={ + nodes={ + [1]=40073 + }, + orbits={ + [1]=0 + }, + x=2343.9, + y=-9085.31 + }, + [952]={ + nodes={ + [1]=20744, + [2]=33053, + [3]=4844, + [4]=50795, + [5]=58013 + }, + orbits={ + [1]=1 + }, + x=2377.83, + y=2986.75 + }, + [953]={ + nodes={ + [1]=63926 + }, + orbits={ + [1]=0 + }, + x=2393.91, + y=-9611.59 + }, + [954]={ + nodes={ + [1]=26383, + [2]=8415, + [3]=26282, + [4]=27667, + [5]=23416, + [6]=56162, + [7]=65518, + [8]=62388, + [9]=30071, + [10]=59342, + [11]=47442, + [12]=59822 + }, + orbits={ + }, + x=-6319.2817180656, + y=-14203.615461435 + }, + [955]={ + nodes={ + [1]=53266 + }, + orbits={ + [1]=0 + }, + x=2453.78, + y=-8312.45 + }, + [956]={ + nodes={ + [1]=46224, + [2]=24045, + [3]=49799, + [4]=45019 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2457.39, + y=3459.95 + }, + [957]={ + nodes={ + [1]=26786, + [2]=18882 + }, + orbits={ + [1]=0 + }, + x=2459.2, + y=4266.46 + }, + [958]={ + nodes={ + [1]=23764 + }, + orbits={ + [1]=0 + }, + x=2459.21, + y=-3622.89 + }, + [959]={ + nodes={ + [1]=5295 + }, + orbits={ + [1]=0 + }, + x=2476.38, + y=9574.5 + }, + [960]={ + nodes={ + [1]=50485, + [2]=28229, + [3]=8540, + [4]=45230, + [5]=22959 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2497.88, + y=-5053.36 + }, + [961]={ + nodes={ + [1]=19288 + }, + orbits={ + [1]=0 + }, + x=2503.68, + y=7415.67 + }, + [962]={ + nodes={ + [1]=38814 + }, + orbits={ + [1]=0 + }, + x=2503.68, + y=7792.67 + }, + [963]={ + nodes={ + [1]=20387 + }, + orbits={ + [1]=0 + }, + x=2504.3, + y=-8625.66 + }, + [964]={ + nodes={ + [1]=43431, + [2]=20779, + [3]=50239, + [4]=19224, + [5]=32555, + [6]=9535, + [7]=24963, + [8]=42169, + [9]=61309, + [10]=51850, + [11]=37434 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=2511.05, + y=8731.74 + }, + [965]={ + nodes={ + [1]=63731 + }, + orbits={ + [1]=0 + }, + x=2537.98, + y=11565.8 + }, + [966]={ + nodes={ + [1]=58814 + }, + orbits={ + [1]=0 + }, + x=2568.17, + y=10828.4 + }, + [967]={ + nodes={ + [1]=29582, + [2]=43923, + [3]=19470, + [4]=50328, + [5]=10053, + [6]=9458 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=2573.06, + y=1485.46 + }, + [968]={ + nodes={ + [1]=4850 + }, + orbits={ + [1]=0 + }, + x=2577.55, + y=-4030.32 + }, + [969]={ + nodes={ + [1]=11855, + [2]=56999, + [3]=44014, + [4]=30829 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2590.36, + y=5169.65 + }, + [970]={ + nodes={ + [1]=58002, + [2]=55575, + [3]=45086, + [4]=34520, + [5]=23738 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=2590.88, + y=-7324.15 + }, + [971]={ + nodes={ + [1]=17024 + }, + orbits={ + [1]=0 + }, + x=2607.33, + y=-8878.62 + }, + [972]={ + nodes={ + [1]=53196, + [2]=12322, + [3]=32135, + [4]=35848, + [5]=28625, + [6]=46692, + [7]=51509, + [8]=9393 + }, + orbits={ + [1]=0, + [2]=1, + [3]=4 + }, + x=2622.75, + y=6605.25 + }, + [973]={ + nodes={ + [1]=35896 + }, + orbits={ + [1]=0 + }, + x=2634.6, + y=-7995.13 + }, + [974]={ + nodes={ + [1]=13738 + }, + orbits={ + [1]=0 + }, + x=2641.65, + y=-9309.5 + }, + [975]={ + nodes={ + [1]=52354 + }, + orbits={ + [1]=0 + }, + x=2667.71, + y=11496.1 + }, + [976]={ + nodes={ + [1]=31223 + }, + orbits={ + [1]=0 + }, + x=-6075.2617180656, + y=-13772.915461435 + }, + [977]={ + nodes={ + [1]=4157, + [2]=55088, + [3]=34168 + }, + orbits={ + }, + x=2694.54, + y=-2103.71 + }, + [978]={ + nodes={ + [1]=53960 + }, + orbits={ + }, + x=2704.11, + y=-2329.78 + }, + [979]={ + nodes={ + [1]=36479, + [2]=36778, + [3]=12925 + }, + orbits={ + [1]=4 + }, + x=2724.74, + y=-2058.41 + }, + [980]={ + nodes={ + [1]=61312, + [2]=20831, + [3]=29843, + [4]=55397, + [5]=44527, + [6]=44875 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=2727.45, + y=2024.66 + }, + [981]={ + nodes={ + [1]=9020, + [2]=244, + [3]=41171, + [4]=37767, + [5]=6596, + [6]=36341, + [7]=35118 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=4 + }, + x=2730.83, + y=11768.9 + }, + [982]={ + nodes={ + [1]=35503 + }, + orbits={ + [1]=0 + }, + x=2744.59, + y=-3760.9 + }, + [983]={ + nodes={ + [1]=34233, + [2]=14725, + [3]=32545, + [4]=16123 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=2753.29, + y=-2001.95 + }, + [984]={ + nodes={ + [1]=31745, + [2]=3234, + [3]=3624, + [4]=10927, + [5]=9272, + [6]=18470, + [7]=4447, + [8]=12906 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=2756.47, + y=5912.5 + }, + [985]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=2767.92, + y=0.43 + }, + [986]={ + nodes={ + [1]=19104 + }, + orbits={ + [1]=0 + }, + x=2770.83, + y=1599.66 + }, + [987]={ + nodes={ + [1]=52568 + }, + orbits={ + [1]=0 + }, + x=2776.83, + y=7019.78 + }, + [988]={ + nodes={ + [1]=53560 + }, + orbits={ + [1]=0 + }, + x=2785.02, + y=-8428.64 + }, + [989]={ + nodes={ + [1]=34984, + [2]=12661, + [3]=44917, + [4]=18895, + [5]=703, + [6]=10552 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=2787.39, + y=-5900.44 + }, + [990]={ + nodes={ + [1]=12465, + [2]=30040, + [3]=56016, + [4]=65149, + [5]=35594, + [6]=26830 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=2795.71, + y=10440.4 + }, + [991]={ + nodes={ + [1]=13576 + }, + orbits={ + [1]=0 + }, + x=2802.27, + y=-8676.29 + }, + [992]={ + nodes={ + [1]=64352 + }, + orbits={ + [1]=0 + }, + x=2806.74, + y=4311.96 + }, + [993]={ + nodes={ + [1]=37372 + }, + orbits={ + [1]=0 + }, + x=2810.3, + y=-9096.02 + }, + [994]={ + nodes={ + [1]=12337 + }, + orbits={ + [1]=0 + }, + x=2880.86, + y=9533.6 + }, + [995]={ + nodes={ + [1]=25281, + [2]=10677, + [3]=56638, + [4]=53935 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=2886.44, + y=-3430.12 + }, + [996]={ + nodes={ + [1]=7405 + }, + orbits={ + [1]=0 + }, + x=2886.7, + y=-4100.44 + }, + [997]={ + nodes={ + [1]=48585 + }, + orbits={ + [1]=0 + }, + x=2890.88, + y=2251.96 + }, + [998]={ + nodes={ + [1]=31517, + [2]=11722, + [3]=62431 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2898.16, + y=-5489.12 + }, + [999]={ + nodes={ + [1]=13341, + [2]=56841, + [3]=18451, + [4]=63255 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2899.54, + y=2850.56 + }, + [1000]={ + nodes={ + [1]=62779 + }, + orbits={ + [1]=0 + }, + x=2918.45, + y=7099.38 + }, + [1001]={ + nodes={ + [1]=62230, + [2]=19355, + [3]=37974 + }, + orbits={ + }, + x=2922.78, + y=-10114.2 + }, + [1002]={ + nodes={ + [1]=39567, + [2]=50816, + [3]=50755, + [4]=10159, + [5]=4828, + [6]=25026, + [7]=36379, + [8]=31977, + [9]=19044, + [10]=3567, + [11]=33345, + [12]=10314, + [13]=61923, + [14]=16256, + [15]=53188 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3, + [5]=4 + }, + x=2922.78, + y=-9973.75 + }, + [1003]={ + nodes={ + [1]=21336, + [2]=15975, + [3]=62984, + [4]=58182, + [5]=7344, + [6]=26931 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=2935.56, + y=-1694.84 + }, + [1004]={ + nodes={ + [1]=8975 + }, + orbits={ + [1]=0 + }, + x=2939.76, + y=-2768.08 + }, + [1005]={ + nodes={ + [1]=44487, + [2]=45137, + [3]=39884, + [4]=40271 + }, + orbits={ + }, + x=2946.52, + y=4969.56 + }, + [1006]={ + nodes={ + [1]=44345 + }, + orbits={ + [1]=0 + }, + x=2947.79, + y=4537.32 + }, + [1007]={ + nodes={ + [1]=20504, + [2]=52836, + [3]=56806, + [4]=11980, + [5]=62341 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=2995.2, + y=8568.45 + }, + [1008]={ + nodes={ + [1]=46157 + }, + orbits={ + [1]=0 + }, + x=3017.04, + y=-8315.27 + }, + [1009]={ + nodes={ + [1]=3665 + }, + orbits={ + [1]=0 + }, + x=3028.9, + y=6994.96 + }, + [1010]={ + nodes={ + [1]=50516, + [2]=41447, + [3]=31626, + [4]=59661, + [5]=13610, + [6]=2814, + [7]=26952, + [8]=12245, + [9]=19749 + }, + orbits={ + [1]=1, + [2]=3 + }, + x=3038.31, + y=11084.5 + }, + [1011]={ + nodes={ + [1]=38614, + [2]=25827, + [3]=55241, + [4]=44201, + [5]=27662 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3049.32, + y=-6418.35 + }, + [1012]={ + nodes={ + [1]=37806 + }, + orbits={ + [1]=0 + }, + x=3052.85, + y=-8723.72 + }, + [1013]={ + nodes={ + [1]=42250 + }, + orbits={ + [1]=0 + }, + x=3086.31, + y=5345.94 + }, + [1014]={ + nodes={ + [1]=40630 + }, + orbits={ + [1]=0 + }, + x=3105.36, + y=2128.06 + }, + [1015]={ + nodes={ + [1]=6772, + [2]=30695, + [3]=13783, + [4]=56472, + [5]=22795, + [6]=42781 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=3109.38, + y=1336.95 + }, + [1016]={ + nodes={ + [1]=17118 + }, + orbits={ + [1]=0 + }, + x=3112.88, + y=7440.94 + }, + [1017]={ + nodes={ + [1]=20049, + [2]=30252, + [3]=32818, + [4]=48135, + [5]=12750 + }, + orbits={ + [1]=0 + }, + x=3112.88, + y=7857 + }, + [1018]={ + nodes={ + [1]=50192 + }, + orbits={ + [1]=0 + }, + x=-5648.4017180656, + y=-14067.615461435 + }, + [1019]={ + nodes={ + [1]=32185 + }, + orbits={ + [1]=0 + }, + x=3113.83, + y=7213.29 + }, + [1020]={ + nodes={ + [1]=63064, + [2]=65437, + [3]=30634, + [4]=54413 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=3116.47, + y=-1389.24 + }, + [1021]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=3129.06, + y=-6970.48 + }, + [1022]={ + nodes={ + [1]=30047 + }, + orbits={ + [1]=0 + }, + x=3144.14, + y=3080.1 + }, + [1023]={ + nodes={ + [1]=40068, + [2]=53149, + [3]=32683 + }, + orbits={ + [1]=4 + }, + x=3145.56, + y=-1331.11 + }, + [1024]={ + nodes={ + [1]=56325 + }, + orbits={ + [1]=0 + }, + x=3195.27, + y=2366.42 + }, + [1025]={ + nodes={ + [1]=3165 + }, + orbits={ + [1]=0 + }, + x=-5560.8617180656, + y=-15153.615461435 + }, + [1026]={ + nodes={ + [1]=53965 + }, + orbits={ + [1]=0 + }, + x=3203.89, + y=9325.66 + }, + [1027]={ + nodes={ + [1]=24825, + [2]=34136, + [3]=29479 + }, + orbits={ + [1]=3 + }, + x=3203.92, + y=0.43 + }, + [1028]={ + nodes={ + [1]=48833 + }, + orbits={ + [1]=0 + }, + x=3228.15, + y=4292.78 + }, + [1029]={ + nodes={ + [1]=57517 + }, + orbits={ + [1]=0 + }, + x=3247.77, + y=3615.89 + }, + [1030]={ + nodes={ + [1]=4 + }, + orbits={ + [1]=0 + }, + x=3249.41, + y=4552.82 + }, + [1031]={ + nodes={ + [1]=46034 + }, + orbits={ + [1]=0 + }, + x=3255.08, + y=-5628.71 + }, + [1032]={ + nodes={ + [1]=55668 + }, + orbits={ + [1]=0 + }, + x=3266.72, + y=-8000 + }, + [1033]={ + nodes={ + [1]=55420, + [2]=30061, + [3]=31908, + [4]=5594, + [5]=50107, + [6]=50881 + }, + orbits={ + [1]=2 + }, + x=3269.96, + y=-7564.13 + }, + [1034]={ + nodes={ + [1]=8785 + }, + orbits={ + [1]=0 + }, + x=3272.71, + y=-7565.73 + }, + [1035]={ + nodes={ + [1]=29240 + }, + orbits={ + [1]=0 + }, + x=3284.63, + y=-9003.35 + }, + [1036]={ + nodes={ + [1]=25170, + [2]=19442, + [3]=30820, + [4]=8606 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3312.53, + y=4003.79 + }, + [1037]={ + nodes={ + [1]=13411 + }, + orbits={ + }, + x=3369.01, + y=-1178.15 + }, + [1038]={ + nodes={ + [1]=33946, + [2]=34074, + [3]=57227, + [4]=23259, + [5]=22864, + [6]=57966 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=3386.17, + y=9912.71 + }, + [1039]={ + nodes={ + [1]=16484 + }, + orbits={ + [1]=2 + }, + x=3395.61, + y=6043.67 + }, + [1040]={ + nodes={ + [1]=32943, + [2]=22368, + [3]=47088, + [4]=8789, + [5]=16938, + [6]=29930, + [7]=63182, + [8]=37266 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=3395.61, + y=6863.03 + }, + [1041]={ + nodes={ + [1]=55429 + }, + orbits={ + [1]=0 + }, + x=3398.9, + y=1369.34 + }, + [1042]={ + nodes={ + [1]=36630, + [2]=60829, + [3]=29941, + [4]=28268 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3414.8, + y=3529.44 + }, + [1043]={ + nodes={ + [1]=19808 + }, + orbits={ + [1]=0 + }, + x=3433.98, + y=1627.23 + }, + [1044]={ + nodes={ + [1]=57513 + }, + orbits={ + [1]=0 + }, + x=3444.63, + y=-9280.49 + }, + [1045]={ + nodes={ + [1]=25557 + }, + orbits={ + }, + x=3446.89, + y=-7266.34 + }, + [1046]={ + nodes={ + [1]=21280 + }, + orbits={ + [1]=0 + }, + x=3498.09, + y=2467.05 + }, + [1047]={ + nodes={ + [1]=41770, + [2]=9441, + [3]=5077, + [4]=33080, + [5]=43254, + [6]=33400 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3507.9, + y=5460.57 + }, + [1048]={ + nodes={ + [1]=11578 + }, + orbits={ + [1]=0 + }, + x=3512.67, + y=4752.05 + }, + [1049]={ + nodes={ + [1]=20837 + }, + orbits={ + [1]=0 + }, + x=3537.82, + y=3734.46 + }, + [1050]={ + nodes={ + [1]=41029 + }, + orbits={ + [1]=0 + }, + x=3541.56, + y=-6134.17 + }, + [1051]={ + nodes={ + [1]=28050 + }, + orbits={ + }, + x=3551.58, + y=2050.41 + }, + [1052]={ + nodes={ + [1]=31928, + [2]=50574, + [3]=19426, + [4]=15443 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3553.55, + y=-5454.76 + }, + [1053]={ + nodes={ + [1]=5564 + }, + orbits={ + [1]=0 + }, + x=3555.53, + y=4441.55 + }, + [1054]={ + nodes={ + [1]=24812, + [2]=56360, + [3]=64643, + [4]=27176 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3563.72, + y=-3733.75 + }, + [1055]={ + nodes={ + [1]=36997 + }, + orbits={ + [1]=0 + }, + x=3599.3, + y=2962.09 + }, + [1056]={ + nodes={ + [1]=53539, + [2]=46705, + [3]=45650, + [4]=9572, + [5]=12822 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=3607.08, + y=2672.84 + }, + [1057]={ + nodes={ + [1]=17548, + [2]=14958, + [3]=630, + [4]=13419, + [5]=31039 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=3632.11, + y=-2981.28 + }, + [1058]={ + nodes={ + [1]=10671, + [2]=23419, + [3]=55930, + [4]=5740, + [5]=40687 + }, + orbits={ + [1]=2 + }, + x=3636.66, + y=10787.4 + }, + [1059]={ + nodes={ + [1]=22049 + }, + orbits={ + [1]=0 + }, + x=3638.69, + y=1581.38 + }, + [1060]={ + nodes={ + [1]=24239, + [2]=55846, + [3]=40213, + [4]=24481 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=3641.03, + y=-482.85 + }, + [1061]={ + nodes={ + [1]=62510, + [2]=3985, + [3]=43423, + [4]=8697, + [5]=30905, + [6]=64140, + [7]=51336, + [8]=56818, + [9]=38895, + [10]=48660 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=3650.57, + y=8506.92 + }, + [1062]={ + nodes={ + [1]=49473 + }, + orbits={ + [1]=0 + }, + x=3660.16, + y=3626.42 + }, + [1063]={ + nodes={ + [1]=47754, + [2]=23455, + [3]=49740, + [4]=55847, + [5]=27274 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=3668.09, + y=-8216.37 + }, + [1064]={ + nodes={ + [1]=63861, + [2]=55947, + [3]=13823, + [4]=46088, + [5]=62153, + [6]=32054 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=3703.88, + y=-9989 + }, + [1065]={ + nodes={ + [1]=25100 + }, + orbits={ + [1]=0 + }, + x=3733.3, + y=5789.19 + }, + [1066]={ + nodes={ + [1]=25620, + [2]=26804, + [3]=55405, + [4]=59909, + [5]=30539, + [6]=9083 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=3771.31, + y=-7094.88 + }, + [1067]={ + nodes={ + [1]=10131 + }, + orbits={ + [1]=0 + }, + x=3772.62, + y=-10338.8 + }, + [1068]={ + nodes={ + [1]=51048 + }, + orbits={ + [1]=0 + }, + x=3772.84, + y=10291.5 + }, + [1069]={ + nodes={ + [1]=27761, + [2]=5826 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3776.11, + y=2965.62 + }, + [1070]={ + nodes={ + [1]=61104 + }, + orbits={ + [1]=0 + }, + x=3779.38, + y=3832.89 + }, + [1071]={ + nodes={ + [1]=39280, + [2]=55568, + [3]=44669, + [4]=32951, + [5]=14127, + [6]=44690, + [7]=41522 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=3782.58, + y=-10845.2 + }, + [1072]={ + nodes={ + [1]=11838, + [2]=10881, + [3]=33112, + [4]=36450 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=3832.63, + y=-9003.35 + }, + [1073]={ + nodes={ + [1]=5257, + [2]=55507, + [3]=22359, + [4]=9141, + [5]=13748, + [6]=38338, + [7]=35760, + [8]=16367, + [9]=60692, + [10]=5703 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=3842.13, + y=-4910.29 + }, + [1074]={ + nodes={ + [1]=5702 + }, + orbits={ + [1]=0 + }, + x=3849.74, + y=-1186.7 + }, + [1075]={ + nodes={ + [1]=38676, + [2]=27910, + [3]=53938, + [4]=64056, + [5]=36931 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=3855.19, + y=-2510.92 + }, + [1076]={ + nodes={ + [1]=56045 + }, + orbits={ + [1]=0 + }, + x=3856.59, + y=-2226.59 + }, + [1077]={ + nodes={ + [1]=44563, + [2]=59053, + [3]=54805 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=3857.5, + y=-5882.32 + }, + [1078]={ + nodes={ + [1]=13379 + }, + orbits={ + [1]=0 + }, + x=3866.11, + y=2806.15 + }, + [1079]={ + nodes={ + [1]=60505 + }, + orbits={ + [1]=0 + }, + x=3888.73, + y=1790.7 + }, + [1080]={ + nodes={ + [1]=63585 + }, + orbits={ + [1]=0 + }, + x=3915.95, + y=4292.71 + }, + [1081]={ + nodes={ + [1]=44612, + [2]=9112, + [3]=41538, + [4]=55598, + [5]=15644 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3 + }, + x=3917.46, + y=3195.79 + }, + [1082]={ + nodes={ + [1]=31855, + [2]=37408, + [3]=60738, + [4]=46761 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3918.15, + y=449.43 + }, + [1083]={ + nodes={ + [1]=23961, + [2]=10041, + [3]=32799, + [4]=30910, + [5]=17600, + [6]=8791, + [7]=18519, + [8]=59647, + [9]=32096 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=3926.82, + y=9716.85 + }, + [1084]={ + nodes={ + [1]=38459, + [2]=61373, + [3]=63610, + [4]=5988, + [5]=38568 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3926.84, + y=959.24 + }, + [1085]={ + nodes={ + [1]=33751, + [2]=8810, + [3]=12451 + }, + orbits={ + [1]=1, + [2]=3 + }, + x=3941.17, + y=7406.81 + }, + [1086]={ + nodes={ + [1]=14343 + }, + orbits={ + [1]=0 + }, + x=3946.1, + y=8993.8 + }, + [1087]={ + nodes={ + [1]=18923 + }, + orbits={ + }, + x=3992.99, + y=6086.8 + }, + [1088]={ + nodes={ + [1]=46146, + [2]=15829, + [3]=55227 + }, + orbits={ + [1]=0 + }, + x=3994, + y=-485.91 + }, + [1089]={ + nodes={ + [1]=21080, + [2]=1869, + [3]=27095, + [4]=48658, + [5]=14890 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4022.98, + y=-4125.73 + }, + [1090]={ + nodes={ + [1]=32509, + [2]=47614, + [3]=3688, + [4]=22219, + [5]=52351, + [6]=52260 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4031.85, + y=-6354.58 + }, + [1091]={ + nodes={ + [1]=13030 + }, + orbits={ + [1]=0 + }, + x=4037.79, + y=5340.36 + }, + [1092]={ + nodes={ + [1]=43691, + [2]=21746, + [3]=65009, + [4]=29517, + [5]=32701 + }, + orbits={ + }, + x=4039.97, + y=0.43 + }, + [1093]={ + nodes={ + [1]=24647, + [2]=61196 + }, + orbits={ + }, + x=4137.88, + y=-2406.01 + }, + [1094]={ + nodes={ + [1]=37220, + [2]=50342, + [3]=5227, + [4]=17955, + [5]=46402, + [6]=51708 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4182.56, + y=6218.3 + }, + [1095]={ + nodes={ + [1]=59651, + [2]=47821, + [3]=41654, + [4]=41033, + [5]=55872 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=4188.77, + y=-7809.17 + }, + [1096]={ + nodes={ + [1]=54746 + }, + orbits={ + [1]=0 + }, + x=4195.04, + y=9238 + }, + [1097]={ + nodes={ + [1]=41062, + [2]=47677, + [3]=14045, + [4]=33848, + [5]=31991, + [6]=65176, + [7]=36070, + [8]=9472 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=4216.28, + y=4693.55 + }, + [1098]={ + nodes={ + [1]=55 + }, + orbits={ + [1]=0 + }, + x=4219.73, + y=5087.65 + }, + [1099]={ + nodes={ + [1]=38703, + [2]=63525, + [3]=8249, + [4]=16816, + [5]=53094 + }, + orbits={ + [1]=0 + }, + x=4278.42, + y=10564.5 + }, + [1100]={ + nodes={ + [1]=8510 + }, + orbits={ + [1]=0 + }, + x=4283.46, + y=5565.69 + }, + [1101]={ + nodes={ + [1]=44239, + [2]=60083, + [3]=55270 + }, + orbits={ + [1]=0 + }, + x=4332.46, + y=-271.81 + }, + [1102]={ + nodes={ + [1]=55938, + [2]=41394, + [3]=56844, + [4]=40929, + [5]=43633, + [6]=40313, + [7]=58363, + [8]=10841 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=4344.88, + y=-9579.04 + }, + [1103]={ + nodes={ + [1]=9085 + }, + orbits={ + [1]=0 + }, + x=4347, + y=6925.8 + }, + [1104]={ + nodes={ + [1]=51463, + [2]=4364, + [3]=36114, + [4]=23360, + [5]=23736, + [6]=53566, + [7]=17077 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=4350.71, + y=7926.5 + }, + [1105]={ + nodes={ + [1]=50469 + }, + orbits={ + [1]=0 + }, + x=4375.94, + y=0.43 + }, + [1106]={ + nodes={ + [1]=49110 + }, + orbits={ + [1]=0 + }, + x=4385.38, + y=9460.25 + }, + [1107]={ + nodes={ + [1]=64851, + [2]=15030, + [3]=49545, + [4]=45693, + [5]=39658, + [6]=18831, + [7]=21324 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4386.25, + y=1960.69 + }, + [1108]={ + nodes={ + [1]=60974, + [2]=1506, + [3]=60324, + [4]=42339, + [5]=18744 + }, + orbits={ + [1]=2 + }, + x=4414.61, + y=-8287.6 + }, + [1109]={ + nodes={ + [1]=12761, + [2]=19156, + [3]=53941, + [4]=17367, + [5]=62841, + [6]=12249, + [7]=17283 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4435.38, + y=-1892.44 + }, + [1110]={ + nodes={ + [1]=45481, + [2]=29408, + [3]=52765, + [4]=34300, + [5]=31888, + [6]=13862 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4438.01, + y=-3100.56 + }, + [1111]={ + nodes={ + [1]=24922 + }, + orbits={ + [1]=0 + }, + x=4451.73, + y=7751.52 + }, + [1112]={ + nodes={ + [1]=40918 + }, + orbits={ + [1]=0 + }, + x=4468.06, + y=5319.67 + }, + [1113]={ + nodes={ + [1]=26068, + [2]=37389, + [3]=28061, + [4]=35878, + [5]=50884, + [6]=53696, + [7]=37644, + [8]=46874, + [9]=7449 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4480.65, + y=3149.72 + }, + [1114]={ + nodes={ + [1]=1773 + }, + orbits={ + [1]=0 + }, + x=4488.81, + y=5009.54 + }, + [1115]={ + nodes={ + [1]=30562, + [2]=13711, + [3]=3203, + [4]=8908, + [5]=11032 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4520.4, + y=-6892.55 + }, + [1116]={ + nodes={ + [1]=36298 + }, + orbits={ + [1]=0 + }, + x=4526.88, + y=5794.6 + }, + [1117]={ + nodes={ + [1]=33823 + }, + orbits={ + [1]=0 + }, + x=4536.81, + y=-4967.55 + }, + [1118]={ + nodes={ + [1]=4519 + }, + orbits={ + [1]=0 + }, + x=4542.03, + y=-5257.07 + }, + [1119]={ + nodes={ + [1]=20236 + }, + orbits={ + [1]=0 + }, + x=4542.03, + y=-4689.38 + }, + [1120]={ + nodes={ + [1]=58932 + }, + orbits={ + [1]=0 + }, + x=-3941.421466201, + y=-15586.205314021 + }, + [1121]={ + nodes={ + [1]=27262 + }, + orbits={ + [1]=0 + }, + x=4562.63, + y=9687.25 + }, + [1122]={ + nodes={ + [1]=51213 + }, + orbits={ + [1]=0 + }, + x=4563.3, + y=4714.06 + }, + [1123]={ + nodes={ + [1]=50912, + [2]=49461, + [3]=21314, + [4]=18818 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4597.23, + y=322.95 + }, + [1124]={ + nodes={ + [1]=28464 + }, + orbits={ + [1]=0 + }, + x=4599.58, + y=-6751.84 + }, + [1125]={ + nodes={ + [1]=45193, + [2]=4083, + [3]=33815, + [4]=35644, + [5]=43677 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4605.3, + y=1275.23 + }, + [1126]={ + nodes={ + [1]=33979 + }, + orbits={ + [1]=0 + }, + x=4648.31, + y=-8702.96 + }, + [1127]={ + nodes={ + [1]=11604 + }, + orbits={ + [1]=0 + }, + x=4671.12, + y=-2696.8 + }, + [1128]={ + nodes={ + [1]=49661, + [2]=49394, + [3]=23786, + [4]=33391, + [5]=56330, + [6]=39570 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=4687.08, + y=7330.29 + }, + [1129]={ + nodes={ + [1]=3251 + }, + orbits={ + [1]=0 + }, + x=4693.79, + y=-9892.16 + }, + [1130]={ + nodes={ + [1]=4059 + }, + orbits={ + [1]=0 + }, + x=4703.02, + y=-8121.08 + }, + [1131]={ + nodes={ + [1]=4346 + }, + orbits={ + [1]=0 + }, + x=4705.26, + y=-4974.35 + }, + [1132]={ + nodes={ + [1]=7782, + [2]=48805, + [3]=26563, + [4]=4810, + [5]=61905, + [6]=8938, + [7]=12778, + [8]=33229, + [9]=64996 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=4748.75, + y=-10725.2 + }, + [1133]={ + nodes={ + [1]=6161 + }, + orbits={ + [1]=0 + }, + x=4750.42, + y=-10827.1 + }, + [1134]={ + nodes={ + [1]=42460, + [2]=11882, + [3]=46182, + [4]=33838, + [5]=64747 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=4766, + y=3895.65 + }, + [1135]={ + nodes={ + [1]=6912 + }, + orbits={ + [1]=0 + }, + x=4782.59, + y=9204.08 + }, + [1136]={ + nodes={ + [1]=20467, + [2]=23244, + [3]=29899, + [4]=58312, + [5]=49497, + [6]=21792, + [7]=16786, + [8]=19001 + }, + orbits={ + [1]=1, + [2]=3 + }, + x=4786.73, + y=9130.06 + }, + [1137]={ + nodes={ + [1]=17702 + }, + orbits={ + [1]=0 + }, + x=4788.07, + y=9831.08 + }, + [1138]={ + nodes={ + [1]=64650, + [2]=35058, + [3]=30210, + [4]=38966 + }, + orbits={ + [1]=2 + }, + x=4789.34, + y=6875.05 + }, + [1139]={ + nodes={ + [1]=1995 + }, + orbits={ + [1]=0 + }, + x=4791.75, + y=2293.82 + }, + [1140]={ + nodes={ + [1]=61976 + }, + orbits={ + [1]=0 + }, + x=4795.75, + y=6464.55 + }, + [1141]={ + nodes={ + [1]=62797 + }, + orbits={ + [1]=0 + }, + x=-3677.321466201, + y=-16234.805314021 + }, + [1142]={ + nodes={ + [1]=9510, + [2]=16695, + [3]=61926, + [4]=1603 + }, + orbits={ + [1]=2 + }, + x=4821.1, + y=-7752.56 + }, + [1143]={ + nodes={ + [1]=32040 + }, + orbits={ + [1]=0 + }, + x=4825, + y=-7747.13 + }, + [1144]={ + nodes={ + [1]=7054, + [2]=47009, + [3]=37250, + [4]=21142, + [5]=55829, + [6]=1420 + }, + orbits={ + [1]=2 + }, + x=4849.31, + y=-3488.45 + }, + [1145]={ + nodes={ + [1]=34201 + }, + orbits={ + [1]=0 + }, + x=4859.19, + y=8419.96 + }, + [1146]={ + nodes={ + [1]=38668, + [2]=32664, + [3]=27671, + [4]=32681, + [5]=5188 + }, + orbits={ + [1]=0 + }, + x=4865.01, + y=-6372.1 + }, + [1147]={ + nodes={ + [1]=13724 + }, + orbits={ + [1]=4 + }, + x=4872.03, + y=-4974.35 + }, + [1148]={ + nodes={ + [1]=23343, + [2]=30392, + [3]=13157, + [4]=3775, + [5]=28106, + [6]=45244, + [7]=58388, + [8]=41016 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4874.52, + y=10455.4 + }, + [1149]={ + nodes={ + [1]=29763 + }, + orbits={ + [1]=0 + }, + x=4889.32, + y=-7413.25 + }, + [1150]={ + nodes={ + [1]=39241 + }, + orbits={ + [1]=0 + }, + x=-3593.231466201, + y=-16051.505314021 + }, + [1151]={ + nodes={ + [1]=22152, + [2]=15304, + [3]=16466, + [4]=40196 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4918.5, + y=-9036.21 + }, + [1152]={ + nodes={ + [1]=9586 + }, + orbits={ + [1]=4 + }, + x=4931.31, + y=-4650.65 + }, + [1153]={ + nodes={ + [1]=36623, + [2]=3628, + [3]=64474, + [4]=31630, + [5]=10729 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4939.08, + y=-9466.17 + }, + [1154]={ + nodes={ + [1]=13367, + [2]=21713, + [3]=50588, + [4]=38969, + [5]=6010 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4944.98, + y=-2386.46 + }, + [1155]={ + nodes={ + [1]=61356, + [2]=12498, + [3]=30341 + }, + orbits={ + [1]=0 + }, + x=4953.65, + y=2387.3 + }, + [1156]={ + nodes={ + [1]=63888 + }, + orbits={ + [1]=0 + }, + x=4955.38, + y=2861.7 + }, + [1157]={ + nodes={ + [1]=37695 + }, + orbits={ + [1]=0 + }, + x=4989.84, + y=542.4 + }, + [1158]={ + nodes={ + [1]=50879, + [2]=14211, + [3]=43238, + [4]=22972, + [5]=44540 + }, + orbits={ + [1]=1 + }, + x=4990.13, + y=5788.96 + }, + [1159]={ + nodes={ + [1]=56729, + [2]=26308, + [3]=27017, + [4]=21349 + }, + orbits={ + [1]=2 + }, + x=5001.21, + y=7989.42 + }, + [1160]={ + nodes={ + [1]=10382 + }, + orbits={ + [1]=0 + }, + x=5026.31, + y=-8702.96 + }, + [1161]={ + nodes={ + [1]=20677 + }, + orbits={ + [1]=0 + }, + x=5061.13, + y=-4971.48 + }, + [1162]={ + nodes={ + [1]=43877, + [2]=51522, + [3]=47895, + [4]=56493 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=5074.31, + y=-208.97 + }, + [1163]={ + nodes={ + [1]=38044, + [2]=11813 + }, + orbits={ + }, + x=5074.6, + y=585.09 + }, + [1164]={ + nodes={ + [1]=64345, + [2]=49968, + [3]=63679, + [4]=20008 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=5085.86, + y=7486.56 + }, + [1165]={ + nodes={ + [1]=28142 + }, + orbits={ + [1]=0 + }, + x=5094.15, + y=9900.68 + }, + [1166]={ + nodes={ + [1]=61263, + [2]=59446, + [3]=22115, + [4]=4544 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=5095.01, + y=174.43 + }, + [1167]={ + nodes={ + [1]=37946 + }, + orbits={ + [1]=0 + }, + x=5112.65, + y=2295.51 + }, + [1168]={ + nodes={ + [1]=46782, + [2]=53698, + [3]=20916, + [4]=59355 + }, + orbits={ + [1]=0 + }, + x=5188.48, + y=-751.59 + }, + [1169]={ + nodes={ + [1]=9782 + }, + orbits={ + [1]=0 + }, + x=5193.02, + y=-5200.3 + }, + [1170]={ + nodes={ + [1]=535 + }, + orbits={ + [1]=0 + }, + x=5193.02, + y=-4742.69 + }, + [1171]={ + nodes={ + [1]=2446, + [2]=50268, + [3]=22851, + [4]=37164, + [5]=419, + [6]=63400 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=5214.31, + y=-8121.08 + }, + [1172]={ + nodes={ + [1]=63668, + [2]=9069, + [3]=42245, + [4]=16024, + [5]=49150, + [6]=18167, + [7]=29288 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=5250.46, + y=-5999.69 + }, + [1173]={ + nodes={ + [1]=17788, + [2]=23352, + [3]=26085, + [4]=2877, + [5]=33570, + [6]=28431, + [7]=59, + [8]=8611, + [9]=20772, + [10]=51142, + [11]=36696, + [12]=33141, + [13]=58751, + [14]=23710 + }, + orbits={ + }, + x=-3230.171466201, + y=-15207.305314021 + }, + [1174]={ + nodes={ + [1]=49993, + [2]=40632, + [3]=48889, + [4]=28038, + [5]=3893, + [6]=64434, + [7]=56488 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5265.67, + y=5191.09 + }, + [1175]={ + nodes={ + [1]=24210, + [2]=26932, + [3]=2200, + [4]=35689, + [5]=34543 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5279.5, + y=6677.73 + }, + [1176]={ + nodes={ + [1]=30456 + }, + orbits={ + [1]=0 + }, + x=5286.04, + y=719.09 + }, + [1177]={ + nodes={ + [1]=39423, + [2]=47635, + [3]=53207, + [4]=56914 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=5288.98, + y=-7410.44 + }, + [1178]={ + nodes={ + [1]=17254, + [2]=26596, + [3]=14272 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=5300.06, + y=-3797.31 + }, + [1179]={ + nodes={ + [1]=1953 + }, + orbits={ + [1]=0 + }, + x=5316.81, + y=-1530.6 + }, + [1180]={ + nodes={ + [1]=9275, + [2]=5704, + [3]=62166, + [4]=19337 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5320.34, + y=2650.99 + }, + [1181]={ + nodes={ + [1]=28021 + }, + orbits={ + [1]=0 + }, + x=5324.92, + y=-5429.12 + }, + [1182]={ + nodes={ + [1]=34621 + }, + orbits={ + [1]=0 + }, + x=5324.92, + y=-4513.88 + }, + [1183]={ + nodes={ + [1]=44684 + }, + orbits={ + [1]=0 + }, + x=5328.27, + y=10118.5 + }, + [1184]={ + nodes={ + [1]=36759 + }, + orbits={ + [1]=0 + }, + x=5333.76, + y=-6040.15 + }, + [1185]={ + nodes={ + [1]=54198 + }, + orbits={ + [1]=0 + }, + x=5357.15, + y=9935.04 + }, + [1186]={ + nodes={ + [1]=40480 + }, + orbits={ + [1]=0 + }, + x=5368.5, + y=-1842.95 + }, + [1187]={ + nodes={ + [1]=46961 + }, + orbits={ + [1]=0 + }, + x=5371.78, + y=9762.63 + }, + [1188]={ + nodes={ + [1]=39569, + [2]=9046, + [3]=45609, + [4]=56776, + [5]=3458, + [6]=7353, + [7]=24129 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3 + }, + x=5399.15, + y=3723.01 + }, + [1189]={ + nodes={ + [1]=24165 + }, + orbits={ + [1]=0 + }, + x=5409.48, + y=-6761.17 + }, + [1190]={ + nodes={ + [1]=21984 + }, + orbits={ + [1]=1 + }, + x=5445.28, + y=-9562.99 + }, + [1191]={ + nodes={ + [1]=18121, + [2]=45319, + [3]=55041, + [4]=26135, + [5]=35564, + [6]=2335, + [7]=65310, + [8]=51565, + [9]=22682 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=5452.61, + y=-10248.4 + }, + [1192]={ + nodes={ + [1]=44420 + }, + orbits={ + [1]=0 + }, + x=5457.07, + y=-5200.42 + }, + [1193]={ + nodes={ + [1]=38541 + }, + orbits={ + [1]=0 + }, + x=5457.07, + y=-4742.78 + }, + [1194]={ + nodes={ + [1]=41645, + [2]=6490, + [3]=43964, + [4]=14082, + [5]=8831 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=5472.15, + y=-8445.56 + }, + [1195]={ + nodes={ + [1]=54176 + }, + orbits={ + [1]=0 + }, + x=5478.57, + y=-1107.81 + }, + [1196]={ + nodes={ + [1]=7526 + }, + orbits={ + [1]=0 + }, + x=5482.17, + y=6073.03 + }, + [1197]={ + nodes={ + [1]=36808, + [2]=37244, + [3]=34076, + [4]=22057, + [5]=33445, + [6]=30143, + [7]=37795 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5544.92, + y=8921.21 + }, + [1198]={ + nodes={ + [1]=46882 + }, + orbits={ + [1]=1 + }, + x=5571.69, + y=9486.45 + }, + [1199]={ + nodes={ + [1]=61601 + }, + orbits={ + [1]=0 + }, + x=5579.63, + y=-4981.71 + }, + [1200]={ + nodes={ + [1]=64213, + [2]=32155, + [3]=44204, + [4]=33729, + [5]=25700, + [6]=61246, + [7]=144, + [8]=41096, + [9]=45712, + [10]=12611 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=5581.73, + y=1347.41 + }, + [1201]={ + nodes={ + [1]=4238, + [2]=60173, + [3]=62986, + [4]=17316, + [5]=43263, + [6]=46688, + [7]=40244, + [8]=64492 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=5585.65, + y=8198.85 + }, + [1202]={ + nodes={ + [1]=5191 + }, + orbits={ + [1]=0 + }, + x=5620.6, + y=9982.22 + }, + [1203]={ + nodes={ + [1]=11472, + [2]=19880, + [3]=59390, + [4]=40270 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5646.25, + y=635.1 + }, + [1204]={ + nodes={ + [1]=26598 + }, + orbits={ + [1]=0 + }, + x=5646.98, + y=0.52 + }, + [1205]={ + nodes={ + [1]=32813 + }, + orbits={ + [1]=2 + }, + x=5658.94, + y=4004.28 + }, + [1206]={ + nodes={ + [1]=59600, + [2]=12208, + [3]=13619, + [4]=35809 + }, + orbits={ + [1]=1 + }, + x=5658.94, + y=4289.75 + }, + [1207]={ + nodes={ + [1]=49466, + [2]=9411, + [3]=30871 + }, + orbits={ + }, + x=5658.96, + y=4337.05 + }, + [1208]={ + nodes={ + [1]=23905 + }, + orbits={ + [1]=0 + }, + x=5664.01, + y=-1616.29 + }, + [1209]={ + nodes={ + [1]=2995 + }, + orbits={ + [1]=0 + }, + x=-2784.211466201, + y=-16234.805314021 + }, + [1210]={ + nodes={ + [1]=4328 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-6287.76 + }, + [1211]={ + nodes={ + [1]=3463 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-5672.71 + }, + [1212]={ + nodes={ + [1]=42379 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-4981.71 + }, + [1213]={ + nodes={ + [1]=56860, + [2]=29320, + [3]=1680, + [4]=17447, + [5]=24843 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5833.86, + y=5463.88 + }, + [1214]={ + nodes={ + [1]=38111, + [2]=10242, + [3]=6079, + [4]=32241 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5891.44, + y=-6838.35 + }, + [1215]={ + nodes={ + [1]=10944, + [2]=33366, + [3]=55193 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=5924.32, + y=-625.86 + }, + [1216]={ + nodes={ + [1]=25971, + [2]=50635, + [3]=44423 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=5933.04, + y=-2670.25 + }, + [1217]={ + nodes={ + [1]=11764, + [2]=38878, + [3]=54975, + [4]=26772, + [5]=45774, + [6]=34898, + [7]=24240 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=5943.98, + y=7225.03 + }, + [1218]={ + nodes={ + [1]=23915, + [2]=41529, + [3]=21380, + [4]=31284 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2 + }, + x=5948.12, + y=186.79 + }, + [1219]={ + nodes={ + [1]=60700, + [2]=52501, + [3]=44974 + }, + orbits={ + [1]=0 + }, + x=5965.19, + y=-239.8 + }, + [1220]={ + nodes={ + [1]=25520 + }, + orbits={ + [1]=0 + }, + x=5975.67, + y=-4755.44 + }, + [1221]={ + nodes={ + [1]=27875, + [2]=55463, + [3]=32123 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=5979.38, + y=-1521.97 + }, + [1222]={ + nodes={ + [1]=50121 + }, + orbits={ + [1]=0 + }, + x=5988.31, + y=-7475.15 + }, + [1223]={ + nodes={ + [1]=21572, + [2]=39050, + [3]=6660 + }, + orbits={ + [1]=2 + }, + x=6015.15, + y=6443.42 + }, + [1224]={ + nodes={ + [1]=31345, + [2]=30372, + [3]=42065, + [4]=55400, + [5]=37532 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=6036.73, + y=1763.34 + }, + [1225]={ + nodes={ + [1]=2516 + }, + orbits={ + [1]=0 + }, + x=-2412.531466201, + y=-15899.005314021 + }, + [1226]={ + nodes={ + [1]=21801, + [2]=30748, + [3]=44369, + [4]=24150 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=6098.71, + y=-8410.42 + }, + [1227]={ + nodes={ + [1]=43720, + [2]=14383, + [3]=18568, + [4]=46601, + [5]=46887 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6104.56, + y=8403.35 + }, + [1228]={ + nodes={ + [1]=45329 + }, + orbits={ + [1]=0 + }, + x=6129.78, + y=9643.2 + }, + [1229]={ + nodes={ + [1]=4552, + [2]=17215, + [3]=17668, + [4]=50817, + [5]=61355, + [6]=29306 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=6139.19, + y=-5350.4 + }, + [1230]={ + nodes={ + [1]=20820, + [2]=44628, + [3]=40166, + [4]=48544 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=6170.77, + y=-6134.8 + }, + [1231]={ + nodes={ + [1]=42750, + [2]=37691, + [3]=9050, + [4]=56453, + [5]=60138, + [6]=25851, + [7]=52695, + [8]=57230, + [9]=24958, + [10]=51741, + [11]=16705, + [12]=17088, + [13]=61834, + [14]=24062, + [15]=54351, + [16]=64927, + [17]=52464, + [18]=5766, + [19]=51416, + [20]=32016, + [21]=49984 + }, + orbits={ + [1]=0 + }, + x=6172.4, + y=-3563.57 + }, + [1232]={ + nodes={ + [1]=45100, + [2]=56928, + [3]=62350, + [4]=7163, + [5]=23013 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=6220.23, + y=4601.9 + }, + [1233]={ + nodes={ + [1]=20641, + [2]=14231, + [3]=40399, + [4]=51934, + [5]=43281, + [6]=25304, + [7]=47359, + [8]=40453, + [9]=61056 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=6324.58, + y=-9381.54 + }, + [1234]={ + nodes={ + [1]=23608, + [2]=40024, + [3]=2091, + [4]=61741, + [5]=6951, + [6]=63759, + [7]=26565, + [8]=24401 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=6359.19, + y=2826.09 + }, + [1235]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=6359.63, + y=6827.05 + }, + [1236]={ + nodes={ + [1]=35901, + [2]=12890, + [3]=63566, + [4]=62464, + [5]=55275, + [6]=12120, + [7]=65207, + [8]=51606, + [9]=17854 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=6365.75, + y=3674.83 + }, + [1237]={ + nodes={ + [1]=43044 + }, + orbits={ + [1]=0 + }, + x=6365.75, + y=5562.23 + }, + [1238]={ + nodes={ + [1]=34853, + [2]=25458, + [3]=37568, + [4]=45370 + }, + orbits={ + [1]=2 + }, + x=6365.75, + y=5989.65 + }, + [1239]={ + nodes={ + [1]=61403 + }, + orbits={ + [1]=0 + }, + x=6372.73, + y=-8685.67 + }, + [1240]={ + nodes={ + [1]=56349 + }, + orbits={ + [1]=0 + }, + x=6372.73, + y=-8307.67 + }, + [1241]={ + nodes={ + [1]=2128 + }, + orbits={ + [1]=0 + }, + x=6402.75, + y=9679.75 + }, + [1242]={ + nodes={ + [1]=5009, + [2]=36270, + [3]=12169 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6411.76, + y=-4456.86 + }, + [1243]={ + nodes={ + [1]=28441, + [2]=32721, + [3]=24570, + [4]=11836, + [5]=47235, + [6]=53471, + [7]=10011, + [8]=11871 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=6431.15, + y=-2256.19 + }, + [1244]={ + nodes={ + [1]=11015 + }, + orbits={ + [1]=0 + }, + x=6470.71, + y=9436.59 + }, + [1245]={ + nodes={ + [1]=54725, + [2]=56336, + [3]=21208, + [4]=21748 + }, + orbits={ + }, + x=6488.25, + y=-6987.61 + }, + [1246]={ + nodes={ + [1]=32399 + }, + orbits={ + [1]=0 + }, + x=6506.75, + y=-6478.52 + }, + [1247]={ + nodes={ + [1]=52191 + }, + orbits={ + [1]=0 + }, + x=6536.96, + y=-5291.42 + }, + [1248]={ + nodes={ + [1]=57088, + [2]=9421, + [3]=28086, + [4]=54557, + [5]=60170 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=6551.51, + y=876.88 + }, + [1249]={ + nodes={ + [1]=45709, + [2]=26363, + [3]=52803 + }, + orbits={ + }, + x=6555.55, + y=-642.86 + }, + [1250]={ + nodes={ + [1]=7412, + [2]=49291, + [3]=57945, + [4]=59356 + }, + orbits={ + [1]=0 + }, + x=6555.55, + y=-627.07 + }, + [1251]={ + nodes={ + [1]=3128, + [2]=22713, + [3]=12166 + }, + orbits={ + }, + x=6564.29, + y=-7691.65 + }, + [1252]={ + nodes={ + [1]=33221 + }, + orbits={ + [1]=0 + }, + x=6564.44, + y=-7691.65 + }, + [1253]={ + nodes={ + [1]=19722, + [2]=4959, + [3]=26331, + [4]=19003 + }, + orbits={ + [1]=0 + }, + x=6564.44, + y=-7691.65 + }, + [1254]={ + nodes={ + [1]=42658 + }, + orbits={ + [1]=0 + }, + x=6564.69, + y=4176.51 + }, + [1255]={ + nodes={ + [1]=46431 + }, + orbits={ + [1]=0 + }, + x=6576.88, + y=8924.35 + }, + [1256]={ + nodes={ + [1]=6570 + }, + orbits={ + [1]=0 + }, + x=6612.09, + y=-6987.61 + }, + [1257]={ + nodes={ + [1]=65256 + }, + orbits={ + [1]=0 + }, + x=6617.23, + y=9944.27 + }, + [1258]={ + nodes={ + [1]=40626 + }, + orbits={ + [1]=0 + }, + x=6619.11, + y=9595.71 + }, + [1259]={ + nodes={ + [1]=34845 + }, + orbits={ + [1]=0 + }, + x=6636.34, + y=9687.17 + }, + [1260]={ + nodes={ + [1]=38463 + }, + orbits={ + [1]=0 + }, + x=6649.25, + y=8378.88 + }, + [1261]={ + nodes={ + [1]=22329, + [2]=58526, + [3]=331, + [4]=32891, + [5]=62427, + [6]=42103, + [7]=50673 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=6654.65, + y=7621.83 + }, + [1262]={ + nodes={ + [1]=1631, + [2]=14001, + [3]=56893, + [4]=29049 + }, + orbits={ + [1]=2 + }, + x=6661.76, + y=246.47 + }, + [1263]={ + nodes={ + [1]=28199 + }, + orbits={ + [1]=0 + }, + x=6670.73, + y=9432.42 + }, + [1264]={ + nodes={ + [1]=54678 + }, + orbits={ + [1]=0 + }, + x=6720.04, + y=-1779.61 + }, + [1265]={ + nodes={ + [1]=60735 + }, + orbits={ + [1]=0 + }, + x=6729.48, + y=3890.84 + }, + [1266]={ + nodes={ + [1]=57724, + [2]=26885, + [3]=34473, + [4]=20782, + [5]=42361 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=6734.63, + y=-5492.35 + }, + [1267]={ + nodes={ + [1]=26268, + [2]=22710, + [3]=45111, + [4]=59214 + }, + orbits={ + }, + x=6735.94, + y=-6987.61 + }, + [1268]={ + nodes={ + [1]=21111, + [2]=43522, + [3]=33099 + }, + orbits={ + [1]=4 + }, + x=6771.38, + y=8501.01 + }, + [1269]={ + nodes={ + [1]=46857 + }, + orbits={ + [1]=0 + }, + x=6790.3, + y=-6502.08 + }, + [1270]={ + nodes={ + [1]=52060, + [2]=17602, + [3]=59799, + [4]=7338, + [5]=59798, + [6]=5335 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=6844.88, + y=-9157.81 + }, + [1271]={ + nodes={ + [1]=21495, + [2]=42794, + [3]=31433, + [4]=5348 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6846.27, + y=4801 + }, + [1272]={ + nodes={ + [1]=54883 + }, + orbits={ + [1]=0 + }, + x=6883.65, + y=-5638.13 + }, + [1273]={ + nodes={ + [1]=26432 + }, + orbits={ + [1]=0 + }, + x=6900.54, + y=3596.76 + }, + [1274]={ + nodes={ + [1]=60273 + }, + orbits={ + [1]=0 + }, + x=7001.73, + y=9638.79 + }, + [1275]={ + nodes={ + [1]=59775 + }, + orbits={ + [1]=0 + }, + x=7020.48, + y=-5774.94 + }, + [1276]={ + nodes={ + [1]=6842, + [2]=28329, + [3]=18472, + [4]=46533, + [5]=3700, + [6]=36723 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=7031.53, + y=7197.76 + }, + [1277]={ + nodes={ + [1]=32438 + }, + orbits={ + [1]=0 + }, + x=7037.31, + y=-8704.88 + }, + [1278]={ + nodes={ + [1]=28623, + [2]=60464, + [3]=12998, + [4]=9968, + [5]=30463, + [6]=58971, + [7]=38678 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=7059, + y=5648.15 + }, + [1279]={ + nodes={ + [1]=51871, + [2]=8045, + [3]=3042 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7065.9, + y=-3324.15 + }, + [1280]={ + nodes={ + [1]=28823, + [2]=11094, + [3]=59303 + }, + orbits={ + [1]=4 + }, + x=7074.07, + y=9630.67 + }, + [1281]={ + nodes={ + [1]=23547, + [2]=45798, + [3]=43944, + [4]=30102, + [5]=62578, + [6]=46615, + [7]=53177 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7077.07, + y=-4647.67 + }, + [1282]={ + nodes={ + [1]=14658 + }, + orbits={ + [1]=0 + }, + x=7088.65, + y=0.01 + }, + [1283]={ + nodes={ + [1]=28903, + [2]=42959, + [3]=59644, + [4]=32896, + [5]=22517 + }, + orbits={ + [1]=0 + }, + x=7088.65, + y=513.17 + }, + [1284]={ + nodes={ + [1]=55149 + }, + orbits={ + [1]=0 + }, + x=7119.01, + y=-8248.39 + }, + [1285]={ + nodes={ + [1]=14446 + }, + orbits={ + [1]=0 + }, + x=7123.27, + y=-7914.57 + }, + [1286]={ + nodes={ + [1]=11825 + }, + orbits={ + [1]=0 + }, + x=7191.57, + y=4152.81 + }, + [1287]={ + nodes={ + [1]=62185 + }, + orbits={ + [1]=0 + }, + x=7236.46, + y=5087.69 + }, + [1288]={ + nodes={ + [1]=48974, + [2]=47418, + [3]=63517, + [4]=23839, + [5]=53958, + [6]=51006, + [7]=10738 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7271.19, + y=-1655.98 + }, + [1289]={ + nodes={ + [1]=64601 + }, + orbits={ + [1]=0 + }, + x=7273.71, + y=-2633.18 + }, + [1290]={ + nodes={ + [1]=41877 + }, + orbits={ + [1]=0 + }, + x=7273.71, + y=-2313.18 + }, + [1291]={ + nodes={ + [1]=40333, + [2]=43102, + [3]=30197, + [4]=52415, + [5]=24178, + [6]=42998, + [7]=32655, + [8]=33514 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7300.34, + y=2711.86 + }, + [1292]={ + nodes={ + [1]=29285, + [2]=9745, + [3]=11774, + [4]=58513, + [5]=16602, + [6]=14418 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=7334.57, + y=8277.54 + }, + [1293]={ + nodes={ + [1]=9199, + [2]=60323, + [3]=47560, + [4]=6792, + [5]=23221, + [6]=4534, + [7]=42302, + [8]=33245, + [9]=9151, + [10]=45331, + [11]=31918 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4 + }, + x=7345.82, + y=2075.69 + }, + [1294]={ + nodes={ + [1]=52971, + [2]=21227, + [3]=36290, + [4]=23046, + [5]=62936, + [6]=51891, + [7]=49976, + [8]=25528 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=7365.71, + y=-6708.34 + }, + [1295]={ + nodes={ + [1]=51040, + [2]=23822, + [3]=327, + [4]=58779, + [5]=9652 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7374.83, + y=-7151.38 + }, + [1296]={ + nodes={ + [1]=15424, + [2]=35151, + [3]=44453, + [4]=58157, + [5]=61149, + [6]=42760 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=7384.78, + y=-3775.88 + }, + [1297]={ + nodes={ + [1]=24120, + [2]=52053, + [3]=14048, + [4]=34717, + [5]=10495 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=7386.63, + y=-380.49 + }, + [1298]={ + nodes={ + [1]=26762 + }, + orbits={ + [1]=0 + }, + x=7420.17, + y=-8305.21 + }, + [1299]={ + nodes={ + [1]=30657 + }, + orbits={ + [1]=0 + }, + x=7430.94, + y=7597.17 + }, + [1300]={ + nodes={ + [1]=22817, + [2]=42714, + [3]=22962, + [4]=58848, + [5]=55724, + [6]=58644, + [7]=10576, + [8]=29065 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4 + }, + x=7459.44, + y=6789.98 + }, + [1301]={ + nodes={ + [1]=35380, + [2]=10058 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7466.03, + y=-8440.88 + }, + [1302]={ + nodes={ + [1]=14724 + }, + orbits={ + [1]=0 + }, + x=7487.17, + y=5195.85 + }, + [1303]={ + nodes={ + [1]=35671, + [2]=11504, + [3]=30839, + [4]=31172 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=7495.21, + y=1196.11 + }, + [1304]={ + nodes={ + [1]=44373 + }, + orbits={ + [1]=0 + }, + x=7501.94, + y=-8629.84 + }, + [1305]={ + nodes={ + [1]=336, + [2]=4806, + [3]=49388, + [4]=37304, + [5]=64543, + [6]=61921, + [7]=38215 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=7520.58, + y=-906.8 + }, + [1306]={ + nodes={ + [1]=6800 + }, + orbits={ + [1]=0 + }, + x=7559.71, + y=-8913.34 + }, + [1307]={ + nodes={ + [1]=47374, + [2]=18049, + [3]=5802 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=7559.9, + y=4790.76 + }, + [1308]={ + nodes={ + [1]=1448, + [2]=6530, + [3]=24269, + [4]=19542 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7570.55, + y=3482.17 + }, + [1309]={ + nodes={ + [1]=32301 + }, + orbits={ + [1]=0 + }, + x=7573.53, + y=5472.94 + }, + [1310]={ + nodes={ + [1]=15301, + [2]=10277, + [3]=64064, + [4]=4709, + [5]=35477 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7632.55, + y=696.89 + }, + [1311]={ + nodes={ + [1]=31692, + [2]=46197, + [3]=61333, + [4]=45702, + [5]=39237 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7645.67, + y=-7774.6 + }, + [1312]={ + nodes={ + [1]=49130, + [2]=58416, + [3]=1020, + [4]=54631, + [5]=30132 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7664.38, + y=1483.08 + }, + [1313]={ + nodes={ + [1]=37813 + }, + orbits={ + [1]=0 + }, + x=7678.02, + y=5026.98 + }, + [1314]={ + nodes={ + [1]=58022 + }, + orbits={ + [1]=0 + }, + x=7691.01, + y=-8333.04 + }, + [1315]={ + nodes={ + [1]=52445 + }, + orbits={ + [1]=0 + }, + x=7747, + y=-5468.73 + }, + [1316]={ + nodes={ + [1]=34324, + [2]=13457, + [3]=3630, + [4]=56838, + [5]=26034, + [6]=45631, + [7]=62624, + [8]=42805 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=7749.73, + y=-5462.17 + }, + [1317]={ + nodes={ + [1]=57821 + }, + orbits={ + [1]=4 + }, + x=7752.6, + y=-4481.19 + }, + [1318]={ + nodes={ + [1]=55377, + [2]=26211, + [3]=24883, + [4]=44573 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7755.88, + y=-1645.82 + }, + [1319]={ + nodes={ + [1]=59503, + [2]=22208, + [3]=60034, + [4]=6330, + [5]=15207, + [6]=4378 + }, + orbits={ + [1]=0 + }, + x=7762.38, + y=6434.67 + }, + [1320]={ + nodes={ + [1]=5186 + }, + orbits={ + [1]=0 + }, + x=7764.53, + y=-8668.33 + }, + [1321]={ + nodes={ + [1]=34497 + }, + orbits={ + [1]=0 + }, + x=7768.26, + y=228.34 + }, + [1322]={ + nodes={ + [1]=56023 + }, + orbits={ + [1]=0 + }, + x=7806.6, + y=-2934.34 + }, + [1323]={ + nodes={ + [1]=33404 + }, + orbits={ + [1]=0 + }, + x=7810.1, + y=-4823.01 + }, + [1324]={ + nodes={ + [1]=50277 + }, + orbits={ + [1]=0 + }, + x=7815.76, + y=5381.08 + }, + [1325]={ + nodes={ + [1]=44932 + }, + orbits={ + [1]=3 + }, + x=7818.48, + y=5206.42 + }, + [1326]={ + nodes={ + [1]=52361, + [2]=57462, + [3]=53771, + [4]=12078, + [5]=33713, + [6]=26107 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7868.42, + y=-3177.92 + }, + [1327]={ + nodes={ + [1]=50701 + }, + orbits={ + [1]=0 + }, + x=7874.86, + y=5154.88 + }, + [1328]={ + nodes={ + [1]=47976 + }, + orbits={ + [1]=0 + }, + x=7886.46, + y=-7151.38 + }, + [1329]={ + nodes={ + [1]=48462, + [2]=38497, + [3]=62803, + [4]=25029 + }, + orbits={ + [1]=4 + }, + x=7901.35, + y=8803.79 + }, + [1330]={ + nodes={ + [1]=33463 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-1873.69 + }, + [1331]={ + nodes={ + [1]=49996 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-996.84 + }, + [1332]={ + nodes={ + [1]=32183 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-571.97 + }, + [1333]={ + nodes={ + [1]=12253 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=0.01 + }, + [1334]={ + nodes={ + [1]=35696 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=1153.21 + }, + [1335]={ + nodes={ + [1]=2408 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=2075.69 + }, + [1336]={ + nodes={ + [1]=42118 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=2711.86 + }, + [1337]={ + nodes={ + [1]=10648, + [2]=26400, + [3]=8904 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=8000.05, + y=4152.81 + }, + [1338]={ + nodes={ + [1]=63830, + [2]=44841, + [3]=45390, + [4]=13624, + [5]=59064, + [6]=44756, + [7]=28258, + [8]=36927, + [9]=36976, + [10]=55235 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3 + }, + x=8014.32, + y=8180.55 + }, + [1339]={ + nodes={ + [1]=55664, + [2]=16568, + [3]=63246, + [4]=34702, + [5]=60992, + [6]=31826, + [7]=33585, + [8]=24889 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=8073.32, + y=5817.48 + }, + [1340]={ + nodes={ + [1]=17146, + [2]=57518, + [3]=31366, + [4]=3843, + [5]=65265 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8122.32, + y=3085.39 + }, + [1341]={ + nodes={ + [1]=43453 + }, + orbits={ + [1]=0 + }, + x=8124.67, + y=632.41 + }, + [1342]={ + nodes={ + [1]=62542, + [2]=45713, + [3]=39607, + [4]=2559, + [5]=16329 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=8175.23, + y=-4097.21 + }, + [1343]={ + nodes={ + [1]=24786 + }, + orbits={ + [1]=0 + }, + x=8177.92, + y=6850.21 + }, + [1344]={ + nodes={ + [1]=44490 + }, + orbits={ + [1]=0 + }, + x=8203.42, + y=-391.25 + }, + [1345]={ + nodes={ + [1]=12239 + }, + orbits={ + [1]=0 + }, + x=8254.56, + y=-2462.39 + }, + [1346]={ + nodes={ + [1]=64050 + }, + orbits={ + [1]=0 + }, + x=8280.06, + y=715.96 + }, + [1347]={ + nodes={ + [1]=54152 + }, + orbits={ + [1]=0 + }, + x=8280.54, + y=369.3 + }, + [1348]={ + nodes={ + [1]=1599, + [2]=35173, + [3]=16013, + [4]=41811, + [5]=16140, + [6]=31286 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=8281.88, + y=-2509.71 + }, + [1349]={ + nodes={ + [1]=1416 + }, + orbits={ + [1]=0 + }, + x=8284.38, + y=-6118.71 + }, + [1350]={ + nodes={ + [1]=8456, + [2]=10267, + [3]=38329 + }, + orbits={ + [1]=0 + }, + x=8287.51, + y=1489.62 + }, + [1351]={ + nodes={ + [1]=5163, + [2]=48103, + [3]=26726, + [4]=52875 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8294.62, + y=-1449.59 + }, + [1352]={ + nodes={ + [1]=16401 + }, + orbits={ + [1]=0 + }, + x=8325.04, + y=-131 + }, + [1353]={ + nodes={ + [1]=39881 + }, + orbits={ + [1]=0 + }, + x=8344.62, + y=-2618.36 + }, + [1354]={ + nodes={ + [1]=24070 + }, + orbits={ + [1]=0 + }, + x=8357.14, + y=1153.21 + }, + [1355]={ + nodes={ + [1]=19461, + [2]=38944, + [3]=43338, + [4]=5797, + [5]=22063, + [6]=64415, + [7]=56767 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=8357.5, + y=-6160.65 + }, + [1356]={ + nodes={ + [1]=33348, + [2]=11509, + [3]=17664, + [4]=7465, + [5]=11463 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=8363.42, + y=2346.58 + }, + [1357]={ + nodes={ + [1]=51602, + [2]=23305, + [3]=21279, + [4]=44280, + [5]=35534 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8365.09, + y=1769.99 + }, + [1358]={ + nodes={ + [1]=3994, + [2]=9089, + [3]=37951, + [4]=41020, + [5]=34908 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=8369.01, + y=4523.71 + }, + [1359]={ + nodes={ + [1]=3431, + [2]=5305, + [3]=43082 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=8388.6, + y=6235.46 + }, + [1360]={ + nodes={ + [1]=30077 + }, + orbits={ + [1]=0 + }, + x=8390.12, + y=-7635.29 + }, + [1361]={ + nodes={ + [1]=24656 + }, + orbits={ + [1]=0 + }, + x=8400.25, + y=166.19 + }, + [1362]={ + nodes={ + [1]=7302, + [2]=52615, + [3]=33093, + [4]=25729, + [5]=37876 + }, + orbits={ + [1]=4 + }, + x=8409.99, + y=-7674.9 + }, + [1363]={ + nodes={ + [1]=12800 + }, + orbits={ + [1]=0 + }, + x=8433.06, + y=504.46 + }, + [1364]={ + nodes={ + [1]=61800, + [2]=52630, + [3]=28371, + [4]=60560, + [5]=29527 + }, + orbits={ + [1]=0 + }, + x=8443.67, + y=-719.43 + }, + [1365]={ + nodes={ + [1]=1514 + }, + orbits={ + [1]=0 + }, + x=8444.56, + y=-598.28 + }, + [1366]={ + nodes={ + [1]=12893 + }, + orbits={ + [1]=0 + }, + x=8446.46, + y=6869.13 + }, + [1367]={ + nodes={ + [1]=7809 + }, + orbits={ + [1]=0 + }, + x=8464.96, + y=-3633.16 + }, + [1368]={ + nodes={ + [1]=54984 + }, + orbits={ + [1]=0 + }, + x=8470.97, + y=4890.73 + }, + [1369]={ + nodes={ + [1]=56988 + }, + orbits={ + [1]=0 + }, + x=8506.18, + y=-3240.16 + }, + [1370]={ + nodes={ + [1]=47831, + [2]=44522, + [3]=63762, + [4]=34541, + [5]=52743, + [6]=8734 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=8512.95, + y=-1003.98 + }, + [1371]={ + nodes={ + [1]=12174, + [2]=18864, + [3]=49107, + [4]=54562, + [5]=49485, + [6]=2745 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=8553.74, + y=2712.82 + }, + [1372]={ + nodes={ + [1]=43090 + }, + orbits={ + [1]=0 + }, + x=8601.56, + y=-234.44 + }, + [1373]={ + nodes={ + [1]=32672, + [2]=23362, + [3]=4031, + [4]=17871, + [5]=13701, + [6]=9928, + [7]=50403 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=8602.39, + y=-5782.69 + }, + [1374]={ + nodes={ + [1]=8896 + }, + orbits={ + [1]=0 + }, + x=8629.29, + y=605.39 + }, + [1375]={ + nodes={ + [1]=15814 + }, + orbits={ + [1]=0 + }, + x=8660.79, + y=276.65 + }, + [1376]={ + nodes={ + [1]=59538 + }, + orbits={ + [1]=0 + }, + x=8684.39, + y=-6347.76 + }, + [1377]={ + nodes={ + [1]=58397, + [2]=19338, + [3]=31647 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=8692.14, + y=1153.21 + }, + [1378]={ + nodes={ + [1]=65167 + }, + orbits={ + [1]=0 + }, + x=8704.67, + y=6828.76 + }, + [1379]={ + nodes={ + [1]=25055, + [2]=13799, + [3]=41580, + [4]=36576, + [5]=41298 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8732.17, + y=4438.38 + }, + [1380]={ + nodes={ + [1]=60483 + }, + orbits={ + [1]=0 + }, + x=8733.08, + y=-3633.16 + }, + [1381]={ + nodes={ + [1]=36540 + }, + orbits={ + [1]=0 + }, + x=8733.08, + y=-3371.16 + }, + [1382]={ + nodes={ + [1]=25070, + [2]=11252, + [3]=32903, + [4]=39911, + [5]=25361 + }, + orbits={ + [1]=2 + }, + x=8744.6, + y=-4572.62 + }, + [1383]={ + nodes={ + [1]=19074, + [2]=8560, + [3]=31273, + [4]=35985, + [5]=13987, + [6]=48531, + [7]=56761, + [8]=7604, + [9]=17372 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=8801.96, + y=2075.59 + }, + [1384]={ + nodes={ + [1]=712 + }, + orbits={ + [1]=0 + }, + x=8833.93, + y=6608.57 + }, + [1385]={ + nodes={ + [1]=24948 + }, + orbits={ + [1]=0 + }, + x=8835.76, + y=6604.98 + }, + [1386]={ + nodes={ + [1]=36071, + [2]=38369, + [3]=35223, + [4]=36677, + [5]=13895, + [6]=61112, + [7]=18910, + [8]=21225, + [9]=10265, + [10]=9240, + [11]=19767, + [12]=55680, + [13]=9227 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=8847.14, + y=7072.15 + }, + [1387]={ + nodes={ + [1]=15625, + [2]=23253, + [3]=65161, + [4]=3170, + [5]=22811 + }, + orbits={ + [1]=2 + }, + x=8862.17, + y=5791.31 + }, + [1388]={ + nodes={ + [1]=18717 + }, + orbits={ + [1]=0 + }, + x=8862.26, + y=-3861.86 + }, + [1389]={ + nodes={ + [1]=24287 + }, + orbits={ + [1]=0 + }, + x=8886.25, + y=6141.88 + }, + [1390]={ + nodes={ + [1]=8273 + }, + orbits={ + [1]=0 + }, + x=8922.01, + y=-4178.25 + }, + [1391]={ + nodes={ + [1]=51241, + [2]=50420, + [3]=55118, + [4]=31364 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8927.04, + y=4861.35 + }, + [1392]={ + nodes={ + [1]=60210, + [2]=6078, + [3]=64325, + [4]=45304, + [5]=61119, + [6]=63431 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=8940.31, + y=-1873.69 + }, + [1393]={ + nodes={ + [1]=1801, + [2]=60, + [3]=58426, + [4]=34401 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8971.45, + y=474.23 + }, + [1394]={ + nodes={ + [1]=15356 + }, + orbits={ + [1]=0 + }, + x=8992.39, + y=-3633.64 + }, + [1395]={ + nodes={ + [1]=40990 + }, + orbits={ + [1]=0 + }, + x=8993.62, + y=-3178.16 + }, + [1396]={ + nodes={ + [1]=2334 + }, + orbits={ + [1]=0 + }, + x=9027.14, + y=1153.21 + }, + [1397]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=9053.85, + y=1471.47 + }, + [1398]={ + nodes={ + [1]=14226 + }, + orbits={ + [1]=0 + }, + x=9119.2, + y=6374.82 + }, + [1399]={ + nodes={ + [1]=17420 + }, + orbits={ + [1]=0 + }, + x=9124.17, + y=-3861.86 + }, + [1400]={ + nodes={ + [1]=18815 + }, + orbits={ + [1]=0 + }, + x=9125.5, + y=-3407.73 + }, + [1401]={ + nodes={ + [1]=25565 + }, + orbits={ + [1]=2 + }, + x=9152.09, + y=-4119.84 + }, + [1402]={ + nodes={ + [1]=34478 + }, + orbits={ + [1]=0 + }, + x=9189.45, + y=3777.45 + }, + [1403]={ + nodes={ + [1]=53150, + [2]=17589, + [3]=45012, + [4]=8246, + [5]=37742, + [6]=64462, + [7]=37548, + [8]=15270, + [9]=36085 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=9207.96, + y=-758.57 + }, + [1404]={ + nodes={ + [1]=41017 + }, + orbits={ + [1]=0 + }, + x=9212.92, + y=-2.42 + }, + [1405]={ + nodes={ + [1]=59657, + [2]=58692, + [3]=58593, + [4]=49356, + [5]=60239, + [6]=15343, + [7]=26556, + [8]=18314, + [9]=42078 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=9257.6, + y=-2702.28 + }, + [1406]={ + nodes={ + [1]=36364 + }, + orbits={ + [1]=0 + }, + x=9287.06, + y=3103.82 + }, + [1407]={ + nodes={ + [1]=43064 + }, + orbits={ + [1]=0 + }, + x=9288.71, + y=3526.05 + }, + [1408]={ + nodes={ + [1]=10162, + [2]=3336, + [3]=36231, + [4]=30615, + [5]=65204 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=9329.96, + y=-5015.5 + }, + [1409]={ + nodes={ + [1]=37242, + [2]=59368, + [3]=61215, + [4]=9532, + [5]=16871, + [6]=54031 + }, + orbits={ + [1]=0 + }, + x=9400, + y=4449.79 + }, + [1410]={ + nodes={ + [1]=22927, + [2]=20582, + [3]=29246 + }, + orbits={ + }, + x=9400.47, + y=5023.83 + }, + [1411]={ + nodes={ + [1]=56701 + }, + orbits={ + [1]=0 + }, + x=9437.62, + y=3691.67 + }, + [1412]={ + nodes={ + [1]=52257 + }, + orbits={ + [1]=0 + }, + x=9455.83, + y=2570.72 + }, + [1413]={ + nodes={ + }, + orbits={ + [1]=0 + }, + x=9458.47, + y=-3946 + }, + [1414]={ + nodes={ + [1]=27422, + [2]=2021, + [3]=17687, + [4]=10472, + [5]=25857 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=9465.68, + y=5354.06 + }, + [1415]={ + nodes={ + [1]=62096 + }, + orbits={ + [1]=0 + }, + x=9477.71, + y=3854.15 + }, + [1416]={ + nodes={ + [1]=63600 + }, + orbits={ + [1]=0 + }, + x=9507.95, + y=2888.65 + }, + [1417]={ + nodes={ + [1]=31765 + }, + orbits={ + [1]=0 + }, + x=9512.58, + y=-5497.3 + }, + [1418]={ + nodes={ + [1]=37616, + [2]=8644, + [3]=33964, + [4]=64295, + [5]=27834, + [6]=63659, + [7]=37688, + [8]=27417, + [9]=62496, + [10]=34912, + [11]=4664, + [12]=43938, + [13]=34449 + }, + orbits={ + [1]=4 + }, + x=9516.92, + y=-7180.28 + }, + [1419]={ + nodes={ + [1]=34015 + }, + orbits={ + [1]=0 + }, + x=9527.62, + y=5500.5 + }, + [1420]={ + nodes={ + [1]=47853 + }, + orbits={ + [1]=0 + }, + x=9566.38, + y=3484.69 + }, + [1421]={ + nodes={ + [1]=27513, + [2]=65498, + [3]=39307, + [4]=7294, + [5]=37026 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=9588.39, + y=-215.5 + }, + [1422]={ + nodes={ + [1]=44891, + [2]=55835, + [3]=20909, + [4]=52537, + [5]=7023 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=9590.33, + y=-3478.67 + }, + [1423]={ + nodes={ + [1]=59083, + [2]=32364, + [3]=1073, + [4]=32858, + [5]=1205, + [6]=14882, + [7]=5048, + [8]=261 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=9649.45, + y=5859.96 + }, + [1424]={ + nodes={ + [1]=57069 + }, + orbits={ + [1]=0 + }, + x=9696.74, + y=2772.94 + }, + [1425]={ + nodes={ + [1]=63192 + }, + orbits={ + [1]=0 + }, + x=9712.8, + y=4026.57 + }, + [1426]={ + nodes={ + [1]=65091, + [2]=1841, + [3]=38728, + [4]=44776, + [5]=3209, + [6]=14539, + [7]=9405, + [8]=51707, + [9]=59720, + [10]=41163 + }, + orbits={ + [1]=0 + }, + x=9720.67, + y=1153.21 + }, + [1427]={ + nodes={ + [1]=62998 + }, + orbits={ + [1]=0 + }, + x=9731.16, + y=3030.3 + }, + [1428]={ + nodes={ + [1]=28414 + }, + orbits={ + [1]=0 + }, + x=9738.29, + y=3696.59 + }, + [1429]={ + nodes={ + [1]=45382, + [2]=28859, + [3]=53265 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=9754.7, + y=-1887.15 + }, + [1430]={ + nodes={ + [1]=722 + }, + orbits={ + [1]=0 + }, + x=9755.52, + y=-4566.29 + }, + [1431]={ + nodes={ + [1]=35095, + [2]=19359, + [3]=41886, + [4]=9663, + [5]=52245 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=9759.71, + y=-5970.48 + }, + [1432]={ + nodes={ + [1]=20105 + }, + orbits={ + [1]=0 + }, + x=9764.39, + y=6540.17 + }, + [1433]={ + nodes={ + [1]=65212, + [2]=32543, + [3]=34968, + [4]=58539, + [5]=60899, + [6]=64637 + }, + orbits={ + [1]=0 + }, + x=9805.18, + y=2135.11 + }, + [1434]={ + nodes={ + [1]=48116 + }, + orbits={ + [1]=0 + }, + x=9826.06, + y=4319.11 + }, + [1435]={ + nodes={ + [1]=41861 + }, + orbits={ + [1]=0 + }, + x=9855.92, + y=3274.55 + }, + [1436]={ + nodes={ + [1]=21156, + [2]=19027, + [3]=34623, + [4]=40471, + [5]=14769, + [6]=7847 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=9860.54, + y=353.56 + }, + [1437]={ + nodes={ + [1]=20649 + }, + orbits={ + [1]=0 + }, + x=9947.79, + y=2860.79 + }, + [1438]={ + nodes={ + [1]=29990, + [2]=47477, + [3]=51774, + [4]=36217, + [5]=47021, + [6]=34425 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=9959.33, + y=-2457.79 + }, + [1439]={ + nodes={ + [1]=65290 + }, + orbits={ + [1]=0 + }, + x=10006.4, + y=2637.88 + }, + [1440]={ + nodes={ + [1]=16121, + [2]=61421, + [3]=56334, + [4]=46171, + [5]=41753 + }, + orbits={ + [1]=0 + }, + x=10039.3, + y=-5356.19 + }, + [1441]={ + nodes={ + [1]=14262 + }, + orbits={ + [1]=0 + }, + x=10048.6, + y=0.01 + }, + [1442]={ + nodes={ + [1]=12116, + [2]=52410, + [3]=20414, + [4]=55329, + [5]=42036, + [6]=35043, + [7]=50146 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=10080.5, + y=5416.44 + }, + [1443]={ + nodes={ + [1]=18624, + [2]=17523, + [3]=42032, + [4]=30408, + [5]=39608, + [6]=12329, + [7]=1778, + [8]=17906 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=10082.8, + y=4865.9 + }, + [1444]={ + nodes={ + [1]=49320, + [2]=30973 + }, + orbits={ + }, + x=10091.6, + y=-5603.69 + }, + [1445]={ + nodes={ + [1]=15775 + }, + orbits={ + [1]=0 + }, + x=10091.7, + y=-3334.83 + }, + [1446]={ + nodes={ + [1]=3640, + [2]=28963, + [3]=7888, + [4]=17724, + [5]=17101, + [6]=25362, + [7]=37780 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=10100.4, + y=-1227.6 + }, + [1447]={ + nodes={ + [1]=23105 + }, + orbits={ + [1]=0 + }, + x=10112.6, + y=-1237.84 + }, + [1448]={ + nodes={ + [1]=2582 + }, + orbits={ + [1]=0 + }, + x=10184.1, + y=3019.63 + }, + [1449]={ + nodes={ + [1]=60891, + [2]=18897, + [3]=64990, + [4]=53185 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=10203.1, + y=1730.1 + }, + [1450]={ + nodes={ + [1]=47514, + [2]=38342, + [3]=21945, + [4]=61718, + [5]=26572, + [6]=54545, + [7]=39128 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=10290.9, + y=-481.59 + }, + [1451]={ + nodes={ + [1]=29959, + [2]=60362, + [3]=6891, + [4]=56265, + [5]=42802 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=10299.9, + y=-3717.25 + }, + [1452]={ + nodes={ + [1]=17792, + [2]=34892, + [3]=12066, + [4]=42226, + [5]=48734 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=10370.9, + y=533.98 + }, + [1453]={ + nodes={ + [1]=30808 + }, + orbits={ + [1]=0 + }, + x=10379, + y=-2278.35 + }, + [1454]={ + nodes={ + [1]=27705 + }, + orbits={ + [1]=0 + }, + x=10420.8, + y=2130.08 + }, + [1455]={ + nodes={ + [1]=28835, + [2]=60480, + [3]=56847, + [4]=8157, + [5]=178, + [6]=28044, + [7]=43088, + [8]=6988 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=10451.5, + y=3456.48 + }, + [1456]={ + nodes={ + [1]=326 + }, + orbits={ + [1]=0 + }, + x=10504, + y=-3050.26 + }, + [1457]={ + nodes={ + [1]=59694 + }, + orbits={ + [1]=0 + }, + x=10614.8, + y=-3021.26 + }, + [1458]={ + nodes={ + [1]=3543, + [2]=31825, + [3]=20787, + [4]=5390, + [5]=16142 + }, + orbits={ + [1]=3 + }, + x=10650.1, + y=2504.32 + }, + [1459]={ + nodes={ + [1]=632 + }, + orbits={ + [1]=0 + }, + x=10657.3, + y=-5268.96 + }, + [1460]={ + nodes={ + [1]=48773 + }, + orbits={ + [1]=0 + }, + x=10682, + y=1152.07 + }, + [1461]={ + nodes={ + [1]=34612, + [2]=25992, + [3]=60764, + [4]=11526, + [5]=31055, + [6]=44141, + [7]=7651, + [8]=21788, + [9]=21112, + [10]=8573, + [11]=25586 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4 + }, + x=10682.3, + y=4548.52 + }, + [1462]={ + nodes={ + [1]=2361, + [2]=37514, + [3]=31449, + [4]=9444, + [5]=52399, + [6]=2113, + [7]=34316, + [8]=61632, + [9]=4536, + [10]=11598, + [11]=44516 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=10688, + y=-3515.65 + }, + [1463]={ + nodes={ + [1]=14267 + }, + orbits={ + [1]=0 + }, + x=10699, + y=-1058.34 + }, + [1464]={ + nodes={ + [1]=28638 + }, + orbits={ + [1]=0 + }, + x=10704, + y=-3595.77 + }, + [1465]={ + nodes={ + [1]=64700 + }, + orbits={ + [1]=0 + }, + x=10769.3, + y=-4040.33 + }, + [1466]={ + nodes={ + [1]=18969 + }, + orbits={ + [1]=0 + }, + x=10793.4, + y=4578.32 + }, + [1467]={ + nodes={ + [1]=52215 + }, + orbits={ + [1]=0 + }, + x=10794.6, + y=-5031.25 + }, + [1468]={ + nodes={ + [1]=3419, + [2]=28797, + [3]=20429 + }, + orbits={ + }, + x=10801.9, + y=-4373.44 + }, + [1469]={ + nodes={ + [1]=46152, + [2]=40110, + [3]=42347, + [4]=8302, + [5]=4467, + [6]=42974 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=10802.3, + y=-2128.64 + }, + [1470]={ + nodes={ + [1]=38993 + }, + orbits={ + [1]=0 + }, + x=10852.7, + y=5275.51 + }, + [1471]={ + nodes={ + [1]=32442 + }, + orbits={ + [1]=0 + }, + x=10878.5, + y=-4005.64 + }, + [1472]={ + nodes={ + [1]=53272, + [2]=2560, + [3]=20044, + [4]=30736, + [5]=52180 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=10949.1, + y=3186.63 + }, + [1473]={ + nodes={ + [1]=32763 + }, + orbits={ + [1]=1 + }, + x=10978.5, + y=-82.24 + }, + [1474]={ + nodes={ + [1]=41873, + [2]=55995, + [3]=57970, + [4]=21537 + }, + orbits={ + [1]=2 + }, + x=11005.8, + y=1424.1 + }, + [1475]={ + nodes={ + [1]=27048 + }, + orbits={ + [1]=0 + }, + x=11024, + y=2449.53 + }, + [1476]={ + nodes={ + [1]=43867, + [2]=10423, + [3]=37905, + [4]=57571, + [5]=28101 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=11025.4, + y=-2615.56 + }, + [1477]={ + nodes={ + [1]=56366, + [2]=54058, + [3]=35755, + [4]=4423, + [5]=62001 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=11048, + y=-5335.92 + }, + [1478]={ + nodes={ + [1]=39495 + }, + orbits={ + [1]=0 + }, + x=11053.8, + y=2092.2 + }, + [1479]={ + nodes={ + [1]=38212, + [2]=57683, + [3]=1499, + [4]=33830, + [5]=35031 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=11095.7, + y=-797.84 + }, + [1480]={ + nodes={ + [1]=328 + }, + orbits={ + [1]=0 + }, + x=11202.4, + y=4037.83 + }, + [1481]={ + nodes={ + [1]=28976 + }, + orbits={ + [1]=0 + }, + x=11230.9, + y=-1058.34 + }, + [1482]={ + nodes={ + [1]=47375 + }, + orbits={ + [1]=0 + }, + x=11305.3, + y=2677.45 + }, + [1483]={ + nodes={ + [1]=39986 + }, + orbits={ + [1]=0 + }, + x=11330.5, + y=1564.9 + }, + [1484]={ + nodes={ + [1]=6030, + [2]=2500, + [3]=15986, + [4]=29458, + [5]=2134, + [6]=53595, + [7]=9703, + [8]=1723, + [9]=38628 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=11355.4, + y=-1515.36 + }, + [1485]={ + nodes={ + [1]=38493, + [2]=38537, + [3]=13407, + [4]=39369, + [5]=55621, + [6]=2936, + [7]=23040, + [8]=54983, + [9]=51583 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4 + }, + x=11356, + y=617.13 + }, + [1486]={ + nodes={ + [1]=46386 + }, + orbits={ + [1]=0 + }, + x=11403.3, + y=1937.84 + }, + [1487]={ + nodes={ + [1]=23374 + }, + orbits={ + [1]=0 + }, + x=11480.8, + y=-1058.34 + }, + [1488]={ + nodes={ + [1]=63618 + }, + orbits={ + [1]=0 + }, + x=11588.9, + y=2604.19 + }, + [1489]={ + nodes={ + [1]=37971 + }, + orbits={ + [1]=0 + }, + x=11726.6, + y=2342.66 + }, + [1490]={ + nodes={ + [1]=57933 + }, + orbits={ + [1]=0 + }, + x=11768.8, + y=1960.45 + }, + [1491]={ + nodes={ + }, + orbits={ + [1]=4 + }, + x=11961.4, + y=-8422.8 + }, + [1492]={ + nodes={ + [1]=52800, + [2]=57615, + [3]=32319, + [4]=48836, + [5]=33542 + }, + orbits={ + [1]=0, + [2]=4 + }, + x=12068.2, + y=1163.81 + }, + [1493]={ + nodes={ + [1]=16150 + }, + orbits={ + [1]=0 + }, + x=12070.4, + y=2129.97 + }, + [1494]={ + nodes={ + [1]=47443 + }, + orbits={ + [1]=0 + }, + x=12118.1, + y=2530.75 + }, + [1495]={ + nodes={ + [1]=44699 + }, + orbits={ + [1]=0 + }, + x=12345.7, + y=2292.24 + }, + [1496]={ + nodes={ + [1]=31129 + }, + orbits={ + [1]=0 + }, + x=12484.5, + y=2765.08 + }, + [1497]={ + nodes={ + [1]=10315 + }, + orbits={ + [1]=0 + }, + x=12637.9, + y=2423.74 + }, + [1498]={ + nodes={ + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=13334.1, + y=6954.44 + }, + [1499]={ + nodes={ + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=13453.3, + y=-10429.8 + }, + [1500]={ + nodes={ + }, + orbits={ + [1]=2, + [2]=4 + }, + x=14370.4, + y=-8539.33 + }, + [1501]={ + nodes={ + [1]=24226 + }, + orbits={ + [1]=0 + }, + x=15371.465031181, + y=2616.7293416833 + }, + [1502]={ + nodes={ + [1]=12033, + [2]=42416, + [3]=46854, + [4]=61461, + [5]=3987, + [6]=24295, + [7]=49165, + [8]=39723, + [9]=46990 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=15460.465031181, + y=1628.1893416833 + }, + [1503]={ + nodes={ + [1]=30 + }, + orbits={ + [1]=0 + }, + x=15552.265031181, + y=2167.0493416833 + }, + [1504]={ + nodes={ + [1]=29871 + }, + orbits={ + [1]=0 + }, + x=15654.565031181, + y=2540.8993416833 + }, + [1505]={ + nodes={ + [1]=8143, + [2]=65173, + [3]=7621, + [4]=23587, + [5]=64031, + [6]=63713, + [7]=52448, + [8]=12876, + [9]=63236, + [10]=23415, + [11]=13065, + [12]=16100, + [13]=17268, + [14]=25434, + [15]=55611, + [16]=29133, + [17]=57181, + [18]=44357, + [19]=27686, + [20]=9994 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=13487.074172987, + y=-7733.1745940674 + }, + [1506]={ + nodes={ + [1]=59542 + }, + orbits={ + [1]=0 + }, + x=15918.765031181, + y=1995.6893416833 + }, + [1507]={ + nodes={ + [1]=59913 + }, + orbits={ + [1]=0 + }, + x=15937.565031181, + y=2465.0593416833 + }, + [1508]={ + nodes={ + [1]=5817 + }, + orbits={ + [1]=0 + }, + x=15971.565031181, + y=1439.8493416833 + }, + [1509]={ + nodes={ + [1]=41875 + }, + orbits={ + [1]=0 + }, + x=16012.365031181, + y=1832.6893416833 + }, + [1510]={ + nodes={ + [1]=41751, + [2]=61586, + [3]=19370, + [4]=17356, + [5]=39552, + [6]=51546, + [7]=1739, + [8]=39595, + [9]=53280, + [10]=65228, + [11]=52295, + [12]=34081, + [13]=57449, + [14]=36643, + [15]=20437, + [16]=37604, + [17]=11495 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4 + }, + x=11912.852536658, + y=-10808.204877864 + }, + [1511]={ + nodes={ + [1]=23508 + }, + orbits={ + [1]=0 + }, + x=16364.265031181, + y=949.95934168325 + }, + [1512]={ + nodes={ + [1]=35801 + }, + orbits={ + [1]=0 + }, + x=16416.165031181, + y=1238.3193416833 + }, + [1513]={ + nodes={ + [1]=61991, + [2]=24868, + [3]=29074, + [4]=14508, + [5]=33736, + [6]=9798, + [7]=1583 + }, + orbits={ + }, + x=14785.314471736, + y=4805.3212543427 + }, + [1514]={ + nodes={ + [1]=37336 + }, + orbits={ + [1]=0 + }, + x=16469.265031181, + y=1526.4793416833 + }, + [1515]={ + nodes={ + [1]=38004 + }, + orbits={ + [1]=0 + }, + x=15289.014471736, + y=4350.8212543427 + }, + [1516]={ + nodes={ + [1]=9710 + }, + orbits={ + [1]=0 + }, + x=15289.014471736, + y=4471.8212543427 + }, + [1517]={ + nodes={ + [1]=18940 + }, + orbits={ + [1]=0 + }, + x=15393.814471736, + y=4290.3212543427 + }, + [1518]={ + nodes={ + [1]=57141 + }, + orbits={ + [1]=0 + }, + x=15393.814471736, + y=4411.3212543427 + }, + [1519]={ + nodes={ + [1]=49503 + }, + orbits={ + [1]=0 + }, + x=15393.814471736, + y=4911.0112543427 + }, + [1520]={ + nodes={ + [1]=56618 + }, + orbits={ + [1]=0 + }, + x=15498.614471736, + y=4349.4212543427 + }, + [1521]={ + nodes={ + [1]=58379 + }, + orbits={ + [1]=0 + }, + x=15498.614471736, + y=4471.8212543427 + }, + [1522]={ + nodes={ + [1]=16 + }, + orbits={ + [1]=0 + }, + x=15675.514471736, + y=4911.0112543427 + }, + [1523]={ + nodes={ + [1]=41619 + }, + orbits={ + [1]=0 + }, + x=15739.414471736, + y=4672.3512543427 + }, + [1524]={ + nodes={ + [1]=57253 + }, + orbits={ + [1]=0 + }, + x=15851.514471736, + y=4800.8212543427 + }, + [1525]={ + nodes={ + [1]=16433 + }, + orbits={ + [1]=0 + }, + x=15928.514471736, + y=4904.0112543427 + }, + [1526]={ + nodes={ + [1]=12183 + }, + orbits={ + [1]=0 + }, + x=15928.514471736, + y=5186.2612543427 + }, + [1527]={ + nodes={ + [1]=46454 + }, + orbits={ + [1]=0 + }, + x=15932.214471736, + y=4199.1212543427 + }, + [1528]={ + nodes={ + [1]=36676 + }, + orbits={ + [1]=0 + }, + x=15932.214471736, + y=4531.3212543427 + }, + [1529]={ + nodes={ + [1]=12795 + }, + orbits={ + [1]=0 + }, + x=16007.414471736, + y=4800.8012543427 + }, + [1530]={ + nodes={ + [1]=40 + }, + orbits={ + [1]=0 + }, + x=16117.614471736, + y=4671.3512543427 + }, + [1531]={ + nodes={ + [1]=39292 + }, + orbits={ + [1]=0 + }, + x=16182.214471736, + y=4911.0112543427 + }, + [1532]={ + nodes={ + [1]=35187 + }, + orbits={ + [1]=0 + }, + x=12155.527950887, + y=7772.5711806708 + }, + [1533]={ + nodes={ + [1]=18826, + [2]=3781, + [3]=25781, + [4]=59759, + [5]=50098, + [6]=52395, + [7]=41076, + [8]=31116, + [9]=34817, + [10]=17923, + [11]=47344, + [12]=36788, + [13]=24475, + [14]=1347, + [15]=11771, + [16]=25779, + [17]=25885, + [18]=32771, + [19]=74 + }, + orbits={ + }, + x=14800.016672104, + y=-4762.2862652389 + }, + [1534]={ + nodes={ + [1]=41008 + }, + orbits={ + [1]=0 + }, + x=12490.327950887, + y=8008.7211806708 + }, + [1535]={ + nodes={ + [1]=664 + }, + orbits={ + [1]=0 + }, + x=15158.216672104, + y=-4236.2862652389 + }, + [1536]={ + nodes={ + [1]=42441 + }, + orbits={ + [1]=0 + }, + x=12560.327950887, + y=7738.0011806708 + }, + [1537]={ + nodes={ + [1]=26283 + }, + orbits={ + [1]=0 + }, + x=15264.616672104, + y=-4417.9562652389 + }, + [1538]={ + nodes={ + [1]=43095 + }, + orbits={ + [1]=0 + }, + x=12722.527950887, + y=7924.4811806708 + }, + [1539]={ + nodes={ + [1]=56331 + }, + orbits={ + [1]=0 + }, + x=15368.016672104, + y=-4234.9262652389 + }, + [1540]={ + nodes={ + [1]=528 + }, + orbits={ + [1]=0 + }, + x=12956.927950887, + y=8209.9411806708 + }, + [1541]={ + nodes={ + [1]=19233 + }, + orbits={ + [1]=0 + }, + x=13066.527950887, + y=7801.1511806708 + }, + [1542]={ + nodes={ + [1]=41401, + [2]=27773, + [3]=62743, + [4]=765, + [5]=46070, + [6]=4367, + [7]=39887, + [8]=56489, + [9]=28254, + [10]=26294, + [11]=62702, + [12]=37769, + [13]=21519, + [14]=62424, + [15]=41085, + [16]=45228, + [17]=5733, + [18]=63493 + }, + orbits={ + [1]=3, + [2]=4 + }, + x=11657.003699809, + y=10781.974903866 + }, + [1543]={ + nodes={ + [1]=55796 + }, + orbits={ + [1]=0 + }, + x=13289.527950887, + y=8076.4211806708 + }, + [1544]={ + nodes={ + [1]=9294 + }, + orbits={ + [1]=0 + }, + x=13473.327950887, + y=8428.7011806708 + }, + [1545]={ + nodes={ + [1]=7979 + }, + orbits={ + [1]=0 + }, + x=13624.127950887, + y=7862.8411806708 + }, + [1546]={ + nodes={ + [1]=46071 + }, + orbits={ + [1]=0 + }, + x=13830.327950887, + y=8428.7011806708 + }, + [1547]={ + nodes={ + [1]=35033 + }, + orbits={ + [1]=0 + }, + x=13856.527950887, + y=8228.3611806708 + }, + [1548]={ + nodes={ + [1]=60662 + }, + orbits={ + [1]=0 + }, + x=13934.027950887, + y=8041.7011806708 + }, + [1549]={ + nodes={ + [1]=41736 + }, + orbits={ + }, + x=14011.027950887, + y=7835.4411806708 + }, + [1550]={ + nodes={ + [1]=2702 + }, + orbits={ + [1]=0 + }, + x=14332.727950887, + y=7921.9911806708 + }, + [1551]={ + nodes={ + [1]=7068 + }, + orbits={ + [1]=0 + }, + x=7883.8116961153, + y=12821.797304486 + }, + [1552]={ + nodes={ + [1]=3065 + }, + orbits={ + [1]=0 + }, + x=14510.327950887, + y=7571.5211806708 + }, + [1553]={ + nodes={ + [1]=63254 + }, + orbits={ + [1]=0 + }, + x=14604.327950887, + y=7921.9911806708 + }, + [1554]={ + nodes={ + [1]=6109 + }, + orbits={ + [1]=0 + }, + x=14604.327950887, + y=8152.2211806708 + }, + [1555]={ + nodes={ + [1]=47312 + }, + orbits={ + [1]=0 + }, + x=14698.127950887, + y=7571.6311806708 + }, + [1556]={ + nodes={ + [1]=3223 + }, + orbits={ + [1]=0 + }, + x=8266.4116961153, + y=13156.827304486 + }, + [1557]={ + nodes={ + [1]=5563 + }, + orbits={ + [1]=0 + }, + x=14865.927950887, + y=7921.9911806708 + }, + [1558]={ + nodes={ + [1]=34785 + }, + orbits={ + [1]=0 + }, + x=8818.7116961153, + y=13230.057304486 + }, + [1559]={ + nodes={ + [1]=18280 + }, + orbits={ + [1]=0 + }, + x=9314.6116961153, + y=12333.337304486 + }, + [1560]={ + nodes={ + [1]=62804 + }, + orbits={ + [1]=0 + }, + x=9534.2116961153, + y=12751.187304486 + }, + [1561]={ + nodes={ + [1]=17058 + }, + orbits={ + [1]=0 + }, + x=9549.7116961153, + y=12973.057304486 + }, + [1562]={ + nodes={ + [1]=42017 + }, + orbits={ + [1]=0 + }, + x=9549.7116961153, + y=13230.057304486 + }, + [1563]={ + nodes={ + [1]=58574 + }, + orbits={ + [1]=0 + }, + x=9549.7116961153, + y=13487.057304486 + }, + [1564]={ + nodes={ + [1]=37972 + }, + orbits={ + [1]=0 + }, + x=9616.4116961153, + y=12375.667304486 + }, + [1565]={ + nodes={ + [1]=36365 + }, + orbits={ + }, + x=9688.3116961153, + y=12636.797304486 + }, + [1566]={ + nodes={ + [1]=4891 + }, + orbits={ + [1]=0 + }, + x=9850.5116961153, + y=12521.897304486 + }, + [1567]={ + nodes={ + [1]=58149 + }, + orbits={ + [1]=0 + }, + x=9893.8116961153, + y=12885.817304486 + }, + [1568]={ + nodes={ + [1]=37046 + }, + orbits={ + [1]=0 + }, + x=9942.7116961153, + y=11772.817304486 + }, + [1569]={ + nodes={ + [1]=60859 + }, + orbits={ + [1]=0 + }, + x=10074.411696115, + y=12761.767304486 + }, + [1570]={ + nodes={ + [1]=30233 + }, + orbits={ + [1]=0 + }, + x=10115.911696115, + y=12357.747304486 + }, + [1571]={ + nodes={ + [1]=22661 + }, + orbits={ + [1]=0 + }, + x=10251.211696115, + y=12701.727304486 + }, + [1572]={ + nodes={ + [1]=11776 + }, + orbits={ + [1]=0 + }, + x=10397.011696115, + y=12302.667304486 + } + }, + jewelSlots={ + [1]=26725, + [2]=36634, + [3]=33989, + [4]=41263, + [5]=60735, + [6]=61834, + [7]=31683, + [8]=28475, + [9]=6230, + [10]=48768, + [11]=34483, + [12]=7960, + [13]=46882, + [14]=55190, + [15]=61419, + [16]=2491, + [17]=54127, + [18]=32763, + [19]=26196, + [20]=33631, + [21]=21984, + [22]=59740, + [23]=63132, + [24]=36044, + [25]=17788, + [26]=62152, + [27]=26178, + [28]=23960, + [29]=39087, + [30]=3367, + [31]=11184 + }, + ["max_x"]=24237.665031181, + ["max_y"]=24475.58515451, + ["min_x"]=-23887.48508937, + ["min_y"]=-24295.661971397, + nodeOverlay={ + Keystone={ + alloc="KeystoneFrameAllocated", + path="KeystoneFrameCanAllocate", + unalloc="KeystoneFrameUnallocated" + }, + Normal={ + alloc="PSSkillFrameActive", + path="PSSkillFrameHighlighted", + unalloc="PSSkillFrame" + }, + Notable={ + alloc="NotableFrameAllocated", + path="NotableFrameCanAllocate", + unalloc="NotableFrameUnallocated" + }, + Socket={ + alloc="JewelFrameAllocated", + path="JewelFrameCanAllocate", + unalloc="JewelFrameUnallocated" + } + }, + nodes={ + [4]={ + connections={ + [1]={ + id=11578, + orbit=0 + } + }, + group=1030, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=4, + stats={ + [1]="15% increased chance to Shock" + } + }, + [16]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=41619, + orbit=7 + } + }, + group=1522, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Life Flask Charges", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=16, + stats={ + [1]="20% increased Life Flask Charges gained" + } + }, + [30]={ + ascendancyName="Deadeye", + connections={ + }, + group=1503, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.png", + isNotable=true, + name="Gathering Winds", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30, + stats={ + [1]="Gain Tailwind on Skill use", + [2]="Lose all Tailwind when Hit" + } + }, + [40]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1530, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.png", + isNotable=true, + name="Sustainable Practices", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=40, + stats={ + [1]="50% of Evasion Rating also grants Elemental Damage reduction" + } + }, + [52]={ + connections={ + [1]={ + id=39131, + orbit=0 + } + }, + flavourText="Tear my flesh and splinter my bones. You will never break my spirit.", + group=184, + icon="Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png", + isKeystone=true, + name="Zealot's Oath", + orbit=0, + orbitIndex=0, + skill=52, + stats={ + [1]="Excess Life Recovery from Regeneration is applied to Energy Shield\nEnergy Shield does not Recharge" + } + }, + [55]={ + connections={ + }, + group=1098, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Fast Acting Toxins", + orbit=0, + orbitIndex=0, + skill=55, + stats={ + [1]="Damaging Ailments deal damage 12% faster" + } + }, + [59]={ + ascendancyName="Lich", + connections={ + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.png", + isNotable=true, + name="Incessant Cacophony", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=50, + skill=59, + stats={ + [1]="Curses you inflict have infinite Duration", + [2]="You can apply an additional Curse" + } + }, + [60]={ + connections={ + [1]={ + id=58426, + orbit=0 + } + }, + group=1393, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Chance", + orbit=2, + orbitIndex=13, + skill=60, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [65]={ + connections={ + [1]={ + id=15698, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=2, + orbitIndex=7, + skill=65, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [71]={ + connections={ + [1]={ + id=62376, + orbit=0 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Reduced Duration", + orbit=7, + orbitIndex=17, + skill=71, + stats={ + [1]="4% reduced Skill Effect Duration", + [2]="8% increased Physical Damage" + } + }, + [74]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=17923, + orbit=0 + }, + [2]={ + id=24475, + orbit=-9 + }, + [3]={ + id=36788, + orbit=0 + }, + [4]={ + id=25779, + orbit=0 + }, + [5]={ + id=1347, + orbit=-8 + }, + [6]={ + id=25885, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Acolyte of Chayula", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=24, + skill=74 + }, + [94]={ + connections={ + [1]={ + id=27234, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Efficient Killing", + orbit=7, + orbitIndex=4, + skill=94, + stats={ + [1]="15% increased Mana Regeneration Rate", + [2]="Recover 2% of maximum Mana on Kill" + } + }, + [95]={ + connections={ + [1]={ + id=8737, + orbit=0 + } + }, + group=495, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=0, + orbitIndex=0, + skill=95, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [97]={ + connections={ + [1]={ + id=52442, + orbit=0 + } + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=0, + skill=97, + stats={ + [1]="3% increased Attack Speed" + } + }, + [110]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=20, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.png", + isNotable=true, + name="Internal Layer", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=110, + stats={ + [1]="Body Armour grants Hits against you have 100% reduced Critical Damage Bonus" + } + }, + [116]={ + connections={ + [1]={ + id=44359, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Insightfulness", + orbit=7, + orbitIndex=13, + skill=116, + stats={ + [1]="18% increased maximum Energy Shield", + [2]="12% increased Mana Regeneration Rate", + [3]="6% increased Intelligence" + } + }, + [144]={ + connections={ + [1]={ + id=26598, + orbit=0 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Freeze Buildup", + orbit=5, + orbitIndex=12, + skill=144, + stats={ + [1]="10% increased Freeze Buildup", + [2]="8% increased Elemental Damage" + } + }, + [151]={ + connections={ + [1]={ + id=34747, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=5, + skill=151, + stats={ + [1]="16% increased Accuracy Rating at Close Range" + } + }, + [178]={ + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=5, + orbitIndex=30, + skill=178, + stats={ + [1]="8% increased Reservation Efficiency of Herald Skills" + } + }, + [229]={ + connections={ + [1]={ + id=46365, + orbit=0 + } + }, + group=639, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Life", + orbit=2, + orbitIndex=6, + skill=229, + stats={ + [1]="Minions have 6% increased maximum Life", + [2]="Minions deal 6% increased Damage" + } + }, + [244]={ + connections={ + [1]={ + id=52354, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Damage", + orbit=4, + orbitIndex=66, + skill=244, + stats={ + [1]="16% increased Attack Damage against Rare or Unique Enemies" + } + }, + [259]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=507, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=259 + }, + [261]={ + connections={ + [1]={ + id=1205, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Toxic Sludge", + orbit=3, + orbitIndex=13, + skill=261, + stats={ + [1]="40% increased Duration of Poisons you inflict against Slowed Enemies" + } + }, + [270]={ + connections={ + [1]={ + id=56219, + orbit=2 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage Decay", + orbit=2, + orbitIndex=6, + skill=270, + stats={ + [1]="Inherent loss of Rage is 15% slower" + } + }, + [292]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=292 + }, + [296]={ + connections={ + [1]={ + id=30959, + orbit=2 + }, + [2]={ + id=8145, + orbit=2 + }, + [3]={ + id=12992, + orbit=2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Penetration", + orbit=7, + orbitIndex=18, + skill=296, + stats={ + [1]="Damage Penetrates 3% of Enemy Elemental Resistances" + } + }, + [315]={ + connections={ + [1]={ + id=33216, + orbit=0 + } + }, + group=728, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Duration", + orbit=0, + orbitIndex=0, + skill=315, + stats={ + [1]="10% increased Bleeding Duration" + } + }, + [326]={ + connections={ + [1]={ + id=31449, + orbit=0 + } + }, + group=1456, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Critical Chance", + orbit=0, + orbitIndex=0, + skill=326, + stats={ + [1]="10% increased Critical Hit Chance with Quarterstaves" + } + }, + [327]={ + connections={ + [1]={ + id=9652, + orbit=0 + } + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=12, + skill=327, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [328]={ + connections={ + [1]={ + id=25992, + orbit=0 + }, + [2]={ + id=60764, + orbit=0 + }, + [3]={ + id=21112, + orbit=0 + } + }, + group=1480, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Accuracy Rating", + orbit=0, + orbitIndex=0, + skill=328, + stats={ + [1]="10% increased Accuracy Rating with Bows" + } + }, + [331]={ + connections={ + [1]={ + id=42103, + orbit=2 + } + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection and Evasion", + orbit=2, + orbitIndex=3, + skill=331, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [336]={ + connections={ + [1]={ + id=4806, + orbit=-3 + } + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Storm Swell", + orbit=3, + orbitIndex=15, + skill=336, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="Damage Penetrates 8% Lightning Resistance" + } + }, + [338]={ + connections={ + [1]={ + id=20140, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Invocated Limit", + orbit=1, + orbitIndex=6, + skill=338, + stats={ + [1]="Invocated skills have 30% increased Maximum Energy" + } + }, + [354]={ + connections={ + [1]={ + id=48429, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Cooldown Recovery Rate", + orbit=3, + orbitIndex=16, + skill=354, + stats={ + [1]="15% increased Cooldown Recovery Rate for Grenade Skills" + } + }, + [364]={ + connections={ + [1]={ + id=2847, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=2, + orbitIndex=4, + skill=364, + stats={ + [1]="+3 to all Attributes" + } + }, + [372]={ + connections={ + [1]={ + id=54340, + orbit=0 + } + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Heatproof", + orbit=7, + orbitIndex=6, + skill=372, + stats={ + [1]="10% increased Armour", + [2]="+30% of Armour also applies to Fire Damage", + [3]="30% reduced Magnitude of Ignite on you" + } + }, + [375]={ + connections={ + [1]={ + id=12276, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Damage", + orbit=7, + orbitIndex=17, + skill=375, + stats={ + [1]="15% increased Damage with Maces" + } + }, + [378]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=55135, + orbit=-6 + } + }, + group=35, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Critical Hit Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=378, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [419]={ + connections={ + [1]={ + id=63400, + orbit=-7 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + name="Non-Damaging Ailment Magnitude", + orbit=2, + orbitIndex=12, + skill=419, + stats={ + [1]="10% increased Magnitude of Non-Damaging Ailments you inflict" + } + }, + [440]={ + connections={ + [1]={ + id=6133, + orbit=-5 + } + }, + group=105, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=0, + orbitIndex=0, + skill=440, + stats={ + [1]="5% increased Block chance" + } + }, + [472]={ + connections={ + [1]={ + id=3744, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=7, + orbitIndex=20, + skill=472, + stats={ + [1]="+8 to Dexterity" + } + }, + [479]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=29126, + orbit=2 + } + }, + group=336, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Hidden Forms", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=479, + stats={ + [1]="Gain 8% of Damage as Extra Damage of a random Element while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [483]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12601, + orbit=0 + }, + [2]={ + id=35745, + orbit=0 + } + }, + group=633, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=18, + skill=483, + stats={ + [1]="2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [506]={ + connections={ + [1]={ + id=6416, + orbit=0 + } + }, + group=273, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=14, + skill=506, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [511]={ + connections={ + [1]={ + id=49734, + orbit=0 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=7, + orbitIndex=8, + skill=511, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [516]={ + connections={ + [1]={ + id=47157, + orbit=4 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=16, + skill=516, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies further than 6m" + } + }, + [517]={ + connections={ + [1]={ + id=39037, + orbit=6 + }, + [2]={ + id=61027, + orbit=9 + } + }, + group=816, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=0, + orbitIndex=0, + skill=517, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [526]={ + connections={ + [1]={ + id=2645, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Stun Buildup", + orbit=4, + orbitIndex=4, + skill=526, + stats={ + [1]="18% increased Stun Buildup with Maces" + } + }, + [528]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=41008, + orbit=0 + } + }, + group=1540, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Accuracy", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=528, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [535]={ + connections={ + [1]={ + id=34621, + orbit=0 + } + }, + group=1170, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=535, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [541]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Energy Shield Recharge", + orbit=6, + orbitIndex=17, + skill=541, + stats={ + [1]="15% increased Energy Shield Recharge Rate while Shapeshifted" + } + }, + [558]={ + connections={ + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=4, + skill=558, + stats={ + [1]="12% increased Fire Damage" + } + }, + [589]={ + connections={ + [1]={ + id=14509, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Rage on Melee Hit", + orbit=7, + orbitIndex=5, + skill=589, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [630]={ + connections={ + [1]={ + id=13419, + orbit=0 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=1, + orbitIndex=4, + skill=630, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [632]={ + connections={ + [1]={ + id=56366, + orbit=0 + } + }, + group=1459, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Speed", + orbit=0, + orbitIndex=0, + skill=632, + stats={ + [1]="3% increased Attack Speed with Daggers" + } + }, + [658]={ + connections={ + [1]={ + id=1861, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=3, + orbitIndex=19, + skill=658, + stats={ + [1]="+6% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [664]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1535, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.png", + isMultipleChoiceOption=true, + name="Choice of Power", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=664, + stats={ + [1]="Remnants you create have 50% increased effect", + [2]="Remnants can be collected from 50% further away", + [3]="All Flames of Chayula that you manifest are Purple" + } + }, + [675]={ + connections={ + [1]={ + id=13489, + orbit=-9 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Slow Effect on You", + orbit=2, + orbitIndex=5, + skill=675, + stats={ + [1]="10% increased Armour", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [703]={ + connections={ + [1]={ + id=44917, + orbit=-3 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun Threshold from Energy Shield", + orbit=1, + orbitIndex=2, + skill=703, + stats={ + [1]="Gain additional Stun Threshold equal to 12% of maximum Energy Shield" + } + }, + [712]={ + connections={ + [1]={ + id=24948, + orbit=0 + } + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.png", + isNotable=true, + name="Bond of the Ape", + orbit=0, + orbitIndex=0, + skill=712, + stats={ + [1]="12% increased Area of Effect", + [2]="Companions have 30% increased Area of Effect" + } + }, + [722]={ + connections={ + [1]={ + id=3419, + orbit=0 + }, + [2]={ + id=15775, + orbit=0 + } + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=722, + stats={ + [1]="+5 to any Attribute" + } + }, + [750]={ + connections={ + [1]={ + id=6952, + orbit=0 + } + }, + group=100, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Tribal Fury", + orbit=2, + orbitIndex=22, + skill=750, + stats={ + [1]="Strikes deal Splash Damage" + } + }, + [752]={ + connections={ + [1]={ + id=47420, + orbit=0 + } + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Duration", + orbit=2, + orbitIndex=9, + skill=752, + stats={ + [1]="Minions deal 6% increased Damage", + [2]="6% increased Minion Duration" + } + }, + [761]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=22133, + orbit=0 + } + }, + group=388, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Cooldown", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=12, + skill=761, + stats={ + [1]="Minions have 25% increased Cooldown Recovery Rate for Command Skills" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [762]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=1988, + orbit=0 + } + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Minion Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=762, + stats={ + [1]="Minions deal 20% increased Damage" + } + }, + [765]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.png", + isNotable=true, + name="The Catha's Balance", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=48, + skill=765, + stats={ + [1]="Companions gain added Attack damage equal to 60% of your main hand Weapon's damage" + } + }, + [770]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=10694, + orbit=-7 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=7, + skill=770, + stats={ + [1]="3% increased maximum Mana" + } + }, + [829]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=36025, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=25, + skill=829, + stats={ + [1]="25% increased Minion Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [857]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=857 + }, + [858]={ + connections={ + [1]={ + id=58387, + orbit=5 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=5, + orbitIndex=18, + skill=858, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [869]={ + connections={ + [1]={ + id=18959, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield Delay", + orbit=7, + orbitIndex=9, + skill=869, + stats={ + [1]="12% increased Armour", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [872]={ + connections={ + [1]={ + id=36556, + orbit=0 + } + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.png", + name="Channelling Defences", + orbit=2, + orbitIndex=17, + skill=872, + stats={ + [1]="8% increased Armour, Evasion and Energy Shield while Channelling" + } + }, + [904]={ + connections={ + [1]={ + id=28578, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration and Critical Chance", + orbit=7, + orbitIndex=4, + skill=904, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Critical Hit Chance" + } + }, + [917]={ + connections={ + [1]={ + id=65160, + orbit=0 + } + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=3, + orbitIndex=10, + skill=917, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [934]={ + connections={ + [1]={ + id=12526, + orbit=-4 + } + }, + group=763, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + isNotable=true, + name="Natural Immunity", + orbit=4, + orbitIndex=63, + skill=934, + stats={ + [1]="+4 to Ailment Threshold per Dexterity" + } + }, + [968]={ + connections={ + [1]={ + id=6752, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage and Area", + orbit=3, + orbitIndex=2, + skill=968, + stats={ + [1]="6% increased Fire Damage", + [2]="5% increased Area of Effect" + } + }, + [989]={ + connections={ + [1]={ + id=26416, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=20, + skill=989, + stats={ + [1]="15% increased Life Recovery from Flasks" + } + }, + [1019]={ + connections={ + [1]={ + id=45037, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=0, + orbitIndex=0, + skill=1019, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [1020]={ + connections={ + [1]={ + id=54631, + orbit=0 + } + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Quiver Effect", + orbit=7, + orbitIndex=3, + skill=1020, + stats={ + [1]="6% increased bonuses gained from Equipped Quiver" + } + }, + [1073]={ + connections={ + [1]={ + id=261, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude and Poison Magnitude", + orbit=2, + orbitIndex=11, + skill=1073, + stats={ + [1]="6% increased Ignite Magnitude", + [2]="6% increased Magnitude of Poison you inflict" + } + }, + [1087]={ + connections={ + [1]={ + id=25934, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Shockwaves", + orbit=3, + orbitIndex=7, + skill=1087, + stats={ + [1]="25% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently" + } + }, + [1091]={ + connections={ + [1]={ + id=13333, + orbit=7 + }, + [2]={ + id=48699, + orbit=0 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Chill Effect on You", + orbit=2, + orbitIndex=0, + skill=1091, + stats={ + [1]="10% reduced Effect of Chill on you" + } + }, + [1104]={ + connections={ + [1]={ + id=56876, + orbit=0 + } + }, + group=319, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Lust for Power", + orbit=0, + orbitIndex=0, + skill=1104, + stats={ + [1]="10% chance when you gain a Power Charge to gain an additional Power Charge", + [2]="+1 to Maximum Power Charges" + } + }, + [1130]={ + connections={ + [1]={ + id=29611, + orbit=0 + } + }, + group=142, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Damage", + orbit=0, + orbitIndex=0, + skill=1130, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [1140]={ + connections={ + [1]={ + id=15507, + orbit=0 + } + }, + group=892, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=22, + skill=1140, + stats={ + [1]="+5 to any Attribute" + } + }, + [1143]={ + connections={ + [1]={ + id=58170, + orbit=0 + }, + [2]={ + id=50084, + orbit=0 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + isSwitchable=true, + name="Spell Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + id=57726, + name="Life Regeneration", + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + } + }, + orbit=2, + orbitIndex=5, + skill=1143, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [1144]={ + connections={ + [1]={ + id=42070, + orbit=0 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=7, + skill=1144, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [1151]={ + connections={ + [1]={ + id=4113, + orbit=0 + } + }, + group=823, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=8, + skill=1151, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [1169]={ + connections={ + [1]={ + id=25031, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Urgent Call", + orbit=7, + orbitIndex=16, + skill=1169, + stats={ + [1]="Recover 2% of maximum Life and Mana when you use a Warcry", + [2]="24% increased Warcry Speed", + [3]="18% increased Warcry Cooldown Recovery Rate" + } + }, + [1170]={ + connections={ + [1]={ + id=58295, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=3, + orbitIndex=22, + skill=1170, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [1200]={ + connections={ + [1]={ + id=53822, + orbit=-5 + }, + [2]={ + id=55190, + orbit=0 + }, + [3]={ + id=62313, + orbit=0 + }, + [4]={ + id=18353, + orbit=0 + } + }, + group=98, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=36, + skill=1200, + stats={ + [1]="+5 to any Attribute" + } + }, + [1205]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + connections={ + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.png", + isOnlyImage=true, + name="Poison Mastery", + orbit=0, + orbitIndex=0, + skill=1205 + }, + [1207]={ + connections={ + [1]={ + id=38323, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=69, + skill=1207, + stats={ + [1]="+5 to any Attribute" + } + }, + [1214]={ + connections={ + [1]={ + id=53823, + orbit=-4 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block and Shield Defences", + orbit=7, + orbitIndex=21, + skill=1214, + stats={ + [1]="4% increased Block chance", + [2]="15% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [1215]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + connections={ + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=1, + orbitIndex=5, + skill=1215 + }, + [1218]={ + connections={ + [1]={ + id=14945, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=18, + skill=1218, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [1220]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=686, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=1220 + }, + [1221]={ + connections={ + [1]={ + id=62237, + orbit=0 + }, + [2]={ + id=35743, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=0, + orbitIndex=0, + skill=1221, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [1286]={ + connections={ + [1]={ + id=17903, + orbit=-7 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + orbit=7, + orbitIndex=12, + skill=1286, + stats={ + [1]="16% increased Thorns damage" + } + }, + [1347]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=50098, + orbit=7 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=12, + skill=1347, + stats={ + [1]="4% increased Skill Speed" + } + }, + [1352]={ + connections={ + [1]={ + id=53216, + orbit=0 + } + }, + group=258, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Unbending", + orbit=7, + orbitIndex=10, + skill=1352, + stats={ + [1]="3% increased maximum Life", + [2]="10% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%" + } + }, + [1416]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1349, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=1416 + }, + [1420]={ + connections={ + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Dizzying Sweep", + orbit=7, + orbitIndex=20, + skill=1420, + stats={ + [1]="15% increased Attack Area Damage", + [2]="10% increased Area of Effect for Attacks", + [3]="5% chance to Daze on Hit" + } + }, + [1433]={ + connections={ + [1]={ + id=31238, + orbit=0 + }, + [2]={ + id=48530, + orbit=0 + }, + [3]={ + id=95, + orbit=0 + } + }, + group=554, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=56, + skill=1433, + stats={ + [1]="+5 to any Attribute" + } + }, + [1442]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=53108, + orbit=0 + } + }, + group=520, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Attributes", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=1442, + stats={ + [1]="3% increased Attributes" + } + }, + [1447]={ + connections={ + [1]={ + id=22393, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=14, + skill=1447, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [1448]={ + connections={ + }, + group=1308, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.png", + isNotable=true, + name="Bond of the Cat", + orbit=2, + orbitIndex=8, + skill=1448, + stats={ + [1]="Companions have 20% increased Movement Speed", + [2]="5% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [1459]={ + connections={ + [1]={ + id=47252, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=12, + skill=1459, + stats={ + [1]="16% increased Mana Regeneration Rate while stationary" + } + }, + [1468]={ + connections={ + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=6, + skill=1468, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [1477]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + [1]={ + id=11037, + orbit=0 + } + }, + group=813, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=1477 + }, + [1499]={ + connections={ + [1]={ + id=33830, + orbit=-2 + } + }, + group=1479, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.png", + name="Life Regeneration", + orbit=2, + orbitIndex=0, + skill=1499, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [1502]={ + connections={ + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + isNotable=true, + name="Draiocht Cleansing", + orbit=0, + orbitIndex=0, + skill=1502, + stats={ + [1]="Channelling Skills deal 20% increased Damage", + [2]="Remove a Curse after Channelling for 2 seconds" + } + }, + [1506]={ + connections={ + }, + group=1108, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.png", + isNotable=true, + name="Remnant Attraction", + orbit=2, + orbitIndex=20, + skill=1506, + stats={ + [1]="10% chance to create an additional Remnant", + [2]="Remnants can be collected from 50% further away" + } + }, + [1514]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=29527, + orbit=0 + } + }, + group=1365, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=1514 + }, + [1543]={ + connections={ + [1]={ + id=14096, + orbit=7 + }, + [2]={ + id=59376, + orbit=0 + } + }, + group=660, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=1, + orbitIndex=0, + skill=1543, + stats={ + [1]="3% increased Cast Speed" + } + }, + [1546]={ + connections={ + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Spiral into Depression", + orbit=2, + orbitIndex=20, + skill=1546, + stats={ + [1]="3% increased Movement Speed", + [2]="25% increased Armour", + [3]="25% increased maximum Energy Shield" + } + }, + [1579]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=3605, + orbit=-9 + } + }, + group=404, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=1579, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [1583]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=14508, + orbit=5 + }, + [2]={ + id=9798, + orbit=0 + }, + [3]={ + id=49503, + orbit=-5 + }, + [4]={ + id=39292, + orbit=5 + }, + [5]={ + id=12183, + orbit=0 + }, + [6]={ + id=16, + orbit=-5 + } + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Pathfinder", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=48, + skill=1583 + }, + [1599]={ + connections={ + [1]={ + id=31286, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Critical Chance", + orbit=2, + orbitIndex=18, + skill=1599, + stats={ + [1]="5% increased Critical Hit Chance", + [2]="8% increased Physical Damage" + } + }, + [1603]={ + connections={ + [1]={ + id=32040, + orbit=0 + } + }, + group=1142, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Storm Driven", + orbit=2, + orbitIndex=18, + skill=1603, + stats={ + [1]="15% of Elemental Damage taken Recouped as Energy Shield" + } + }, + [1628]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49769, + orbit=0 + }, + [2]={ + id=9554, + orbit=-7 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=60, + skill=1628, + stats={ + [1]="17% increased Stun Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [1631]={ + connections={ + [1]={ + id=29049, + orbit=3 + }, + [2]={ + id=14001, + orbit=-3 + } + }, + group=1262, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Duration", + orbit=2, + orbitIndex=4, + skill=1631, + stats={ + [1]="10% increased Charm Effect Duration" + } + }, + [1680]={ + connections={ + }, + group=1213, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Projectile Parry Range", + orbit=2, + orbitIndex=2, + skill=1680, + stats={ + [1]="20% increased Parry Range" + } + }, + [1700]={ + connections={ + [1]={ + id=48699, + orbit=0 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=2, + orbitIndex=12, + skill=1700, + stats={ + [1]="10% increased Cold Damage" + } + }, + [1723]={ + connections={ + [1]={ + id=53595, + orbit=0 + }, + [2]={ + id=2134, + orbit=0 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=3, + orbitIndex=22, + skill=1723, + stats={ + [1]="10% increased Poison Duration" + } + }, + [1739]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.png", + isNotable=true, + name="Hollow Form Technique", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=63, + skill=1739, + stats={ + [1]="Grants Skill: Hollow Form" + } + }, + [1755]={ + connections={ + [1]={ + id=18845, + orbit=-4 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=31707, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=2, + orbitIndex=17, + skill=1755, + stats={ + [1]="8% increased Spell Damage" + } + }, + [1773]={ + connections={ + [1]={ + id=51213, + orbit=4 + } + }, + group=1114, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Effect and Duration", + orbit=0, + orbitIndex=0, + skill=1773, + stats={ + [1]="5% increased Magnitude of Ailments you inflict", + [2]="5% increased Duration of Damaging Ailments on Enemies" + } + }, + [1778]={ + connections={ + [1]={ + id=30408, + orbit=0 + }, + [2]={ + id=17523, + orbit=0 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Duration", + orbit=7, + orbitIndex=12, + skill=1778, + stats={ + [1]="20% increased Hazard Duration" + } + }, + [1801]={ + connections={ + [1]={ + id=60, + orbit=3 + } + }, + group=1393, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Chance", + orbit=7, + orbitIndex=5, + skill=1801, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [1823]={ + connections={ + [1]={ + id=3471, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Illuminated Crown", + orbit=4, + orbitIndex=60, + skill=1823, + stats={ + [1]="20% increased Light Radius", + [2]="70% increased Energy Shield from Equipped Helmet" + } + }, + [1825]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=1825 + }, + [1826]={ + connections={ + [1]={ + id=39037, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=1826, + stats={ + [1]="+5 to any Attribute" + } + }, + [1841]={ + connections={ + [1]={ + id=9405, + orbit=5 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=8, + skill=1841, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [1855]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=16204, + orbit=0 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Flask Recovery", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=54, + skill=1855, + stats={ + [1]="12% increased Life and Mana Recovery from Flasks" + } + }, + [1861]={ + connections={ + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + isNotable=true, + name="Knight of Tarcus", + orbit=4, + orbitIndex=52, + skill=1861, + stats={ + [1]="+20% of Armour also applies to Elemental Damage", + [2]="30% increased Presence Area of Effect", + [3]="15% increased Glory generation" + } + }, + [1865]={ + connections={ + [1]={ + id=54934, + orbit=0 + } + }, + group=619, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Fire Damage when consuming an Endurance Charge", + orbit=2, + orbitIndex=12, + skill=1865, + stats={ + [1]="3% increased Fire Damage per Endurance Charge consumed Recently" + } + }, + [1869]={ + connections={ + [1]={ + id=27095, + orbit=-4 + } + }, + group=1089, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=2, + orbitIndex=1, + skill=1869, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [1878]={ + connections={ + [1]={ + id=14328, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Energy Shield and Armour applies to Elemental Damage Hits", + orbit=7, + orbitIndex=23, + skill=1878, + stats={ + [1]="12% increased maximum Energy Shield", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [1887]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=10713, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=2, + skill=1887, + stats={ + [1]="30% increased Armour while stationary" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [1913]={ + connections={ + [1]={ + id=38646, + orbit=0 + }, + [2]={ + id=36709, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=3, + skill=1913, + stats={ + [1]="+20 to Armour" + } + }, + [1915]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Critical Chance", + orbit=7, + orbitIndex=21, + skill=1915, + stats={ + [1]="10% increased Critical Hit Chance against Humanoids" + } + }, + [1922]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + [1]={ + id=51184, + orbit=0 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=1922 + }, + [1928]={ + connections={ + }, + group=511, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Attack and Cast Speed", + orbit=0, + orbitIndex=0, + skill=1928, + stats={ + [1]="Minions have 5% increased Attack and Cast Speed" + } + }, + [1953]={ + connections={ + [1]={ + id=23905, + orbit=0 + } + }, + group=1179, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Effect", + orbit=0, + orbitIndex=0, + skill=1953, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [1973]={ + connections={ + [1]={ + id=8607, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flasks", + orbit=2, + orbitIndex=8, + skill=1973, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [1988]={ + ascendancyName="Tactician", + connections={ + }, + group=416, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.png", + isNotable=true, + name="Unleash Hell!", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=1988, + stats={ + [1]="Grants Skill: Supporting Fire" + } + }, + [1994]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=47097, + orbit=0 + } + }, + group=42, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Warcry Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=1994, + stats={ + [1]="20% increased Warcry Speed" + } + }, + [1995]={ + connections={ + }, + group=1139, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Projectile Ailment Chance", + orbit=0, + orbitIndex=0, + skill=1995, + stats={ + [1]="20% increased chance to inflict Ailments with Projectiles" + } + }, + [2021]={ + connections={ + [1]={ + id=25857, + orbit=0 + } + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Wellspring", + orbit=4, + orbitIndex=68, + skill=2021, + stats={ + [1]="30% increased Mana Recovery from Flasks", + [2]="8% increased Attack and Cast Speed during Effect of any Mana Flask" + } + }, + [2071]={ + connections={ + [1]={ + id=38420, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=0, + skill=2071, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [2074]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=2074 + }, + [2091]={ + connections={ + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=4, + orbitIndex=18, + skill=2091, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [2102]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=2102 + }, + [2113]={ + connections={ + [1]={ + id=326, + orbit=0 + }, + [2]={ + id=59694, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + isNotable=true, + name="Martial Artistry", + orbit=3, + orbitIndex=13, + skill=2113, + stats={ + [1]="25% increased Accuracy Rating with Quarterstaves", + [2]="25% increased Critical Damage Bonus with Quarterstaves", + [3]="+25 to Dexterity" + } + }, + [2119]={ + connections={ + [1]={ + id=53505, + orbit=0 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=2, + orbitIndex=0, + skill=2119, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [2128]={ + connections={ + [1]={ + id=65256, + orbit=0 + } + }, + group=1241, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Area", + orbit=0, + orbitIndex=0, + skill=2128, + stats={ + [1]="10% increased Hazard Area of Effect" + } + }, + [2134]={ + connections={ + [1]={ + id=9703, + orbit=0 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Toxic Tolerance", + orbit=3, + orbitIndex=0, + skill=2134, + stats={ + [1]="Immune to Poison" + } + }, + [2138]={ + connections={ + [1]={ + id=32523, + orbit=0 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Spiral into Insanity", + orbit=2, + orbitIndex=12, + skill=2138, + stats={ + [1]="29% increased Chaos Damage", + [2]="20% increased Armour, Evasion and Energy Shield" + } + }, + [2174]={ + connections={ + [1]={ + id=19249, + orbit=4 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=4, + orbitIndex=70, + skill=2174, + stats={ + [1]="15% increased Totem Damage" + } + }, + [2200]={ + connections={ + [1]={ + id=35689, + orbit=7 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + name="Damage", + orbit=7, + orbitIndex=20, + skill=2200, + stats={ + [1]="10% increased Damage" + } + }, + [2211]={ + connections={ + [1]={ + id=7473, + orbit=7 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=7, + orbitIndex=19, + skill=2211, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [2244]={ + connections={ + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge on Critical Hit", + orbit=4, + orbitIndex=51, + skill=2244, + stats={ + [1]="5% chance to Gain Arcane Surge when you deal a Critical Hit" + } + }, + [2254]={ + connections={ + [1]={ + id=60685, + orbit=0 + }, + [2]={ + id=43736, + orbit=5 + }, + [3]={ + id=14666, + orbit=6 + } + }, + group=821, + icon="Art/2DArt/SkillIcons/passives/deepwisdom.png", + isNotable=true, + name="Pure Energy", + orbit=0, + orbitIndex=0, + skill=2254, + stats={ + [1]="30% increased maximum Energy Shield", + [2]="+10 to Intelligence" + } + }, + [2334]={ + connections={ + [1]={ + id=65091, + orbit=6 + }, + [2]={ + id=3209, + orbit=-6 + } + }, + group=1396, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=0, + orbitIndex=0, + skill=2334, + stats={ + [1]="+8 to Dexterity" + } + }, + [2335]={ + connections={ + [1]={ + id=18121, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + isNotable=true, + name="Turn the Clock Forward", + orbit=3, + orbitIndex=8, + skill=2335, + stats={ + [1]="20% increased Spell Damage", + [2]="15% increased Projectile Speed for Spell Skills" + } + }, + [2336]={ + connections={ + [1]={ + id=63402, + orbit=2 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Arcane Surge Effect", + orbit=2, + orbitIndex=9, + skill=2336, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [2344]={ + connections={ + [1]={ + id=34317, + orbit=0 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Dimensional Weakspot", + orbit=7, + orbitIndex=6, + skill=2344, + stats={ + [1]="Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + [2361]={ + connections={ + [1]={ + id=34316, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Stun and Knockback", + orbit=5, + orbitIndex=4, + skill=2361, + stats={ + [1]="20% increased Knockback Distance", + [2]="20% increased Stun Buildup with Quarterstaves" + } + }, + [2394]={ + connections={ + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + isNotable=true, + name="Blade Flurry", + orbit=3, + orbitIndex=9, + skill=2394, + stats={ + [1]="6% increased Attack Speed while Dual Wielding", + [2]="15% increased Attack Critical Hit Chance while Dual Wielding" + } + }, + [2397]={ + connections={ + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Last Stand", + orbit=0, + orbitIndex=0, + skill=2397, + stats={ + [1]="25% increased Attack Damage if you have been Heavy Stunned Recently", + [2]="25% increased Attack Damage while you have no Life Flask uses left", + [3]="25% increased Attack Damage while Surrounded", + [4]="25% increased Attack Damage while on Low Life" + } + }, + [2408]={ + connections={ + [1]={ + id=35696, + orbit=0 + }, + [2]={ + id=35534, + orbit=0 + } + }, + group=1335, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2408, + stats={ + [1]="+5 to any Attribute" + } + }, + [2446]={ + connections={ + [1]={ + id=37164, + orbit=0 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + name="Elemental Damage", + orbit=3, + orbitIndex=18, + skill=2446, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [2455]={ + connections={ + }, + group=764, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=5, + orbitIndex=11, + skill=2455, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [2461]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + connections={ + [1]={ + id=44605, + orbit=0 + } + }, + group=809, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + isOnlyImage=true, + name="Accuracy Mastery", + orbit=0, + orbitIndex=0, + skill=2461 + }, + [2486]={ + connections={ + [1]={ + id=63732, + orbit=3 + }, + [2]={ + id=19341, + orbit=4 + }, + [3]={ + id=58884, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Stars Aligned", + orbit=7, + orbitIndex=16, + skill=2486, + stats={ + [1]="Damage with Hits is Lucky against Enemies that are on Low Life" + } + }, + [2491]={ + connections={ + [1]={ + id=28175, + orbit=0 + } + }, + group=389, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=10, + skill=2491 + }, + [2500]={ + connections={ + [1]={ + id=6030, + orbit=7 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=7, + orbitIndex=10, + skill=2500, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [2508]={ + connections={ + [1]={ + id=47168, + orbit=0 + }, + [2]={ + id=59425, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=18, + skill=2508, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [2511]={ + connections={ + }, + group=544, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Sundering", + orbit=3, + orbitIndex=20, + skill=2511, + stats={ + [1]="25% increased Critical Damage Bonus for Attack Damage", + [2]="+25% to Critical Damage Bonus against Stunned Enemies" + } + }, + [2516]={ + ascendancyName="Lich", + connections={ + }, + group=1225, + icon="Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.png", + isNotable=true, + isSwitchable=true, + name="Price of Power", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.png", + id=11705, + name="Steward of Kulemak", + stats={ + [1]="Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition", + [2]="Grants Skill: Abyssal Apparition" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2516, + stats={ + [1]="Spells consume a Power Charge if able to deal 40% more Damage" + } + }, + [2559]={ + connections={ + [1]={ + id=62542, + orbit=7 + } + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Charges Gained", + orbit=2, + orbitIndex=22, + skill=2559, + stats={ + [1]="10% increased Flask Charges gained" + } + }, + [2560]={ + connections={ + [1]={ + id=20044, + orbit=0 + } + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=1, + skill=2560, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [2575]={ + connections={ + [1]={ + id=65154, + orbit=0 + } + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Alacrity", + orbit=2, + orbitIndex=14, + skill=2575, + stats={ + [1]="30% increased Totem Placement speed", + [2]="8% increased Attack and Cast Speed if you've summoned a Totem Recently" + } + }, + [2582]={ + connections={ + [1]={ + id=48116, + orbit=0 + }, + [2]={ + id=41861, + orbit=0 + }, + [3]={ + id=56847, + orbit=0 + } + }, + group=1448, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2582, + stats={ + [1]="+5 to any Attribute" + } + }, + [2606]={ + connections={ + [1]={ + id=47284, + orbit=0 + }, + [2]={ + id=20388, + orbit=0 + }, + [3]={ + id=15194, + orbit=0 + }, + [4]={ + id=3414, + orbit=0 + } + }, + group=597, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=1, + orbitIndex=6, + skill=2606, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [2645]={ + connections={ + [1]={ + id=14832, + orbit=0 + }, + [2]={ + id=52829, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Skullcrusher", + orbit=4, + orbitIndex=69, + skill=2645, + stats={ + [1]="20% more Damage against Heavy Stunned Enemies with Maces" + } + }, + [2653]={ + connections={ + [1]={ + id=19203, + orbit=0 + }, + [2]={ + id=30896, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Damage and Speed", + orbit=7, + orbitIndex=17, + skill=2653, + stats={ + [1]="Channelling Skills deal 8% increased Damage", + [2]="2% increased Skill Speed with Channelling Skills" + } + }, + [2672]={ + connections={ + [1]={ + id=45569, + orbit=6 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Spell Critical Damage", + orbit=2, + orbitIndex=2, + skill=2672, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [2702]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=3065, + orbit=7 + } + }, + group=1550, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Life Leech", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=2702, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [2732]={ + connections={ + [1]={ + id=16790, + orbit=-2 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana Cost Efficiency", + orbit=1, + orbitIndex=11, + skill=2732, + stats={ + [1]="8% increased Mana Cost Efficiency" + } + }, + [2733]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + isOnlyImage=true, + name="Lightning Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=2733, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [2745]={ + connections={ + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.png", + isNotable=true, + name="The Noble Wolf", + orbit=1, + orbitIndex=3, + skill=2745, + stats={ + [1]="25% increased Magnitude of Ailments you inflict against Marked Enemies", + [2]="20% increased Critical Hit Chance against Marked Enemies", + [3]="+10 to Dexterity" + } + }, + [2810]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=9843, + orbit=-3 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.png", + isNotable=true, + name="Varashta's Intuition", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=20, + skill=2810, + stats={ + [1]="100% of Elemental Damage is taken from Mana before Life" + } + }, + [2814]={ + connections={ + [1]={ + id=41447, + orbit=0 + }, + [2]={ + id=19749, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Engineered Blaze", + orbit=3, + orbitIndex=5, + skill=2814, + stats={ + [1]="4% increased Area of Effect for Attacks per Enemy you've Ignited in the last 8 seconds, up to 40%" + } + }, + [2841]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=2841 + }, + [2843]={ + connections={ + [1]={ + id=61396, + orbit=0 + }, + [2]={ + id=61318, + orbit=0 + }, + [3]={ + id=62235, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Tolerant Equipment", + orbit=5, + orbitIndex=36, + skill=2843, + stats={ + [1]="15% increased Armour and Evasion Rating", + [2]="Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating", + [3]="Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour" + } + }, + [2847]={ + connections={ + [1]={ + id=45272, + orbit=0 + } + }, + group=782, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2847, + stats={ + [1]="+5 to any Attribute" + } + }, + [2857]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=7998, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.png", + isNotable=true, + name="Strike Twice", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=66, + skill=2857, + stats={ + [1]="Targets can be affected by two of your Shocks at the same time", + [2]="25% less Magnitude of Shock you inflict" + } + }, + [2863]={ + connections={ + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Perpetual Freeze", + orbit=0, + orbitIndex=0, + skill=2863, + stats={ + [1]="20% increased Freeze Buildup", + [2]="15% increased Chill and Freeze Duration on Enemies", + [3]="15% increased Magnitude of Chill you inflict" + } + }, + [2864]={ + connections={ + [1]={ + id=54818, + orbit=0 + }, + [2]={ + id=21468, + orbit=0 + }, + [3]={ + id=33369, + orbit=0 + }, + [4]={ + id=59480, + orbit=0 + }, + [5]={ + id=63360, + orbit=0 + } + }, + group=658, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2864, + stats={ + [1]="+5 to any Attribute" + } + }, + [2877]={ + ascendancyName="Lich", + connections={ + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.png", + isNotable=true, + isSwitchable=true, + name="Blackened Heart", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.png", + id=36863, + name="Unwilling Offering", + stats={ + [1]="Your Offerings can target Enemies in Culling range", + [2]="Your Offerings affect you instead of your Minions", + [3]="Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy" + } + } + }, + orbit=9, + orbitIndex=104, + skill=2877, + stats={ + [1]="4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana" + } + }, + [2888]={ + connections={ + [1]={ + id=8827, + orbit=0 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=7, + orbitIndex=15, + skill=2888, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [2936]={ + connections={ + [1]={ + id=13407, + orbit=-3 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Damage", + orbit=7, + orbitIndex=4, + skill=2936, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [2946]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Resistance Mastery", + orbit=1, + orbitIndex=1, + skill=2946 + }, + [2955]={ + connections={ + [1]={ + id=28800, + orbit=0 + } + }, + group=418, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + name="Projectile Damage", + orbit=2, + orbitIndex=0, + skill=2955, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [2964]={ + connections={ + [1]={ + id=18374, + orbit=-7 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns and Leech", + orbit=2, + orbitIndex=15, + skill=2964, + stats={ + [1]="8% increased amount of Life Leeched", + [2]="12% increased Thorns damage" + } + }, + [2978]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=898, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=2978 + }, + [2995]={ + ascendancyName="Lich", + connections={ + [1]={ + id=2516, + orbit=4 + } + }, + group=1209, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Energy Shield if Consumed Power Charge", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=12474, + name="Energy Shield if Consumed Power Charge", + stats={ + [1]="30% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + } + }, + orbit=0, + orbitIndex=0, + skill=2995, + stats={ + [1]="30% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [2999]={ + connections={ + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Final Barrage", + orbit=6, + orbitIndex=22, + skill=2999, + stats={ + [1]="20% increased Cast Speed when on Low Life", + [2]="10% reduced Cast Speed when on Full Life" + } + }, + [3025]={ + connections={ + [1]={ + id=38732, + orbit=0 + }, + [2]={ + id=36782, + orbit=0 + }, + [3]={ + id=25594, + orbit=0 + } + }, + group=824, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=3025, + stats={ + [1]="+5 to any Attribute" + } + }, + [3027]={ + connections={ + [1]={ + id=54228, + orbit=0 + } + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=2, + orbitIndex=22, + skill=3027, + stats={ + [1]="10% increased Physical Damage" + } + }, + [3041]={ + connections={ + [1]={ + id=59795, + orbit=-4 + }, + [2]={ + id=858, + orbit=0 + }, + [3]={ + id=19240, + orbit=6 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=10, + skill=3041, + stats={ + [1]="+5 to any Attribute" + } + }, + [3042]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + [1]={ + id=51871, + orbit=0 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=2, + orbitIndex=19, + skill=3042 + }, + [3051]={ + connections={ + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Life", + orbit=2, + orbitIndex=0, + skill=3051, + stats={ + [1]="Offerings have 30% increased Maximum Life" + } + }, + [3065]={ + ascendancyName="Amazon", + connections={ + }, + group=1552, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.png", + isNotable=true, + name="Mystic Harvest", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3065, + stats={ + [1]="Life Leech recovers based on your Elemental damage as well as Physical damage" + } + }, + [3084]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=30996, + orbit=0 + } + }, + group=500, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3084, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [3091]={ + connections={ + [1]={ + id=24087, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Consumption Chance", + orbit=2, + orbitIndex=8, + skill=3091, + stats={ + [1]="Skills have 5% chance to not remove Elemental Infusions but still count as consuming them" + } + }, + [3109]={ + connections={ + [1]={ + id=29514, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Area", + orbit=3, + orbitIndex=6, + skill=3109, + stats={ + [1]="10% increased Grenade Area of Effect" + } + }, + [3128]={ + connections={ + [1]={ + id=19722, + orbit=0 + } + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cast Speed with Cold Skills", + orbit=7, + orbitIndex=14, + skill=3128, + stats={ + [1]="3% increased Cast Speed with Cold Skills" + } + }, + [3131]={ + connections={ + [1]={ + id=2394, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Speed", + orbit=2, + orbitIndex=9, + skill=3131, + stats={ + [1]="3% increased Attack Speed while Dual Wielding" + } + }, + [3165]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=56162, + orbit=-4 + } + }, + group=1025, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3165, + stats={ + [1]="3% increased maximum Life" + } + }, + [3170]={ + connections={ + [1]={ + id=65161, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Deflection", + orbit=2, + orbitIndex=20, + skill=3170, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [3188]={ + connections={ + [1]={ + id=38670, + orbit=0 + }, + [2]={ + id=46051, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.png", + isNotable=true, + name="Revenge", + orbit=3, + orbitIndex=18, + skill=3188, + stats={ + [1]="Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour" + } + }, + [3191]={ + connections={ + [1]={ + id=9863, + orbit=4 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=3, + orbitIndex=12, + skill=3191, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [3203]={ + connections={ + [1]={ + id=30562, + orbit=-4 + }, + [2]={ + id=28464, + orbit=4 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Deflection and Energy Shield Delay", + orbit=7, + orbitIndex=14, + skill=3203, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [3209]={ + connections={ + [1]={ + id=59720, + orbit=-6 + }, + [2]={ + id=65091, + orbit=4 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=16, + skill=3209, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [3215]={ + connections={ + [1]={ + id=44359, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Melding", + orbit=7, + orbitIndex=9, + skill=3215, + stats={ + [1]="40% increased maximum Energy Shield", + [2]="10% reduced maximum Mana" + } + }, + [3218]={ + connections={ + [1]={ + id=48171, + orbit=0 + } + }, + group=249, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=17, + skill=3218, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [3223]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=7068, + orbit=-5 + }, + [2]={ + id=34785, + orbit=9 + } + }, + group=1556, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Attributes", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3223, + stats={ + [1]="3% increased Attributes" + } + }, + [3234]={ + connections={ + [1]={ + id=4447, + orbit=0 + }, + [2]={ + id=31745, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Duration", + orbit=1, + orbitIndex=8, + skill=3234, + stats={ + [1]="15% increased Pin duration" + } + }, + [3242]={ + connections={ + [1]={ + id=59636, + orbit=-4 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=16, + skill=3242, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [3245]={ + connections={ + [1]={ + id=7395, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns and Block", + orbit=2, + orbitIndex=7, + skill=3245, + stats={ + [1]="4% increased Block chance", + [2]="10% increased Thorns damage" + } + }, + [3251]={ + connections={ + [1]={ + id=21984, + orbit=0 + } + }, + group=1129, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=3251, + stats={ + [1]="+5 to any Attribute" + } + }, + [3281]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=35720, + orbit=0 + } + }, + group=694, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + isNotable=true, + name="Powerful Casting", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3281, + stats={ + [1]="2% increased Spell Damage per 10 Strength" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [3282]={ + connections={ + [1]={ + id=52860, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Immobilisation Buildup", + orbit=3, + orbitIndex=15, + skill=3282, + stats={ + [1]="20% increased Ballista Immobilisation buildup" + } + }, + [3332]={ + connections={ + }, + group=623, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.png", + name="Minion Cold Resistance", + orbit=0, + orbitIndex=0, + skill=3332, + stats={ + [1]="Minions have +20% to Cold Resistance", + [2]="Minions have +3% to Maximum Cold Resistances" + } + }, + [3336]={ + connections={ + [1]={ + id=30615, + orbit=0 + } + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Critical Damage when consuming a Power Charge", + orbit=2, + orbitIndex=19, + skill=3336, + stats={ + [1]="20% increased Critical Damage Bonus if you've consumed a Power Charge Recently" + } + }, + [3339]={ + connections={ + [1]={ + id=45585, + orbit=0 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=19, + skill=3339, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [3348]={ + connections={ + [1]={ + id=50767, + orbit=0 + } + }, + group=101, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png", + isNotable=true, + name="Spirit of the Wolf", + orbit=0, + orbitIndex=0, + skill=3348, + stats={ + [1]="20% increased Critical Hit Chance while Shapeshifted", + [2]="8% increased Skill Speed while Shapeshifted" + } + }, + [3355]={ + connections={ + [1]={ + id=25211, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You and Debuff Expiry Rate", + orbit=3, + orbitIndex=0, + skill=3355, + stats={ + [1]="4% reduced Slowing Potency of Debuffs on You", + [2]="Debuffs on you expire 3% faster" + } + }, + [3363]={ + connections={ + [1]={ + id=38433, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=2, + orbitIndex=11, + skill=3363, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [3365]={ + connections={ + [1]={ + id=59289, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Immobilisation Buildup", + orbit=2, + orbitIndex=17, + skill=3365, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [3367]={ + aliasPassiveSocket="voices_jewel_slot5", + connections={ + }, + group=668, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Sinister Jewel Socket", + noRadius=true, + nodeOverlay={ + alloc="BlightedNotableFrameAllocated", + path="BlightedNotableFrameCanAllocate", + unalloc="BlightedNotableFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3367 + }, + [3414]={ + connections={ + [1]={ + id=14575, + orbit=0 + } + }, + group=612, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.png", + name="Minion Lightning Resistance", + orbit=0, + orbitIndex=0, + skill=3414, + stats={ + [1]="Minions have +20% to Lightning Resistance" + } + }, + [3419]={ + connections={ + [1]={ + id=20429, + orbit=0 + }, + [2]={ + id=30973, + orbit=2 + } + }, + group=1468, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Damage", + orbit=6, + orbitIndex=59, + skill=3419, + stats={ + [1]="10% increased Damage with Daggers" + } + }, + [3431]={ + connections={ + [1]={ + id=43082, + orbit=0 + } + }, + group=1359, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Skill Speed", + orbit=1, + orbitIndex=6, + skill=3431, + stats={ + [1]="3% increased Skill Speed" + } + }, + [3438]={ + connections={ + [1]={ + id=18856, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Spell Damage", + orbit=3, + orbitIndex=3, + skill=3438, + stats={ + [1]="Invocated Spells deal 15% increased Damage" + } + }, + [3443]={ + connections={ + [1]={ + id=14548, + orbit=-4 + }, + [2]={ + id=63545, + orbit=-3 + }, + [3]={ + id=55180, + orbit=7 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=7, + orbitIndex=12, + skill=3443, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [3446]={ + connections={ + [1]={ + id=61938, + orbit=0 + }, + [2]={ + id=58088, + orbit=0 + }, + [3]={ + id=41147, + orbit=0 + } + }, + group=234, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=3446, + stats={ + [1]="+5 to any Attribute" + } + }, + [3458]={ + connections={ + [1]={ + id=45609, + orbit=-4 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=23, + skill=3458, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [3463]={ + connections={ + [1]={ + id=4328, + orbit=0 + }, + [2]={ + id=26885, + orbit=0 + }, + [3]={ + id=28021, + orbit=0 + } + }, + group=1211, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=3463, + stats={ + [1]="+5 to any Attribute" + } + }, + [3471]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=3471 + }, + [3472]={ + connections={ + [1]={ + id=26682, + orbit=-3 + } + }, + group=734, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Chance", + orbit=7, + orbitIndex=12, + skill=3472, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [3492]={ + connections={ + [1]={ + id=60313, + orbit=0 + }, + [2]={ + id=19112, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Void", + orbit=3, + orbitIndex=12, + skill=3492, + stats={ + [1]="29% increased Chaos Damage", + [2]="Enemies you Curse have -3% to Chaos Resistance" + } + }, + [3516]={ + connections={ + [1]={ + id=62039, + orbit=0 + }, + [2]={ + id=23227, + orbit=0 + } + }, + group=613, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=0, + skill=3516, + stats={ + [1]="10% increased Melee Damage" + } + }, + [3543]={ + connections={ + [1]={ + id=31825, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Attack Cold Damage", + orbit=7, + orbitIndex=23, + skill=3543, + stats={ + [1]="12% increased Attack Cold Damage" + } + }, + [3544]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=19953, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=8, + skill=3544, + stats={ + [1]="15% increased Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [3567]={ + connections={ + [1]={ + id=53188, + orbit=0 + }, + [2]={ + id=10159, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Raw Mana", + orbit=3, + orbitIndex=16, + skill=3567, + stats={ + [1]="8% increased maximum Mana", + [2]="10% increased Mana Cost of Skills" + } + }, + [3601]={ + connections={ + [1]={ + id=47191, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=4, + orbitIndex=62, + skill=3601, + stats={ + [1]="12% increased Fire Damage" + } + }, + [3605]={ + ascendancyName="Chronomancer", + connections={ + }, + group=371, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.png", + isNotable=true, + name="Unbound Encore", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3605, + stats={ + [1]="Grants Skill: Time Snap" + } + }, + [3624]={ + connections={ + [1]={ + id=18470, + orbit=0 + }, + [2]={ + id=10927, + orbit=0 + }, + [3]={ + id=16484, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=3, + orbitIndex=5, + skill=3624, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [3628]={ + connections={ + [1]={ + id=64474, + orbit=0 + }, + [2]={ + id=3251, + orbit=0 + } + }, + group=1153, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=19, + skill=3628, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [3630]={ + connections={ + [1]={ + id=62624, + orbit=-5 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield Delay", + orbit=3, + orbitIndex=18, + skill=3630, + stats={ + [1]="12% increased Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [3640]={ + connections={ + [1]={ + id=37780, + orbit=0 + }, + [2]={ + id=17724, + orbit=0 + }, + [3]={ + id=14267, + orbit=0 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + name="Attack Damage and Combo", + orbit=3, + orbitIndex=7, + skill=3640, + stats={ + [1]="5% increased Attack Damage", + [2]="5% Chance to build an additional Combo on Hit" + } + }, + [3652]={ + connections={ + [1]={ + id=56714, + orbit=3 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed and Physical Damage", + orbit=2, + orbitIndex=7, + skill=3652, + stats={ + [1]="5% increased Projectile Speed", + [2]="8% increased Physical Damage" + } + }, + [3660]={ + connections={ + [1]={ + id=25619, + orbit=-7 + }, + [2]={ + id=57196, + orbit=0 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Chance", + orbit=3, + orbitIndex=18, + skill=3660, + stats={ + [1]="8% chance to Blind Enemies on Hit with Attacks" + } + }, + [3665]={ + connections={ + [1]={ + id=32185, + orbit=-7 + } + }, + group=1009, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png", + name="Attack Damage and Companion Damage as Cold", + orbit=0, + orbitIndex=0, + skill=3665, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Cold Damage" + } + }, + [3681]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57386, + orbit=-8 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Elemental Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=54, + skill=3681, + stats={ + [1]="17% increased Elemental Ailment Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [3685]={ + connections={ + [1]={ + id=32151, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=7, + orbitIndex=18, + skill=3685, + stats={ + [1]="+3 to all Attributes" + } + }, + [3688]={ + connections={ + [1]={ + id=47614, + orbit=-7 + }, + [2]={ + id=32509, + orbit=0 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Dynamism", + orbit=7, + orbitIndex=4, + skill=3688, + stats={ + [1]="40% increased Damage if you've Triggered a Skill Recently", + [2]="Meta Skills gain 15% increased Energy" + } + }, + [3698]={ + connections={ + [1]={ + id=33137, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/icongroundslam.png", + isNotable=true, + name="Spike Pit", + orbit=2, + orbitIndex=11, + skill=3698, + stats={ + [1]="Enemies in Jagged Ground you create take 10% increased Damage" + } + }, + [3700]={ + connections={ + [1]={ + id=6842, + orbit=3 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + name="Stun and Freeze Buildup", + orbit=2, + orbitIndex=6, + skill=3700, + stats={ + [1]="15% increased Stun Buildup", + [2]="15% increased Freeze Buildup" + } + }, + [3704]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=32559, + orbit=0 + } + }, + group=281, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.png", + isNotable=true, + name="Witchbane", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=3704, + stats={ + [1]="Enemies have Maximum Concentration equal to 30% of their Maximum Life", + [2]="Break enemy Concentration on Hit equal to 100% of Damage Dealt", + [3]="Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds" + } + }, + [3717]={ + connections={ + [1]={ + id=19998, + orbit=0 + }, + [2]={ + id=35653, + orbit=0 + } + }, + group=864, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Damage", + orbit=0, + orbitIndex=0, + skill=3717, + stats={ + [1]="12% increased Damage with Crossbows" + } + }, + [3723]={ + connections={ + [1]={ + id=16413, + orbit=0 + }, + [2]={ + id=17092, + orbit=0 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/minionstr.png", + name="Attack and Minion Damage", + orbit=2, + orbitIndex=22, + skill=3723, + stats={ + [1]="8% increased Attack Damage", + [2]="Minions deal 8% increased Damage" + } + }, + [3744]={ + connections={ + [1]={ + id=5332, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=1, + orbitIndex=10, + skill=3744, + stats={ + [1]="+8 to Dexterity" + } + }, + [3762]={ + ascendancyName="Titan", + connections={ + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.png", + isNotable=true, + name="Ancestral Empowerment", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=125, + skill=3762, + stats={ + [1]="Every second Slam Skill you use yourself is Ancestrally Boosted" + } + }, + [3775]={ + connections={ + [1]={ + id=45244, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charges", + orbit=2, + orbitIndex=12, + skill=3775, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [3781]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.png", + isNotable=true, + name="Unravelling", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=136, + skill=3781, + stats={ + [1]="Grants Unravelling" + } + }, + [3823]={ + connections={ + [1]={ + id=5726, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + isSwitchable=true, + name="Elemental Force", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=17324, + name="Power of the Dead", + stats={ + [1]="Minions deal 20% increased Damage", + [2]="Minions have 4% increased Attack and Cast Speed" + } + } + }, + orbit=1, + orbitIndex=0, + skill=3823, + stats={ + [1]="+3% to all Elemental Resistances", + [2]="20% increased Elemental Damage" + } + }, + [3843]={ + connections={ + [1]={ + id=65265, + orbit=0 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Stun Buildup", + orbit=2, + orbitIndex=11, + skill=3843, + stats={ + [1]="Parry has 25% increased Stun Buildup" + } + }, + [3866]={ + connections={ + [1]={ + id=32258, + orbit=0 + }, + [2]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=7, + orbitIndex=5, + skill=3866, + stats={ + [1]="Minions have 12% increased maximum Life" + } + }, + [3893]={ + connections={ + [1]={ + id=28038, + orbit=-2 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=2, + orbitIndex=0, + skill=3893, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [3894]={ + connections={ + [1]={ + id=13307, + orbit=0 + }, + [2]={ + id=857, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Eldritch Will", + orbit=4, + orbitIndex=30, + skill=3894, + stats={ + [1]="3% increased maximum Life, Mana and Energy Shield", + [2]="Gain additional Ailment Threshold equal to 15% of maximum Energy Shield", + [3]="Gain additional Stun Threshold equal to 15% of maximum Energy Shield" + } + }, + [3896]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=56320, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Vale Dweller", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=19, + skill=3896, + stats={ + [1]="50% increased Armour while Bleeding", + [2]="50% reduced Magnitude of Bleeding on You" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [3918]={ + connections={ + [1]={ + id=59695, + orbit=0 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=15, + skill=3918, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [3921]={ + connections={ + [1]={ + id=38398, + orbit=0 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + isNotable=true, + name="Fate Finding", + orbit=7, + orbitIndex=10, + skill=3921, + stats={ + [1]="20% increased Reservation Efficiency of Herald Skills" + } + }, + [3936]={ + connections={ + [1]={ + id=13397, + orbit=0 + } + }, + group=693, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=0, + orbitIndex=0, + skill=3936, + stats={ + [1]="10% increased Melee Damage" + } + }, + [3949]={ + connections={ + [1]={ + id=27296, + orbit=0 + }, + [2]={ + id=15247, + orbit=2 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage and Power Counted", + orbit=2, + orbitIndex=10, + skill=3949, + stats={ + [1]="Empowered Attacks deal 8% increased Damage", + [2]="5% increased total Power counted by Warcries" + } + }, + [3985]={ + connections={ + [1]={ + id=48660, + orbit=0 + }, + [2]={ + id=64140, + orbit=3 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + isNotable=true, + name="Forces of Nature", + orbit=2, + orbitIndex=15, + skill=3985, + stats={ + [1]="Attack Damage Penetrates 15% of Enemy Elemental Resistances" + } + }, + [3987]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=30, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=27, + skill=3987, + stats={ + [1]="4% increased Skill Speed" + } + }, + [3988]={ + connections={ + [1]={ + id=51832, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=13, + skill=3988, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [3994]={ + connections={ + [1]={ + id=34908, + orbit=0 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=23, + skill=3994, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [3995]={ + connections={ + [1]={ + id=12311, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=7, + orbitIndex=13, + skill=3995, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [3999]={ + connections={ + [1]={ + id=37665, + orbit=4 + }, + [2]={ + id=57863, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=4, + orbitIndex=15, + skill=3999, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [4015]={ + connections={ + [1]={ + id=47429, + orbit=3 + }, + [2]={ + id=59466, + orbit=-3 + } + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown", + orbit=4, + orbitIndex=6, + skill=4015, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [4017]={ + connections={ + [1]={ + id=10079, + orbit=0 + } + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=12, + skill=4017, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [4031]={ + connections={ + [1]={ + id=50403, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Icebreaker", + orbit=3, + orbitIndex=15, + skill=4031, + stats={ + [1]="Gain 50% of maximum Energy Shield as additional Freeze Threshold" + } + }, + [4046]={ + connections={ + [1]={ + id=8875, + orbit=0 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Electrocute Buildup", + orbit=2, + orbitIndex=8, + skill=4046, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [4059]={ + connections={ + [1]={ + id=10382, + orbit=0 + }, + [2]={ + id=9510, + orbit=0 + }, + [3]={ + id=2446, + orbit=0 + }, + [4]={ + id=18744, + orbit=7 + }, + [5]={ + id=42339, + orbit=-7 + } + }, + group=1130, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4059, + stats={ + [1]="+5 to any Attribute" + } + }, + [4061]={ + connections={ + [1]={ + id=27491, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=36, + skill=4061, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [4083]={ + connections={ + [1]={ + id=33815, + orbit=0 + }, + [2]={ + id=43677, + orbit=0 + } + }, + group=1125, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=2, + orbitIndex=11, + skill=4083, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [4086]={ + ascendancyName="Tactician", + connections={ + }, + group=452, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.png", + isNotable=true, + name="Strategic Embankments", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=4086, + stats={ + [1]="Totems you place grant Embankment Auras" + } + }, + [4091]={ + connections={ + [1]={ + id=44316, + orbit=0 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Left Ventricle", + orbit=7, + orbitIndex=20, + skill=4091, + stats={ + [1]="20% increased speed of Recoup Effects" + } + }, + [4113]={ + connections={ + [1]={ + id=4627, + orbit=0 + } + }, + group=822, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=4, + skill=4113, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [4128]={ + connections={ + [1]={ + id=54283, + orbit=3 + }, + [2]={ + id=54811, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=18, + skill=4128, + stats={ + [1]="15% increased Armour" + } + }, + [4139]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=138, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=4139 + }, + [4140]={ + connections={ + [1]={ + id=59093, + orbit=0 + }, + [2]={ + id=57273, + orbit=0 + }, + [3]={ + id=296, + orbit=0 + } + }, + group=224, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4140, + stats={ + [1]="+5 to any Attribute" + } + }, + [4157]={ + connections={ + [1]={ + id=49220, + orbit=-6 + } + }, + group=977, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + name="Critical Chance", + orbit=7, + orbitIndex=18, + skill=4157, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [4197]={ + ascendancyName="Oracle", + connections={ + }, + group=36, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.png", + isNotable=true, + name="Converging Paths", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=4197, + stats={ + [1]="Grants Skill: Moment of Vulnerability" + } + }, + [4203]={ + connections={ + [1]={ + id=30555, + orbit=4 + }, + [2]={ + id=42736, + orbit=-4 + }, + [3]={ + id=59603, + orbit=-4 + }, + [4]={ + id=49046, + orbit=0 + }, + [5]={ + id=42076, + orbit=3 + } + }, + group=904, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4203, + stats={ + [1]="+5 to any Attribute" + } + }, + [4238]={ + connections={ + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + isNotable=true, + name="Versatile Arms", + orbit=0, + orbitIndex=0, + skill=4238, + stats={ + [1]="6% increased Attack Speed with One Handed Melee Weapons", + [2]="15% increased Accuracy Rating with One Handed Melee Weapons", + [3]="+10 to Strength and Dexterity" + } + }, + [4245]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=54838, + orbit=0 + } + }, + group=340, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Pin Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=4245, + stats={ + [1]="20% increased Pin Buildup" + } + }, + [4271]={ + connections={ + [1]={ + id=62887, + orbit=0 + }, + [2]={ + id=33225, + orbit=-3 + }, + [3]={ + id=61768, + orbit=-7 + }, + [4]={ + id=63926, + orbit=-2 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png", + name="Minion Resistances", + orbit=2, + orbitIndex=8, + skill=4271, + stats={ + [1]="Minions have +8% to all Elemental Resistances" + } + }, + [4295]={ + connections={ + [1]={ + id=34248, + orbit=-3 + } + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Adverse Growth", + orbit=0, + orbitIndex=0, + skill=4295, + stats={ + [1]="20% reduced Life Regeneration rate", + [2]="20% of Damage taken Recouped as Mana" + } + }, + [4313]={ + connections={ + [1]={ + id=28992, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + id=55896, + name="Attack Damage", + stats={ + [1]="8% increased Attack Damage" + } + } + }, + orbit=7, + orbitIndex=6, + skill=4313, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [4328]={ + connections={ + [1]={ + id=21208, + orbit=0 + }, + [2]={ + id=44628, + orbit=0 + } + }, + group=1210, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4328, + stats={ + [1]="+5 to any Attribute" + } + }, + [4331]={ + connections={ + [1]={ + id=33590, + orbit=0 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Guided Hand", + orbit=3, + orbitIndex=19, + skill=4331, + stats={ + [1]="The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted", + [2]="Ancestrally Boosted Attacks deal 30% increased Damage" + } + }, + [4345]={ + connections={ + [1]={ + id=45885, + orbit=0 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png", + name="Minion Damage and Command Speed", + orbit=3, + orbitIndex=9, + skill=4345, + stats={ + [1]="Minions deal 6% increased Damage", + [2]="Minions have 8% increased Cooldown Recovery Rate for Command Skills" + } + }, + [4346]={ + connections={ + [1]={ + id=4519, + orbit=0 + }, + [2]={ + id=20677, + orbit=0 + } + }, + group=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=4346, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [4364]={ + connections={ + [1]={ + id=23736, + orbit=0 + } + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Reduced Movement Penalty and Attack Damage while Moving", + orbit=4, + orbitIndex=42, + skill=4364, + stats={ + [1]="8% increased Attack Damage while moving", + [2]="2% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [4367]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.png", + isNotable=true, + name="The Mhacha's Gift", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=54, + skill=4367, + stats={ + [1]="Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more\nEmpowerment effect per additional Feather expended", + [2]="Gain Owl Feathers 50% faster" + } + }, + [4377]={ + connections={ + [1]={ + id=50273, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Accuracy", + orbit=2, + orbitIndex=15, + skill=4377, + stats={ + [1]="10% increased Accuracy Rating while Dual Wielding" + } + }, + [4378]={ + connections={ + [1]={ + id=6330, + orbit=0 + }, + [2]={ + id=59503, + orbit=0 + } + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=9, + skill=4378, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [4407]={ + connections={ + }, + group=581, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Physical Damage Reduction", + orbit=0, + orbitIndex=0, + skill=4407, + stats={ + [1]="Minions have 12% additional Physical Damage Reduction", + [2]="Minions have 25% increased Evasion Rating" + } + }, + [4423]={ + connections={ + [1]={ + id=54058, + orbit=0 + } + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + isNotable=true, + name="Coated Knife", + orbit=2, + orbitIndex=7, + skill=4423, + stats={ + [1]="Critical Hits with Daggers have a 25% chance to Poison the Enemy" + } + }, + [4442]={ + connections={ + [1]={ + id=62034, + orbit=0 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/lightningstr.png", + name="Armour Applies to Lightning Damage Hits", + orbit=3, + orbitIndex=10, + skill=4442, + stats={ + [1]="+15% of Armour also applies to Lightning Damage" + } + }, + [4447]={ + connections={ + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Pin their Motivation", + orbit=7, + orbitIndex=12, + skill=4447, + stats={ + [1]="20% increased Pin duration", + [2]="Pinned Enemies cannot deal Critical Hits" + } + }, + [4456]={ + connections={ + [1]={ + id=57710, + orbit=0 + }, + [2]={ + id=4776, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4456, + stats={ + [1]="+5 to any Attribute" + } + }, + [4467]={ + connections={ + [1]={ + id=42347, + orbit=-2 + } + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + name="Damage vs Blinded", + orbit=7, + orbitIndex=4, + skill=4467, + stats={ + [1]="15% increased Damage with Hits against Blinded Enemies" + } + }, + [4492]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + connections={ + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Attributes Mastery", + orbit=0, + orbitIndex=0, + skill=4492 + }, + [4519]={ + connections={ + [1]={ + id=13724, + orbit=0 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Damage on Critical", + orbit=0, + orbitIndex=0, + skill=4519, + stats={ + [1]="10% increased Damage if you've dealt a Critical Hit Recently" + } + }, + [4527]={ + connections={ + [1]={ + id=54701, + orbit=0 + } + }, + group=236, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4527, + stats={ + [1]="+5 to any Attribute" + } + }, + [4534]={ + connections={ + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Piercing Shot", + orbit=3, + orbitIndex=13, + skill=4534, + stats={ + [1]="50% chance to Pierce an Enemy" + } + }, + [4536]={ + connections={ + [1]={ + id=37514, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Speed", + orbit=2, + orbitIndex=1, + skill=4536, + stats={ + [1]="3% increased Attack Speed with Quarterstaves" + } + }, + [4544]={ + connections={ + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.png", + isNotable=true, + name="The Ancient Serpent", + orbit=7, + orbitIndex=8, + skill=4544, + stats={ + [1]="40% reduced Poison Duration on you", + [2]="Life Flasks gain 0.1 charges per Second", + [3]="+10 to Intelligence" + } + }, + [4547]={ + connections={ + [1]={ + id=2946, + orbit=0 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + isNotable=true, + name="Unnatural Resilience", + orbit=0, + orbitIndex=0, + skill=4547, + stats={ + [1]="+3% to all Elemental Resistances", + [2]="+2% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed" + } + }, + [4552]={ + connections={ + [1]={ + id=50817, + orbit=2 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=15, + skill=4552, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [4577]={ + connections={ + [1]={ + id=3999, + orbit=4 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=7, + orbitIndex=8, + skill=4577, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [4579]={ + connections={ + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Unbothering Cold", + orbit=2, + orbitIndex=4, + skill=4579, + stats={ + [1]="+10% to Cold Resistance", + [2]="+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed" + } + }, + [4621]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57202, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun and Elemental Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=30, + skill=4621, + stats={ + [1]="11% increased Stun Threshold", + [2]="11% increased Elemental Ailment Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [4623]={ + connections={ + [1]={ + id=48524, + orbit=4 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Spell Costs", + orbit=2, + orbitIndex=4, + skill=4623, + stats={ + [1]="15% of Spell Mana Cost Converted to Life Cost" + } + }, + [4624]={ + connections={ + [1]={ + id=49550, + orbit=3 + } + }, + group=549, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=7, + orbitIndex=7, + skill=4624, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [4627]={ + connections={ + [1]={ + id=44179, + orbit=0 + }, + [2]={ + id=55572, + orbit=0 + } + }, + group=823, + icon="Art/2DArt/SkillIcons/passives/ColdFireNode.png", + isNotable=true, + name="Climate Change", + orbit=7, + orbitIndex=0, + skill=4627, + stats={ + [1]="20% increased Freeze Buildup", + [2]="Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies" + } + }, + [4661]={ + connections={ + [1]={ + id=12821, + orbit=0 + }, + [2]={ + id=65353, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + isNotable=true, + name="Inspiring Leader", + orbit=3, + orbitIndex=4, + skill=4661, + stats={ + [1]="Banners also grant +25% to all Elemental Resistances affected targets" + } + }, + [4663]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=388, + icon="", + isOnlyImage=true, + name="Minion Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=4663, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [4664]={ + connections={ + [1]={ + id=43938, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Throw Speed", + orbit=6, + orbitIndex=42, + skill=4664, + stats={ + [1]="6% increased Trap Throwing Speed" + } + }, + [4665]={ + connections={ + [1]={ + id=1913, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=7, + orbitIndex=0, + skill=4665, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [4673]={ + connections={ + [1]={ + id=10047, + orbit=0 + }, + [2]={ + id=51812, + orbit=0 + } + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Hulking Smash", + orbit=2, + orbitIndex=16, + skill=4673, + stats={ + [1]="30% increased Stun Buildup", + [2]="+15 to Strength" + } + }, + [4681]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48828, + orbit=0 + }, + [2]={ + id=26228, + orbit=0 + } + }, + group=481, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=20, + skill=4681, + stats={ + [1]="2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [4709]={ + connections={ + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Near Sighted", + orbit=2, + orbitIndex=19, + skill=4709, + stats={ + [1]="30% increased Critical Hit Chance for Attacks", + [2]="30% increased penalty to Accuracy Rating at range" + } + }, + [4716]={ + connections={ + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Afterimage", + orbit=3, + orbitIndex=18, + skill=4716, + stats={ + [1]="60% increased Evasion Rating if you have Hit an Enemy Recently", + [2]="5% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [4725]={ + connections={ + [1]={ + id=4140, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + name="Sentinels", + orbit=4, + orbitIndex=63, + skill=4725, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [4739]={ + connections={ + [1]={ + id=18845, + orbit=0 + } + }, + group=798, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=17306, + name="Spell and Minion Damage", + stats={ + [1]="10% increased Spell Damage", + [2]="Minions deal 10% increased Damage" + } + } + }, + orbit=3, + orbitIndex=22, + skill=4739, + stats={ + [1]="10% increased Spell Damage" + } + }, + [4748]={ + connections={ + [1]={ + id=2254, + orbit=6 + } + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + id=48235, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=3, + orbitIndex=6, + skill=4748, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [4776]={ + connections={ + [1]={ + id=14363, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=2, + skill=4776, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [4806]={ + connections={ + [1]={ + id=32183, + orbit=-4 + } + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=10, + skill=4806, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [4810]={ + connections={ + [1]={ + id=48805, + orbit=7 + }, + [2]={ + id=6161, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Sanguine Tolerance", + orbit=1, + orbitIndex=6, + skill=4810, + stats={ + [1]="Immune to Corrupted Blood", + [2]="40% reduced Duration of Bleeding on You" + } + }, + [4828]={ + connections={ + [1]={ + id=19044, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=12, + skill=4828, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [4844]={ + connections={ + [1]={ + id=33053, + orbit=0 + } + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=1, + skill=4844, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [4847]={ + connections={ + [1]={ + id=6294, + orbit=5 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=5, + orbitIndex=66, + skill=4847, + stats={ + [1]="3% increased Cast Speed" + } + }, + [4850]={ + connections={ + [1]={ + id=35503, + orbit=0 + } + }, + group=968, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Effect and Mana Regeneration", + orbit=0, + orbitIndex=0, + skill=4850, + stats={ + [1]="6% increased Mana Regeneration Rate", + [2]="10% increased Magnitude of Shock you inflict" + } + }, + [4873]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12683, + orbit=0 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=0, + skill=4873, + stats={ + [1]="Meta Skills gain 20% increased Energy" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [4882]={ + connections={ + [1]={ + id=38172, + orbit=0 + }, + [2]={ + id=51921, + orbit=0 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=2, + orbitIndex=3, + skill=4882, + stats={ + [1]="15% increased Totem Damage" + } + }, + [4891]={ + ascendancyName="Ritualist", + connections={ + }, + group=1566, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.png", + isNotable=true, + name="Intricate Sigils", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=4891, + stats={ + [1]="+1 Charm Slot", + [2]="20% more Charm Charges gained" + } + }, + [4921]={ + connections={ + [1]={ + id=13524, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Presence Area", + orbit=7, + orbitIndex=11, + skill=4921, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [4925]={ + connections={ + [1]={ + id=19779, + orbit=7 + } + }, + group=926, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=4, + skill=4925, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [4931]={ + connections={ + [1]={ + id=21404, + orbit=0 + }, + [2]={ + id=27307, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Dependable Ward", + orbit=2, + orbitIndex=0, + skill=4931, + stats={ + [1]="+8% to Chaos Resistance", + [2]="12% faster start of Energy Shield Recharge" + } + }, + [4948]={ + connections={ + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=6, + skill=4948, + stats={ + [1]="Break 20% increased Armour" + } + }, + [4956]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + connections={ + }, + group=576, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=4956 + }, + [4959]={ + connections={ + [1]={ + id=12166, + orbit=0 + } + }, + group=1253, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Heavy Frost", + orbit=7, + orbitIndex=2, + skill=4959, + stats={ + [1]="20% increased Freeze Buildup", + [2]="Hits ignore non-negative Elemental Resistances of Frozen Enemies" + } + }, + [4970]={ + connections={ + [1]={ + id=23195, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.png", + name="Life and Mana Regeneration Rate", + orbit=2, + orbitIndex=7, + skill=4970, + stats={ + [1]="10% increased Life Regeneration rate", + [2]="10% increased Mana Regeneration Rate" + } + }, + [4985]={ + connections={ + [1]={ + id=58855, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Flip the Script", + orbit=7, + orbitIndex=8, + skill=4985, + stats={ + [1]="Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy" + } + }, + [5009]={ + connections={ + [1]={ + id=12169, + orbit=0 + } + }, + group=1242, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Seeing Stars", + orbit=0, + orbitIndex=0, + skill=5009, + stats={ + [1]="10% chance to Daze on Hit", + [2]="25% increased Daze Duration" + } + }, + [5048]={ + connections={ + [1]={ + id=261, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=2, + orbitIndex=15, + skill=5048, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [5049]={ + connections={ + [1]={ + id=49231, + orbit=0 + }, + [2]={ + id=42177, + orbit=3 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Dexterity", + orbit=7, + orbitIndex=18, + skill=5049, + stats={ + [1]="2% increased Attack Speed", + [2]="+5 to Dexterity" + } + }, + [5066]={ + connections={ + [1]={ + id=6714, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Curse Effect on you", + orbit=2, + orbitIndex=8, + skill=5066, + stats={ + [1]="10% reduced effect of Curses on you" + } + }, + [5077]={ + connections={ + [1]={ + id=33400, + orbit=0 + } + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Area", + orbit=2, + orbitIndex=4, + skill=5077, + stats={ + [1]="15% increased Parry Hit Area of Effect" + } + }, + [5084]={ + connections={ + [1]={ + id=35324, + orbit=2 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=22, + skill=5084, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [5088]={ + connections={ + [1]={ + id=49537, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental", + orbit=3, + orbitIndex=18, + skill=5088, + stats={ + [1]="3% increased Attack and Cast Speed with Elemental Skills" + } + }, + [5098]={ + connections={ + [1]={ + id=16385, + orbit=-9 + }, + [2]={ + id=41651, + orbit=0 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Area", + orbit=2, + orbitIndex=10, + skill=5098, + stats={ + [1]="Banner Skills have 12% increased Area of Effect" + } + }, + [5108]={ + connections={ + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Ailment Chance", + orbit=2, + orbitIndex=21, + skill=5108, + stats={ + [1]="Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments" + } + }, + [5163]={ + connections={ + [1]={ + id=26726, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + name="Knockback and Stun Buildup", + orbit=2, + orbitIndex=15, + skill=5163, + stats={ + [1]="10% increased Stun Buildup", + [2]="10% increased Knockback Distance" + } + }, + [5186]={ + connections={ + [1]={ + id=6800, + orbit=3 + } + }, + group=1320, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=5186, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [5188]={ + connections={ + [1]={ + id=27671, + orbit=0 + }, + [2]={ + id=38668, + orbit=0 + }, + [3]={ + id=24165, + orbit=0 + } + }, + group=1146, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png", + name="Evasion and Energy Shield Delay", + orbit=7, + orbitIndex=3, + skill=5188, + stats={ + [1]="12% increased Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [5191]={ + connections={ + [1]={ + id=54198, + orbit=0 + } + }, + group=1202, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.png", + isNotable=true, + name="Bond of the Wolf", + orbit=0, + orbitIndex=0, + skill=5191, + stats={ + [1]="6% increased Attack Speed", + [2]="Companions have 50% chance to gain Onslaught on Kill" + } + }, + [5227]={ + connections={ + [1]={ + id=51708, + orbit=0 + } + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Escape Strategy", + orbit=3, + orbitIndex=20, + skill=5227, + stats={ + [1]="100% increased Evasion Rating if you have been Hit Recently", + [2]="30% reduced Evasion Rating if you haven't been Hit Recently" + } + }, + [5257]={ + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Echoing Frost", + orbit=7, + orbitIndex=20, + skill=5257, + stats={ + [1]="30% increased Elemental Damage if you've Chilled an Enemy Recently" + } + }, + [5284]={ + connections={ + [1]={ + id=32278, + orbit=0 + } + }, + group=512, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + isNotable=true, + name="Shredding Force", + orbit=0, + orbitIndex=0, + skill=5284, + stats={ + [1]="15% increased Critical Hit Chance for Spells", + [2]="15% increased Critical Spell Damage Bonus", + [3]="15% increased Magnitude of Damaging Ailments you inflict with Critical Hits" + } + }, + [5295]={ + connections={ + [1]={ + id=5961, + orbit=0 + } + }, + group=959, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=5295, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [5305]={ + connections={ + [1]={ + id=3431, + orbit=0 + }, + [2]={ + id=24287, + orbit=0 + } + }, + group=1359, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Skill Speed", + orbit=1, + orbitIndex=2, + skill=5305, + stats={ + [1]="3% increased Skill Speed" + } + }, + [5314]={ + connections={ + [1]={ + id=29009, + orbit=0 + } + }, + group=774, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=36, + skill=5314, + stats={ + [1]="+5 to any Attribute" + } + }, + [5324]={ + connections={ + [1]={ + id=54437, + orbit=0 + }, + [2]={ + id=2397, + orbit=0 + } + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage if Stunned Recently", + orbit=7, + orbitIndex=16, + skill=5324, + stats={ + [1]="20% increased Attack Damage if you have been Heavy Stunned Recently" + } + }, + [5332]={ + connections={ + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + isNotable=true, + name="Crystallised Immunities", + orbit=2, + orbitIndex=8, + skill=5332, + stats={ + [1]="Immune to Chill if a majority of your Socketed Support Gems are Blue", + [2]="Immune to Ignite if a majority of your Socketed Support Gems are Red", + [3]="Immune to Shock if a majority of your Socketed Support Gems are Green" + } + }, + [5335]={ + connections={ + [1]={ + id=52060, + orbit=0 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Shimmering Mirage", + orbit=7, + orbitIndex=7, + skill=5335, + stats={ + [1]="Gain additional Ailment Threshold equal to 30% of maximum Energy Shield", + [2]="10% reduced Duration of Ailments on You" + } + }, + [5348]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=1271, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=5348 + }, + [5386]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=22541, + orbit=0 + } + }, + group=6, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png", + name="Fire Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=5386, + stats={ + [1]="20% increased Fire Damage" + } + }, + [5390]={ + connections={ + [1]={ + id=16142, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=14, + skill=5390, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [5398]={ + connections={ + [1]={ + id=51820, + orbit=-6 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast Speed", + orbit=4, + orbitIndex=34, + skill=5398, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed" + } + }, + [5407]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=56910, + orbit=0 + } + }, + group=762, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=5407 + }, + [5410]={ + connections={ + [1]={ + id=33590, + orbit=0 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Channelled Heritage", + orbit=3, + orbitIndex=15, + skill=5410, + stats={ + [1]="30% increased Area of Effect of Ancestrally Boosted Attacks" + } + }, + [5501]={ + connections={ + [1]={ + id=48821, + orbit=0 + } + }, + group=778, + icon="Art/2DArt/SkillIcons/passives/Annihilation.png", + isNotable=true, + name="Critical Overload", + orbit=0, + orbitIndex=0, + skill=5501, + stats={ + [1]="15% increased Critical Hit Chance for Spells", + [2]="15% increased Critical Spell Damage Bonus" + } + }, + [5544]={ + connections={ + [1]={ + id=43711, + orbit=3 + } + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorn Critical Damage", + orbit=2, + orbitIndex=10, + skill=5544, + stats={ + [1]="30% increased Thorns Critical Damage Bonus" + } + }, + [5563]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=47312, + orbit=-7 + } + }, + group=1557, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Flask Recovery", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=5563, + stats={ + [1]="15% increased Life and Mana Recovery from Flasks" + } + }, + [5564]={ + connections={ + [1]={ + id=48833, + orbit=0 + }, + [2]={ + id=63585, + orbit=0 + } + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=5564, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [5571]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=47190, + orbit=8 + } + }, + group=11, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.png", + isNotable=true, + name="The Unseen Path", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=5571, + stats={ + [1]="Walk the Paths Not Taken" + } + }, + [5580]={ + connections={ + [1]={ + id=42710, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Watchtowers", + orbit=0, + orbitIndex=0, + skill=5580, + stats={ + [1]="Recoup 5% of damage taken by your Totems as Life", + [2]="Each Totem applies 2% increased Damage taken to Enemies in their Presence" + } + }, + [5594]={ + connections={ + [1]={ + id=50107, + orbit=0 + }, + [2]={ + id=8785, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Decrepifying Curse", + orbit=2, + orbitIndex=12, + skill=5594, + stats={ + [1]="20% increased duration of Ailments you inflict against Cursed Enemies" + } + }, + [5642]={ + connections={ + [1]={ + id=57405, + orbit=0 + } + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Behemoth", + orbit=2, + orbitIndex=8, + skill=5642, + stats={ + [1]="3% increased maximum Life", + [2]="8% increased Area of Effect for Attacks", + [3]="5% chance for Slam Skills you use yourself to cause an additional Aftershock" + } + }, + [5663]={ + connections={ + }, + group=283, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Endurance", + orbit=0, + orbitIndex=0, + skill=5663, + stats={ + [1]="+2 to Maximum Endurance Charges" + } + }, + [5681]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + connections={ + }, + group=451, + icon="Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + isOnlyImage=true, + name="Fortify Mastery", + orbit=0, + orbitIndex=0, + skill=5681 + }, + [5686]={ + connections={ + }, + group=202, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Chillproof", + orbit=2, + orbitIndex=14, + skill=5686, + stats={ + [1]="10% increased Armour", + [2]="30% reduced Effect of Chill on you", + [3]="30% increased Freeze Threshold", + [4]="+30% of Armour also applies to Cold Damage" + } + }, + [5692]={ + connections={ + [1]={ + id=41154, + orbit=0 + }, + [2]={ + id=35708, + orbit=0 + } + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Chill Magnitude", + orbit=2, + orbitIndex=8, + skill=5692, + stats={ + [1]="12% increased Magnitude of Chill you inflict" + } + }, + [5695]={ + connections={ + [1]={ + id=32309, + orbit=7 + }, + [2]={ + id=50104, + orbit=5 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration", + orbit=7, + orbitIndex=20, + skill=5695, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [5702]={ + connections={ + [1]={ + id=13411, + orbit=-5 + } + }, + group=1074, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=5702, + stats={ + [1]="+5 to any Attribute" + } + }, + [5703]={ + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Echoing Thunder", + orbit=7, + orbitIndex=4, + skill=5703, + stats={ + [1]="30% increased Elemental Damage if you've Shocked an Enemy Recently" + } + }, + [5704]={ + connections={ + [1]={ + id=62166, + orbit=0 + } + }, + group=1180, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Speed", + orbit=2, + orbitIndex=8, + skill=5704, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [5710]={ + connections={ + [1]={ + id=6839, + orbit=-3 + }, + [2]={ + id=38323, + orbit=0 + }, + [3]={ + id=14923, + orbit=0 + }, + [4]={ + id=6529, + orbit=-4 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/strongarm.png", + isNotable=true, + name="Brutal", + orbit=4, + orbitIndex=51, + skill=5710, + stats={ + [1]="10% increased Stun Buildup", + [2]="16% increased Melee Damage", + [3]="+10 to Strength" + } + }, + [5726]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=5726 + }, + [5728]={ + connections={ + [1]={ + id=17349, + orbit=-3 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Ancient Aegis", + orbit=7, + orbitIndex=4, + skill=5728, + stats={ + [1]="60% increased Armour from Equipped Body Armour", + [2]="60% increased Energy Shield from Equipped Body Armour" + } + }, + [5733]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=56489, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Spirit", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=25, + skill=5733, + stats={ + [1]="+10 to Spirit" + } + }, + [5740]={ + connections={ + [1]={ + id=40687, + orbit=0 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Presence Area", + orbit=2, + orbitIndex=6, + skill=5740, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [5766]={ + connections={ + [1]={ + id=51416, + orbit=-4 + }, + [2]={ + id=16705, + orbit=4 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=6, + orbitIndex=60, + skill=5766, + stats={ + [1]="12% increased Spell Damage while wielding a Melee Weapon" + } + }, + [5777]={ + connections={ + [1]={ + id=58651, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + isSwitchable=true, + name="Deadly Swarm", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + id=54594, + name="Natural Essence", + stats={ + [1]="16% increased Armour", + [2]="16% increased maximum Energy Shield", + [3]="20% increased Elemental Ailment Threshold" + } + } + }, + orbit=4, + orbitIndex=4, + skill=5777, + stats={ + [1]="Minions deal 15% increased Damage", + [2]="Minions have 20% increased Critical Hit Chance" + } + }, + [5797]={ + connections={ + [1]={ + id=59538, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Freeze Buildup and Cold Damage", + orbit=2, + orbitIndex=2, + skill=5797, + stats={ + [1]="8% increased Cold Damage", + [2]="8% increased Freeze Buildup" + } + }, + [5800]={ + connections={ + [1]={ + id=43149, + orbit=0 + }, + [2]={ + id=22975, + orbit=0 + } + }, + group=299, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=7, + orbitIndex=0, + skill=5800, + stats={ + [1]="5% increased Attack Damage", + [2]="6% increased Accuracy Rating" + } + }, + [5802]={ + connections={ + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.png", + isNotable=true, + name="Stand and Deliver", + orbit=0, + orbitIndex=0, + skill=5802, + stats={ + [1]="Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m", + [2]="Projectiles deal 25% increased Damage with Hits against Enemies within 2m" + } + }, + [5817]={ + ascendancyName="Deadeye", + connections={ + }, + group=1508, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.png", + isNotable=true, + name="Mirage Deadeye", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=5817, + stats={ + [1]="Grants Skill: Mirage Deadeye" + } + }, + [5826]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=1069, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=2, + orbitIndex=22, + skill=5826 + }, + [5852]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=20895, + orbit=0 + }, + [2]={ + id=47236, + orbit=0 + }, + [3]={ + id=5386, + orbit=0 + }, + [4]={ + id=14960, + orbit=0 + }, + [5]={ + id=9988, + orbit=0 + } + }, + group=41, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Smith of Kitava", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=96, + skill=5852 + }, + [5862]={ + connections={ + [1]={ + id=22697, + orbit=-2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.png", + name="Lightning Resistance", + orbit=7, + orbitIndex=14, + skill=5862, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [5920]={ + connections={ + [1]={ + id=52574, + orbit=-3 + }, + [2]={ + id=51921, + orbit=5 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=2, + orbitIndex=16, + skill=5920, + stats={ + [1]="6% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [5936]={ + connections={ + [1]={ + id=65248, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=36, + skill=5936, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [5961]={ + connections={ + [1]={ + id=54675, + orbit=0 + }, + [2]={ + id=11315, + orbit=0 + } + }, + group=946, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=5961, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [5988]={ + connections={ + [1]={ + id=38459, + orbit=7 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Damage vs Blinded", + orbit=2, + orbitIndex=8, + skill=5988, + stats={ + [1]="15% increased Damage with Hits against Blinded Enemies" + } + }, + [6006]={ + connections={ + [1]={ + id=38105, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=62, + skill=6006, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [6008]={ + connections={ + [1]={ + id=58096, + orbit=2 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=2, + orbitIndex=19, + skill=6008, + stats={ + [1]="10% increased Spell Damage" + } + }, + [6010]={ + connections={ + [1]={ + id=13367, + orbit=0 + }, + [2]={ + id=38969, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=8, + skill=6010, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [6015]={ + connections={ + [1]={ + id=35426, + orbit=6 + } + }, + group=596, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=15, + skill=6015, + stats={ + [1]="+5 to any Attribute" + } + }, + [6030]={ + connections={ + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=3, + orbitIndex=5, + skill=6030, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [6077]={ + connections={ + [1]={ + id=35645, + orbit=-2 + } + }, + group=529, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Cooldown", + orbit=0, + orbitIndex=0, + skill=6077, + stats={ + [1]="Minions have 20% increased Cooldown Recovery Rate for Command Skills" + } + }, + [6078]={ + connections={ + [1]={ + id=61119, + orbit=4 + } + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=3, + orbitIndex=1, + skill=6078, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [6079]={ + connections={ + [1]={ + id=10242, + orbit=0 + } + }, + group=1214, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=2, + orbitIndex=16, + skill=6079, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [6088]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=54380, + orbit=0 + } + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="First Sting", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=10, + skill=6088, + stats={ + [1]="30% chance to Poison on Hit against Enemies that are not Poisoned", + [2]="80% increased Magnitude of Poison you inflict on targets that are not Poisoned" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [6100]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=20963, + orbit=4 + } + }, + group=166, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=11, + skill=6100, + stats={ + [1]="20% increased Critical Damage Bonus" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [6109]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=63254, + orbit=0 + } + }, + group=1554, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=6109, + stats={ + [1]="20% increased Evasion Rating" + } + }, + [6127]={ + ascendancyName="Warbringer", + connections={ + }, + group=33, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.png", + isNotable=true, + name="Jade Heritage", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=6127, + stats={ + [1]="Gain a stack of Jade every second", + [2]="Grants Skill: Encase in Jade" + } + }, + [6133]={ + connections={ + [1]={ + id=33402, + orbit=0 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Core of the Guardian", + orbit=4, + orbitIndex=48, + skill=6133, + stats={ + [1]="20% reduced maximum Energy Shield", + [2]="30% increased Block chance" + } + }, + [6153]={ + connections={ + [1]={ + id=44952, + orbit=0 + }, + [2]={ + id=10362, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=7, + orbitIndex=14, + skill=6153, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [6161]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + connections={ + }, + group=1133, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.png", + isOnlyImage=true, + name="Bleeding Mastery", + orbit=0, + orbitIndex=0, + skill=6161 + }, + [6178]={ + connections={ + [1]={ + id=33415, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Power Shots", + orbit=4, + orbitIndex=35, + skill=6178, + stats={ + [1]="15% reduced Attack Speed with Crossbows", + [2]="80% increased Critical Damage Bonus with Crossbows" + } + }, + [6222]={ + connections={ + [1]={ + id=57608, + orbit=0 + }, + [2]={ + id=65189, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Damage", + orbit=7, + orbitIndex=11, + skill=6222, + stats={ + [1]="10% increased Damage while Shapeshifted" + } + }, + [6229]={ + connections={ + [1]={ + id=26490, + orbit=7 + } + }, + group=498, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + isNotable=true, + name="Push the Advantage", + orbit=7, + orbitIndex=5, + skill=6229, + stats={ + [1]="40% increased Critical Damage Bonus with One Handed Melee Weapons" + } + }, + [6266]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Damage", + orbit=7, + orbitIndex=9, + skill=6266, + stats={ + [1]="10% increased Damage against Demons" + } + }, + [6269]={ + connections={ + [1]={ + id=45990, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Attack Speed", + orbit=2, + orbitIndex=1, + skill=6269, + stats={ + [1]="3% increased Attack Speed with Axes" + } + }, + [6274]={ + connections={ + [1]={ + id=56567, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=17, + skill=6274, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [6287]={ + connections={ + [1]={ + id=364, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=2, + orbitIndex=10, + skill=6287, + stats={ + [1]="+8 to Intelligence" + } + }, + [6294]={ + connections={ + [1]={ + id=52429, + orbit=4 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=4, + orbitIndex=54, + skill=6294, + stats={ + [1]="3% increased Cast Speed" + } + }, + [6304]={ + connections={ + [1]={ + id=12125, + orbit=0 + } + }, + group=381, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Stand Ground", + orbit=2, + orbitIndex=4, + skill=6304, + stats={ + [1]="Regenerate 1% of maximum Life per second while affected by any Damaging Ailment", + [2]="Regenerate 1% of maximum Life per second while stationary" + } + }, + [6330]={ + connections={ + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Damage", + orbit=7, + orbitIndex=5, + skill=6330, + stats={ + [1]="8% increased Attack Damage", + [2]="8% increased Accuracy Rating" + } + }, + [6338]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + [1]={ + id=2254, + orbit=0 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=6338 + }, + [6355]={ + connections={ + [1]={ + id=14110, + orbit=-4 + }, + [2]={ + id=38124, + orbit=4 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=7, + orbitIndex=2, + skill=6355, + stats={ + [1]="15% increased Totem Damage" + } + }, + [6356]={ + connections={ + [1]={ + id=27900, + orbit=0 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + orbit=7, + orbitIndex=21, + skill=6356, + stats={ + [1]="4% increased Skill Effect Duration", + [2]="8% increased Physical Damage" + } + }, + [6416]={ + connections={ + [1]={ + id=51821, + orbit=0 + } + }, + group=273, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=20, + skill=6416, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [6490]={ + connections={ + [1]={ + id=14082, + orbit=0 + } + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=2, + orbitIndex=12, + skill=6490, + stats={ + [1]="10% increased Physical Damage" + } + }, + [6502]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + connections={ + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + isOnlyImage=true, + name="Flail Mastery", + orbit=0, + orbitIndex=0, + skill=6502 + }, + [6505]={ + connections={ + [1]={ + id=55060, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Pierce Chance", + orbit=3, + orbitIndex=4, + skill=6505, + stats={ + [1]="15% chance to Pierce an Enemy" + } + }, + [6514]={ + connections={ + [1]={ + id=47173, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Cacophony", + orbit=4, + orbitIndex=5, + skill=6514, + stats={ + [1]="40% increased Damage with Warcries", + [2]="Warcry Skills have 25% increased Area of Effect" + } + }, + [6529]={ + connections={ + [1]={ + id=32416, + orbit=-3 + } + }, + group=595, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=0, + skill=6529, + stats={ + [1]="15% increased Armour" + } + }, + [6530]={ + connections={ + [1]={ + id=1448, + orbit=4 + }, + [2]={ + id=11825, + orbit=5 + } + }, + group=1308, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Evasion and Companion Movement Speed", + orbit=3, + orbitIndex=14, + skill=6530, + stats={ + [1]="10% increased Evasion Rating", + [2]="Companions have 8% increased Movement Speed" + } + }, + [6544]={ + connections={ + [1]={ + id=56061, + orbit=6 + }, + [2]={ + id=42604, + orbit=0 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Burning Strikes", + orbit=4, + orbitIndex=53, + skill=6544, + stats={ + [1]="Gain 12% of Physical Damage as Extra Fire Damage" + } + }, + [6570]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + connections={ + }, + group=1256, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.png", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=6570 + }, + [6588]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=6588 + }, + [6596]={ + connections={ + [1]={ + id=41171, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Speed", + orbit=4, + orbitIndex=30, + skill=6596, + stats={ + [1]="4% increased Attack Speed while a Rare or Unique Enemy is in your Presence" + } + }, + [6623]={ + connections={ + [1]={ + id=12821, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Aura Effect", + orbit=1, + orbitIndex=10, + skill=6623, + stats={ + [1]="Banner Skills have 12% increased Aura Magnitudes" + } + }, + [6626]={ + connections={ + [1]={ + id=46475, + orbit=4 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=21, + skill=6626, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [6655]={ + connections={ + }, + group=687, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Aggravation", + orbit=2, + orbitIndex=14, + skill=6655, + stats={ + [1]="10% chance to Aggravate Bleeding on targets you Hit with Attacks" + } + }, + [6660]={ + connections={ + [1]={ + id=39050, + orbit=-7 + } + }, + group=1223, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Damage against Ailments", + orbit=2, + orbitIndex=12, + skill=6660, + stats={ + [1]="12% increased Damage with Hits against Enemies affected by Elemental Ailments" + } + }, + [6686]={ + connections={ + [1]={ + id=51184, + orbit=-4 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isSwitchable=true, + name="Mana Regeneration", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + id=29472, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=2, + orbitIndex=1, + skill=6686, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [6689]={ + connections={ + [1]={ + id=51735, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Damage", + orbit=4, + orbitIndex=39, + skill=6689, + stats={ + [1]="Attack Skills deal 10% increased Damage while holding a Shield" + } + }, + [6714]={ + connections={ + [1]={ + id=41646, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Curse Effect on you and Life Regeneration Rate", + orbit=2, + orbitIndex=12, + skill=6714, + stats={ + [1]="5% increased Life Regeneration rate", + [2]="5% reduced effect of Curses on you" + } + }, + [6715]={ + connections={ + [1]={ + id=116, + orbit=3 + }, + [2]={ + id=41372, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield and Mana Regeneration", + orbit=7, + orbitIndex=17, + skill=6715, + stats={ + [1]="10% increased maximum Energy Shield", + [2]="6% increased Mana Regeneration Rate" + } + }, + [6735]={ + connections={ + [1]={ + id=41935, + orbit=4 + }, + [2]={ + id=43460, + orbit=-5 + } + }, + group=169, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Armour", + orbit=0, + orbitIndex=0, + skill=6735, + stats={ + [1]="10% increased Armour while Shapeshifted", + [2]="+5% of Armour also applies to Elemental Damage while Shapeshifted" + } + }, + [6744]={ + connections={ + [1]={ + id=49357, + orbit=0 + }, + [2]={ + id=483, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=6, + skill=6744, + stats={ + [1]="+5 to any Attribute" + } + }, + [6748]={ + connections={ + [1]={ + id=48618, + orbit=7 + }, + [2]={ + id=62122, + orbit=3 + } + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + name="Damage from Mana", + orbit=7, + orbitIndex=8, + skill=6748, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [6752]={ + connections={ + [1]={ + id=7378, + orbit=0 + }, + [2]={ + id=29148, + orbit=4 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=23, + skill=6752, + stats={ + [1]="12% increased Fire Damage" + } + }, + [6772]={ + connections={ + [1]={ + id=60505, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=6, + skill=6772, + stats={ + [1]="+5 to any Attribute" + } + }, + [6789]={ + connections={ + [1]={ + id=4313, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + id=22193, + name="Attack Damage", + stats={ + [1]="8% increased Attack Damage" + } + } + }, + orbit=2, + orbitIndex=1, + skill=6789, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [6792]={ + connections={ + [1]={ + id=33245, + orbit=0 + }, + [2]={ + id=2408, + orbit=0 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=6, + skill=6792, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [6800]={ + connections={ + [1]={ + id=32438, + orbit=4 + } + }, + group=1306, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=6800, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [6839]={ + connections={ + [1]={ + id=39581, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=7, + orbitIndex=14, + skill=6839, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [6842]={ + connections={ + [1]={ + id=18472, + orbit=3 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + name="Stun and Freeze Buildup", + orbit=3, + orbitIndex=9, + skill=6842, + stats={ + [1]="15% increased Stun Buildup", + [2]="15% increased Freeze Buildup" + } + }, + [6872]={ + connections={ + [1]={ + id=33939, + orbit=0 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/coldresist.png", + name="Armour Applies to Cold Damage Hits", + orbit=4, + orbitIndex=4, + skill=6872, + stats={ + [1]="+15% of Armour also applies to Cold Damage" + } + }, + [6874]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34940, + orbit=-2 + } + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Life Recoup", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=2, + skill=6874, + stats={ + [1]="10% of Damage taken Recouped as Life while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [6891]={ + connections={ + [1]={ + id=56265, + orbit=0 + } + }, + group=1451, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=22, + skill=6891, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [6898]={ + connections={ + [1]={ + id=17584, + orbit=-8 + }, + [2]={ + id=61067, + orbit=8 + }, + [3]={ + id=48305, + orbit=0 + }, + [4]={ + id=30704, + orbit=0 + }, + [5]={ + id=17517, + orbit=-8 + }, + [6]={ + id=28718, + orbit=0 + } + }, + group=600, + icon="Art/2DArt/SkillIcons/passives/PressurePoints.png", + isNotable=true, + isSwitchable=true, + name="Relentless Vindicator", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/stormborn.png", + id=7197, + name="Guardian of the Wilds", + stats={ + [1]="10% increased Damage", + [2]="Gain 5% of Damage as Extra Damage of a random Element", + [3]="+5 to Strength and Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=6898, + stats={ + [1]="10% increased Damage", + [2]="10% increased Critical Hit Chance", + [3]="+5 to Strength and Intelligence" + } + }, + [6900]={ + connections={ + [1]={ + id=26479, + orbit=-6 + }, + [2]={ + id=45751, + orbit=0 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Maximum Block", + orbit=5, + orbitIndex=0, + skill=6900, + stats={ + [1]="+1% to maximum Block chance" + } + }, + [6912]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + connections={ + }, + group=1135, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=6912 + }, + [6923]={ + connections={ + [1]={ + id=1087, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=3, + orbitIndex=10, + skill=6923, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [6935]={ + ascendancyName="Witchhunter", + connections={ + }, + group=302, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.png", + isNotable=true, + name="Ceremonial Ablution", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=6935, + stats={ + [1]="Sorcery Ward's Barrier can also take Physical and Chaos Damage from Hits" + } + }, + [6950]={ + connections={ + [1]={ + id=49804, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Exposure Effect", + orbit=2, + orbitIndex=2, + skill=6950, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [6951]={ + connections={ + [1]={ + id=23608, + orbit=-2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=4, + orbitIndex=54, + skill=6951, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [6952]={ + connections={ + }, + group=100, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=18, + skill=6952, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [6988]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + isOnlyImage=true, + name="Herald Mastery", + orbit=2, + orbitIndex=10, + skill=6988 + }, + [6999]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=15672, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Elemental Resistance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=7, + skill=6999, + stats={ + [1]="Totems gain +2% to all Maximum Elemental Resistances" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [7023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=1422, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=7023 + }, + [7049]={ + connections={ + [1]={ + id=22556, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Armour while Surrounded", + orbit=3, + orbitIndex=19, + skill=7049, + stats={ + [1]="30% increased Armour while Surrounded" + } + }, + [7054]={ + connections={ + [1]={ + id=21142, + orbit=0 + }, + [2]={ + id=47009, + orbit=0 + }, + [3]={ + id=17088, + orbit=0 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=7, + orbitIndex=8, + skill=7054, + stats={ + [1]="6% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [7060]={ + connections={ + [1]={ + id=24339, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=20, + skill=7060, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [7062]={ + connections={ + [1]={ + id=16680, + orbit=0 + }, + [2]={ + id=61432, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Reusable Ammunition", + orbit=4, + orbitIndex=19, + skill=7062, + stats={ + [1]="Bolts fired by Crossbow Attacks have 30% chance to not\nexpend Ammunition if you've Reloaded Recently" + } + }, + [7066]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=23932, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Attack Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=6, + skill=7066, + stats={ + [1]="5% increased Attack Speed with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [7068]={ + ascendancyName="Ritualist", + connections={ + }, + group=1551, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.png", + isNotable=true, + name="Mystic Attunement", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=7068, + stats={ + [1]="25% increased bonuses gained from Equipped Rings and Amulets" + } + }, + [7104]={ + connections={ + [1]={ + id=54733, + orbit=-3 + }, + [2]={ + id=14258, + orbit=-3 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=7, + orbitIndex=19, + skill=7104, + stats={ + [1]="15% increased Effect of Puppet Master" + } + }, + [7120]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=43131, + orbit=-8 + }, + [2]={ + id=20830, + orbit=0 + }, + [3]={ + id=61897, + orbit=8 + }, + [4]={ + id=51737, + orbit=0 + }, + [5]={ + id=25172, + orbit=0 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Witchhunter", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=72, + skill=7120 + }, + [7128]={ + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Dangerous Blossom", + orbit=6, + orbitIndex=63, + skill=7128, + stats={ + [1]="Gain 10% of Damage as Extra Physical Damage" + } + }, + [7163]={ + connections={ + [1]={ + id=45100, + orbit=3 + }, + [2]={ + id=23013, + orbit=0 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Stimulants", + orbit=5, + orbitIndex=45, + skill=7163, + stats={ + [1]="16% increased Attack Speed during any Flask Effect" + } + }, + [7183]={ + connections={ + [1]={ + id=48589, + orbit=-6 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Recovery", + orbit=2, + orbitIndex=5, + skill=7183, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [7201]={ + connections={ + [1]={ + id=516, + orbit=3 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=21, + skill=7201, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies further than 6m" + } + }, + [7204]={ + connections={ + [1]={ + id=53527, + orbit=0 + }, + [2]={ + id=4985, + orbit=0 + }, + [3]={ + id=64525, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=0, + orbitIndex=0, + skill=7204, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [7218]={ + connections={ + [1]={ + id=60203, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=3, + orbitIndex=22, + skill=7218, + stats={ + [1]="+8 to Strength" + } + }, + [7246]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=39204, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Mana Regeneration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=54, + skill=7246, + stats={ + [1]="12% increased Mana Regeneration Rate" + } + }, + [7251]={ + connections={ + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=16, + skill=7251, + stats={ + [1]="10% increased Attack Damage" + } + }, + [7258]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11861, + orbit=0 + } + }, + group=694, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=5, + skill=7258, + stats={ + [1]="10% increased Spell Damage", + [2]="+10 to Strength" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [7275]={ + connections={ + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Electrocuting Exposure", + orbit=4, + orbitIndex=64, + skill=7275, + stats={ + [1]="Gain 25% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies" + } + }, + [7294]={ + connections={ + [1]={ + id=65498, + orbit=0 + }, + [2]={ + id=39307, + orbit=0 + }, + [3]={ + id=41017, + orbit=0 + } + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break and Physical Damage", + orbit=2, + orbitIndex=16, + skill=7294, + stats={ + [1]="Break 10% increased Armour", + [2]="6% increased Physical Damage" + } + }, + [7302]={ + connections={ + [1]={ + id=52615, + orbit=0 + }, + [2]={ + id=30077, + orbit=0 + } + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Echoing Pulse", + orbit=7, + orbitIndex=0, + skill=7302, + stats={ + [1]="Echoed Spells have 25% increased Area of Effect" + } + }, + [7333]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=7333 + }, + [7338]={ + connections={ + [1]={ + id=52060, + orbit=0 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Abasement", + orbit=7, + orbitIndex=23, + skill=7338, + stats={ + [1]="20% increased Stun Recovery", + [2]="Gain additional Stun Threshold equal to 30% of maximum Energy Shield" + } + }, + [7341]={ + connections={ + [1]={ + id=33244, + orbit=0 + } + }, + group=347, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Ignore Pain", + orbit=0, + orbitIndex=0, + skill=7341, + stats={ + [1]="Gain 3 Rage when Hit by an Enemy", + [2]="Every Rage also grants 2% increased Stun Threshold" + } + }, + [7344]={ + connections={ + [1]={ + id=58182, + orbit=0 + }, + [2]={ + id=26931, + orbit=0 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + isNotable=true, + name="Life from Death", + orbit=3, + orbitIndex=4, + skill=7344, + stats={ + [1]="Recover 3% of maximum Life on Kill" + } + }, + [7353]={ + connections={ + [1]={ + id=9046, + orbit=3 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=5, + skill=7353, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [7378]={ + connections={ + [1]={ + id=65016, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=20, + skill=7378, + stats={ + [1]="12% increased Fire Damage" + } + }, + [7390]={ + connections={ + [1]={ + id=17150, + orbit=7 + } + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=4, + skill=7390, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [7392]={ + connections={ + [1]={ + id=10571, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=3, + orbitIndex=19, + skill=7392, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [7395]={ + connections={ + [1]={ + id=30007, + orbit=0 + }, + [2]={ + id=46051, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.png", + isNotable=true, + name="Retaliation", + orbit=3, + orbitIndex=10, + skill=7395, + stats={ + [1]="75% increased Thorns damage if you've Blocked Recently" + } + }, + [7405]={ + connections={ + [1]={ + id=4850, + orbit=0 + } + }, + group=996, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Effect and Mana Regeneration", + orbit=0, + orbitIndex=0, + skill=7405, + stats={ + [1]="6% increased Mana Regeneration Rate", + [2]="10% increased Magnitude of Shock you inflict" + } + }, + [7412]={ + connections={ + [1]={ + id=45709, + orbit=0 + } + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charges", + orbit=7, + orbitIndex=15, + skill=7412, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [7424]={ + connections={ + [1]={ + id=36994, + orbit=0 + }, + [2]={ + id=1823, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=0, + skill=7424, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [7449]={ + connections={ + [1]={ + id=53696, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Splinters", + orbit=7, + orbitIndex=18, + skill=7449, + stats={ + [1]="30% increased Stun Buildup", + [2]="Hits Break 50% increased Armour on targets with Ailments" + } + }, + [7465]={ + connections={ + [1]={ + id=17664, + orbit=0 + } + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=15, + skill=7465, + stats={ + [1]="12% increased Critical Hit Chance against Enemies that have entered your Presence Recently" + } + }, + [7473]={ + connections={ + [1]={ + id=64471, + orbit=-4 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=7, + orbitIndex=23, + skill=7473, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [7488]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + connections={ + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=7488 + }, + [7526]={ + connections={ + [1]={ + id=17447, + orbit=0 + }, + [2]={ + id=22972, + orbit=0 + }, + [3]={ + id=43044, + orbit=0 + }, + [4]={ + id=24210, + orbit=0 + } + }, + group=1196, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=7526, + stats={ + [1]="+5 to any Attribute" + } + }, + [7542]={ + connections={ + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Encompassing Domain", + orbit=2, + orbitIndex=4, + skill=7542, + stats={ + [1]="10% increased Area Damage", + [2]="12% increased Area of Effect if you have Stunned an Enemy Recently" + } + }, + [7553]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=43385, + orbit=-7 + }, + [2]={ + id=15842, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Trusted Partner", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=48, + skill=7553, + stats={ + [1]="Companions have 20% increased maximum Life", + [2]="5% of Damage from Hits is taken from your Damageable Companion's Life before you" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [7554]={ + connections={ + [1]={ + id=23039, + orbit=-7 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Energy Shield Delay and Armour Applies to Elemental Damage", + orbit=3, + orbitIndex=13, + skill=7554, + stats={ + [1]="+3% of Armour also applies to Elemental Damage", + [2]="5% faster start of Energy Shield Recharge" + } + }, + [7576]={ + connections={ + [1]={ + id=33866, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=0, + orbitIndex=0, + skill=7576, + stats={ + [1]="8% increased Attack Damage" + } + }, + [7604]={ + connections={ + [1]={ + id=35985, + orbit=0 + }, + [2]={ + id=19074, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Rapid Strike", + orbit=3, + orbitIndex=8, + skill=7604, + stats={ + [1]="+30 to Accuracy Rating", + [2]="8% increased Melee Attack Speed" + } + }, + [7621]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=55611, + orbit=0 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.png", + isNotable=true, + name="I am the Thunder...", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=15, + skill=7621, + stats={ + [1]="Gain 10% of Damage as Extra Lightning Damage", + [2]="25% chance on Shocking Enemies to created Shocked Ground" + } + }, + [7628]={ + connections={ + [1]={ + id=41646, + orbit=0 + }, + [2]={ + id=55231, + orbit=0 + } + }, + group=680, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=7628, + stats={ + [1]="+5 to any Attribute" + } + }, + [7642]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=7, + orbitIndex=8, + skill=7642 + }, + [7651]={ + connections={ + [1]={ + id=21788, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Pierce the Heart", + orbit=6, + orbitIndex=21, + skill=7651, + stats={ + [1]="Arrows Pierce an additional Target" + } + }, + [7668]={ + connections={ + [1]={ + id=62015, + orbit=0 + } + }, + group=367, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Internal Bleeding", + orbit=2, + orbitIndex=3, + skill=7668, + stats={ + [1]="20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks", + [2]="Empowered Attacks deal 30% increased Damage" + } + }, + [7716]={ + connections={ + }, + group=328, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=23, + skill=7716, + stats={ + [1]="10% increased Armour", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [7720]={ + connections={ + [1]={ + id=32932, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Ignite", + orbit=4, + orbitIndex=61, + skill=7720, + stats={ + [1]="Gain 1 Rage when your Hit Ignites a target" + } + }, + [7721]={ + connections={ + [1]={ + id=54232, + orbit=0 + }, + [2]={ + id=61534, + orbit=3 + }, + [3]={ + id=18629, + orbit=-6 + }, + [4]={ + id=64683, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/Warrior.png", + isNotable=true, + name="Relentless", + orbit=4, + orbitIndex=45, + skill=7721, + stats={ + [1]="15% increased Armour", + [2]="Regenerate 0.5% of maximum Life per second", + [3]="+10 to Strength" + } + }, + [7741]={ + connections={ + [1]={ + id=42500, + orbit=0 + } + }, + group=806, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=5, + skill=7741, + stats={ + [1]="+5 to any Attribute" + } + }, + [7777]={ + connections={ + [1]={ + id=26739, + orbit=7 + }, + [2]={ + id=42205, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Breaking Point", + orbit=4, + orbitIndex=18, + skill=7777, + stats={ + [1]="10% increased Duration of Elemental Ailments on Enemies", + [2]="30% increased Magnitude of Non-Damaging Ailments you inflict" + } + }, + [7782]={ + connections={ + [1]={ + id=6161, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Rupturing Pins", + orbit=3, + orbitIndex=0, + skill=7782, + stats={ + [1]="40% increased Magnitude of Bleeding you inflict against Pinned Enemies" + } + }, + [7788]={ + connections={ + [1]={ + id=57805, + orbit=5 + } + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + name="Knockback", + orbit=7, + orbitIndex=4, + skill=7788, + stats={ + [1]="8% increased Knockback Distance" + } + }, + [7793]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=18348, + orbit=6 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=130, + skill=7793, + stats={ + [1]="3% increased maximum Life" + } + }, + [7809]={ + connections={ + }, + group=1367, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Wild Storm", + orbit=0, + orbitIndex=0, + skill=7809, + stats={ + [1]="Gain 4% of Damage as Extra Cold Damage", + [2]="Gain 4% of Damage as Extra Lightning Damage", + [3]="+10 to Dexterity" + } + }, + [7847]={ + connections={ + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.png", + isNotable=true, + name="The Fabled Stag", + orbit=0, + orbitIndex=0, + skill=7847, + stats={ + [1]="40% increased Endurance, Frenzy and Power Charge Duration", + [2]="+10 to Dexterity", + [3]="Skills have 10% chance to not remove Charges but still count as consuming them" + } + }, + [7878]={ + connections={ + [1]={ + id=53901, + orbit=7 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=2, + orbitIndex=16, + skill=7878, + stats={ + [1]="5% increased Block chance" + } + }, + [7888]={ + connections={ + [1]={ + id=17101, + orbit=0 + }, + [2]={ + id=28963, + orbit=2 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + name="Combo Gain", + orbit=3, + orbitIndex=21, + skill=7888, + stats={ + [1]="10% Chance to build an additional Combo on Hit" + } + }, + [7922]={ + connections={ + [1]={ + id=45962, + orbit=-6 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Flask Duration", + orbit=2, + orbitIndex=17, + skill=7922, + stats={ + [1]="10% increased Flask Effect Duration" + } + }, + [7947]={ + connections={ + [1]={ + id=26061, + orbit=2 + } + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Energy Shield as Freeze Threshold", + orbit=2, + orbitIndex=16, + skill=7947, + stats={ + [1]="Gain 15% of maximum Energy Shield as additional Freeze Threshold" + } + }, + [7960]={ + connections={ + }, + group=374, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=2, + skill=7960 + }, + [7971]={ + connections={ + [1]={ + id=1468, + orbit=-7 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=4, + orbitIndex=10, + skill=7971, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [7972]={ + connections={ + [1]={ + id=25229, + orbit=0 + }, + [2]={ + id=5663, + orbit=0 + } + }, + group=283, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Endurance Charge Duration", + orbit=2, + orbitIndex=4, + skill=7972, + stats={ + [1]="20% increased Endurance Charge Duration" + } + }, + [7979]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=19233, + orbit=0 + } + }, + group=1545, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.png", + isNotable=true, + name="Elemental Surge", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=7979, + stats={ + [1]="When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges", + [2]="Grants Skill: Elemental Surge" + } + }, + [7998]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=39640, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Shock Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=70, + skill=7998, + stats={ + [1]="20% increased chance to Shock" + } + }, + [8045]={ + connections={ + [1]={ + id=64927, + orbit=-6 + }, + [2]={ + id=52464, + orbit=5 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=3, + orbitIndex=7, + skill=8045, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [8092]={ + connections={ + [1]={ + id=44605, + orbit=6 + }, + [2]={ + id=59028, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=11, + skill=8092, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [8107]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=18081, + orbit=0 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=10, + skill=8107, + stats={ + [1]="20% increased Glory generation" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8115]={ + connections={ + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=3, + orbitIndex=8, + skill=8115, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [8143]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=16100, + orbit=4 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.png", + isNotable=true, + name="Lead me through Grace...", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=5, + skill=8143, + stats={ + [1]="+1 to Spirit for every 8 Item Energy Shield on Equipped Body Armour", + [2]="+1 to Spirit for every 20 Evasion Rating on Equipped Body Armour", + [3]="Cannot gain Spirit from Equipment" + } + }, + [8145]={ + connections={ + [1]={ + id=23331, + orbit=-6 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=1, + orbitIndex=9, + skill=8145, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [8154]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + [1]={ + id=3921, + orbit=0 + }, + [2]={ + id=38398, + orbit=0 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + isOnlyImage=true, + name="Herald Mastery", + orbit=0, + orbitIndex=0, + skill=8154 + }, + [8157]={ + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=2, + orbitIndex=16, + skill=8157, + stats={ + [1]="8% increased Reservation Efficiency of Herald Skills" + } + }, + [8171]={ + connections={ + [1]={ + id=45162, + orbit=0 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Presence Area", + orbit=7, + orbitIndex=22, + skill=8171, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [8246]={ + connections={ + [1]={ + id=37548, + orbit=0 + }, + [2]={ + id=64462, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=11, + skill=8246, + stats={ + [1]="10% increased Attack Damage" + } + }, + [8248]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48079, + orbit=0 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=4, + skill=8248, + stats={ + [1]="10% increased Bleeding Duration", + [2]="20% chance for Attack Hits to apply Incision" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8249]={ + connections={ + [1]={ + id=63525, + orbit=0 + }, + [2]={ + id=16816, + orbit=0 + } + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Critical Chance", + orbit=7, + orbitIndex=8, + skill=8249, + stats={ + [1]="8% increased Critical Hit Chance for Attacks", + [2]="6% increased Accuracy Rating" + } + }, + [8260]={ + connections={ + [1]={ + id=21453, + orbit=0 + } + }, + group=209, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Duration", + orbit=7, + orbitIndex=0, + skill=8260, + stats={ + [1]="20% increased Armour Break Duration" + } + }, + [8272]={ + ascendancyName="Witchhunter", + connections={ + }, + group=219, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.png", + isNotable=true, + name="Weapon Master", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=8272, + stats={ + [1]="100 Passive Skill Points become Weapon Set Skill Points" + } + }, + [8273]={ + connections={ + [1]={ + id=25565, + orbit=0 + } + }, + group=1390, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Endless Circuit", + orbit=0, + orbitIndex=0, + skill=8273, + stats={ + [1]="25% chance on Consuming a Shock on an Enemy to reapply it" + } + }, + [8302]={ + connections={ + [1]={ + id=4467, + orbit=-3 + } + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + name="Damage vs Blinded", + orbit=2, + orbitIndex=0, + skill=8302, + stats={ + [1]="15% increased Damage with Hits against Blinded Enemies" + } + }, + [8305]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=9843, + orbit=-8 + }, + [2]={ + id=56783, + orbit=-8 + }, + [3]={ + id=13289, + orbit=-9 + }, + [4]={ + id=32705, + orbit=0 + }, + [5]={ + id=34207, + orbit=9 + }, + [6]={ + id=30265, + orbit=8 + }, + [7]={ + id=35880, + orbit=8 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Disciple of Varashta", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=0, + skill=8305 + }, + [8349]={ + connections={ + [1]={ + id=31644, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Intelligence", + orbit=2, + orbitIndex=19, + skill=8349, + stats={ + [1]="+8 to Intelligence" + } + }, + [8357]={ + connections={ + [1]={ + id=10742, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Attack and Cast Speed", + orbit=3, + orbitIndex=6, + skill=8357, + stats={ + [1]="Minions have 3% increased Attack and Cast Speed" + } + }, + [8382]={ + connections={ + [1]={ + id=61863, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=9, + skill=8382, + stats={ + [1]="4% faster start of Energy Shield Recharge", + [2]="8% increased Elemental Damage" + } + }, + [8397]={ + connections={ + [1]={ + id=41130, + orbit=0 + }, + [2]={ + id=1220, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Empowering Remains", + orbit=7, + orbitIndex=0, + skill=8397, + stats={ + [1]="40% increased Spell Damage if one of your Minions has died Recently" + } + }, + [8406]={ + connections={ + [1]={ + id=48305, + orbit=-4 + }, + [2]={ + id=5692, + orbit=0 + } + }, + group=596, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=21, + skill=8406, + stats={ + [1]="+5 to any Attribute" + } + }, + [8415]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=62388, + orbit=0 + }, + [2]={ + id=3165, + orbit=-5 + }, + [3]={ + id=30071, + orbit=0 + }, + [4]={ + id=59342, + orbit=0 + }, + [5]={ + id=47442, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.png", + isFreeAllocate=true, + isNotable=true, + name="Sanguimancy", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=0, + skill=8415, + stats={ + [1]="Skills gain a Base Life Cost equal to Base Mana Cost", + [2]="Grants Skill: Life Remnants" + } + }, + [8421]={ + connections={ + [1]={ + id=35404, + orbit=2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.png", + name="Cold Resistance", + orbit=2, + orbitIndex=22, + skill=8421, + stats={ + [1]="+5% to Cold Resistance" + } + }, + [8423]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=60708, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Attack Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=60, + skill=8423, + stats={ + [1]="5% increased Attack Speed with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8440]={ + connections={ + [1]={ + id=45013, + orbit=-7 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=1, + orbitIndex=4, + skill=8440, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [8456]={ + connections={ + [1]={ + id=38329, + orbit=0 + } + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Attack Cold Damage and Freeze Buildup", + orbit=7, + orbitIndex=4, + skill=8456, + stats={ + [1]="8% increased Freeze Buildup", + [2]="8% increased Attack Cold Damage" + } + }, + [8460]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=8460 + }, + [8483]={ + connections={ + [1]={ + id=6588, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Ruin", + orbit=7, + orbitIndex=7, + skill=8483, + stats={ + [1]="35% increased Spell Area Damage", + [2]="Spell Skills have 10% reduced Area of Effect" + } + }, + [8493]={ + connections={ + [1]={ + id=64471, + orbit=0 + }, + [2]={ + id=52860, + orbit=0 + } + }, + group=620, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=8493, + stats={ + [1]="+5 to any Attribute" + } + }, + [8509]={ + connections={ + [1]={ + id=59061, + orbit=9 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=10, + skill=8509, + stats={ + [1]="20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently" + } + }, + [8510]={ + connections={ + [1]={ + id=13030, + orbit=-3 + } + }, + group=1100, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Faster Ailments", + orbit=0, + orbitIndex=0, + skill=8510, + stats={ + [1]="Damaging Ailments deal damage 5% faster" + } + }, + [8522]={ + connections={ + [1]={ + id=26236, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=16, + skill=8522, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [8525]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=27, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.png", + isNotable=true, + name="Leather Bindings", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=8525, + stats={ + [1]="Body Armour grants regenerate 3% of maximum Life per second" + } + }, + [8531]={ + connections={ + [1]={ + id=51534, + orbit=0 + }, + [2]={ + id=62661, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Leaping Ambush", + orbit=3, + orbitIndex=11, + skill=8531, + stats={ + [1]="50% increased Critical Hit Chance against Enemies that are on Full Life" + } + }, + [8535]={ + connections={ + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Spiked Whip", + orbit=2, + orbitIndex=10, + skill=8535, + stats={ + [1]="25% increased Damage with Flails" + } + }, + [8540]={ + connections={ + [1]={ + id=45230, + orbit=0 + } + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Area", + orbit=2, + orbitIndex=10, + skill=8540, + stats={ + [1]="10% increased Area of Effect of Curses" + } + }, + [8554]={ + connections={ + [1]={ + id=47191, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Burning Nature", + orbit=4, + orbitIndex=54, + skill=8554, + stats={ + [1]="25% increased Fire Damage", + [2]="15% increased Ignite Duration on Enemies" + } + }, + [8556]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8556 + }, + [8560]={ + connections={ + [1]={ + id=31273, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=1, + orbitIndex=11, + skill=8560, + stats={ + [1]="10% increased Melee Damage" + } + }, + [8569]={ + connections={ + [1]={ + id=47177, + orbit=0 + }, + [2]={ + id=55507, + orbit=9 + }, + [3]={ + id=46034, + orbit=0 + }, + [4]={ + id=8540, + orbit=0 + } + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=6, + skill=8569, + stats={ + [1]="+5 to any Attribute" + } + }, + [8573]={ + connections={ + [1]={ + id=11526, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + orbit=5, + orbitIndex=26, + skill=8573, + stats={ + [1]="12% increased Damage with Bows" + } + }, + [8600]={ + connections={ + [1]={ + id=27439, + orbit=0 + }, + [2]={ + id=40596, + orbit=8 + }, + [3]={ + id=44406, + orbit=4 + }, + [4]={ + id=43778, + orbit=0 + }, + [5]={ + id=31650, + orbit=0 + } + }, + group=364, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=8600, + stats={ + [1]="+5 to any Attribute" + } + }, + [8606]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1036, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8606 + }, + [8607]={ + connections={ + [1]={ + id=46665, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Lavianga's Brew", + orbit=7, + orbitIndex=12, + skill=8607, + stats={ + [1]="30% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect" + } + }, + [8611]={ + ascendancyName="Lich", + connections={ + [1]={ + id=59, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Curse Area", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=28740, + name="Curse Area", + stats={ + [1]="15% increased Area of Effect of Curses" + } + } + }, + orbit=8, + orbitIndex=56, + skill=8611, + stats={ + [1]="15% increased Area of Effect of Curses" + } + }, + [8616]={ + connections={ + [1]={ + id=57710, + orbit=0 + }, + [2]={ + id=43576, + orbit=-4 + }, + [3]={ + id=36746, + orbit=4 + } + }, + group=776, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=8616, + stats={ + [1]="+5 to any Attribute" + } + }, + [8629]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=395, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8629 + }, + [8631]={ + connections={ + [1]={ + id=32660, + orbit=0 + }, + [2]={ + id=59256, + orbit=0 + }, + [3]={ + id=30979, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=3, + orbitIndex=2, + skill=8631, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [8644]={ + connections={ + [1]={ + id=62496, + orbit=0 + }, + [2]={ + id=27417, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Damage", + orbit=6, + orbitIndex=51, + skill=8644, + stats={ + [1]="10% increased Trap Damage" + } + }, + [8660]={ + connections={ + [1]={ + id=18846, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Reverberation", + orbit=3, + orbitIndex=14, + skill=8660, + stats={ + [1]="Spell Skills have 15% increased Area of Effect" + } + }, + [8693]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=35393, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour while Bleeding", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=7, + skill=8693, + stats={ + [1]="30% increased Armour while Bleeding" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8697]={ + connections={ + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=2, + skill=8697, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [8723]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=3681, + orbit=-5 + }, + [2]={ + id=21374, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Flesh Withstands", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=56, + skill=8723, + stats={ + [1]="30% increased Mana Regeneration Rate while Shocked", + [2]="+500 to Armour while Frozen", + [3]="21% increased Stun Threshold", + [4]="21% increased Elemental Ailment Threshold", + [5]="30% increased Life Regeneration rate while Ignited" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8734]={ + connections={ + [1]={ + id=52743, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=14, + skill=8734, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [8737]={ + connections={ + [1]={ + id=41511, + orbit=0 + }, + [2]={ + id=25927, + orbit=-7 + }, + [3]={ + id=6077, + orbit=-2 + }, + [4]={ + id=56284, + orbit=-2 + } + }, + group=531, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=0, + orbitIndex=0, + skill=8737, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [8782]={ + connections={ + [1]={ + id=13882, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Empowering Infusions", + orbit=7, + orbitIndex=14, + skill=8782, + stats={ + [1]="30% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [8785]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + connections={ + }, + group=1034, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.png", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=8785 + }, + [8789]={ + connections={ + [1]={ + id=63182, + orbit=3 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage and Companion Life", + orbit=2, + orbitIndex=12, + skill=8789, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="Companions have 12% increased maximum Life" + } + }, + [8791]={ + connections={ + [1]={ + id=32096, + orbit=0 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Sturdy Ally", + orbit=3, + orbitIndex=7, + skill=8791, + stats={ + [1]="Companions gain your Strength", + [2]="+15 to Strength" + } + }, + [8800]={ + connections={ + [1]={ + id=28982, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=15, + skill=8800, + stats={ + [1]="15% increased Melee Damage with Hits at Close Range" + } + }, + [8810]={ + connections={ + [1]={ + id=33751, + orbit=2 + } + }, + group=1085, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + isNotable=true, + name="Multitasking", + orbit=1, + orbitIndex=4, + skill=8810, + stats={ + [1]="15% increased Skill Effect Duration", + [2]="12% increased Cooldown Recovery Rate" + } + }, + [8821]={ + connections={ + [1]={ + id=63863, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=3, + orbitIndex=0, + skill=8821, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [8827]={ + connections={ + [1]={ + id=16691, + orbit=0 + }, + [2]={ + id=28862, + orbit=0 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Fast Metabolism", + orbit=7, + orbitIndex=11, + skill=8827, + stats={ + [1]="40% increased Damage while Leeching Life" + } + }, + [8831]={ + connections={ + [1]={ + id=14082, + orbit=0 + } + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Tempered Mind", + orbit=0, + orbitIndex=0, + skill=8831, + stats={ + [1]="15% increased effect of Fully Broken Armour", + [2]="+10 to Strength", + [3]="20% increased Physical Damage" + } + }, + [8850]={ + connections={ + }, + group=108, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Critical Chance", + orbit=0, + orbitIndex=0, + skill=8850, + stats={ + [1]="10% increased Critical Hit Chance while Shapeshifted" + } + }, + [8852]={ + connections={ + }, + group=138, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=17, + skill=8852, + stats={ + [1]="12% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [8854]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=46644, + orbit=0 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=54, + skill=8854, + stats={ + [1]="3% increased maximum Life" + } + }, + [8867]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=7246, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.png", + isNotable=true, + name="Constant Gale", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=60, + skill=8867, + stats={ + [1]="You have Arcane Surge" + } + }, + [8872]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + connections={ + [1]={ + id=2394, + orbit=0 + }, + [2]={ + id=45488, + orbit=0 + } + }, + group=832, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + isOnlyImage=true, + name="Dual Wielding Mastery", + orbit=0, + orbitIndex=0, + skill=8872 + }, + [8875]={ + connections={ + [1]={ + id=50687, + orbit=0 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Electrocute Buildup", + orbit=1, + orbitIndex=8, + skill=8875, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [8881]={ + connections={ + }, + group=321, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Unforgiving", + orbit=4, + orbitIndex=54, + skill=8881, + stats={ + [1]="+4 to Maximum Rage", + [2]="Inherent loss of Rage is 20% slower" + } + }, + [8896]={ + connections={ + }, + group=1374, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + isNotable=true, + name="Agile Sprinter", + orbit=0, + orbitIndex=0, + skill=8896, + stats={ + [1]="100% increased Evasion Rating while Sprinting" + } + }, + [8904]={ + connections={ + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.png", + isNotable=true, + name="Death from Afar", + orbit=0, + orbitIndex=0, + skill=8904, + stats={ + [1]="Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m", + [2]="Projectiles deal 25% increased Damage with Hits against Enemies further than 6m" + } + }, + [8908]={ + connections={ + [1]={ + id=13711, + orbit=4 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=6, + skill=8908, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [8916]={ + connections={ + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png", + isNotable=true, + name="Bashing Beast", + orbit=1, + orbitIndex=8, + skill=8916, + stats={ + [1]="Enemies you Heavy Stun while Shapeshifted are Intimidated for 6 seconds" + } + }, + [8938]={ + connections={ + [1]={ + id=33229, + orbit=-4 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Chance", + orbit=3, + orbitIndex=16, + skill=8938, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [8957]={ + connections={ + [1]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Right Hand of Darkness", + orbit=4, + orbitIndex=44, + skill=8957, + stats={ + [1]="Minions have 20% increased Area of Effect", + [2]="Minions have 10% chance to inflict Withered on Hit", + [3]="Spells Gain 5% of Damage as extra Chaos Damage" + } + }, + [8975]={ + connections={ + [1]={ + id=61196, + orbit=4 + } + }, + group=1004, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=8975, + stats={ + [1]="+5 to any Attribute" + } + }, + [8982]={ + connections={ + [1]={ + id=14952, + orbit=0 + }, + [2]={ + id=58926, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup and Skill Effect Duration", + orbit=3, + orbitIndex=12, + skill=8982, + stats={ + [1]="10% increased Freeze Buildup", + [2]="6% increased Skill Effect Duration" + } + }, + [8983]={ + connections={ + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=12, + skill=8983, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [9009]={ + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Return to Nature", + orbit=5, + orbitIndex=1, + skill=9009, + stats={ + [1]="Overgrown Plant Skills Break 50% increased Armour" + } + }, + [9018]={ + connections={ + [1]={ + id=35918, + orbit=2 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Area and Presence", + orbit=3, + orbitIndex=22, + skill=9018, + stats={ + [1]="20% increased Presence Area of Effect", + [2]="3% reduced Area of Effect" + } + }, + [9020]={ + connections={ + [1]={ + id=35118, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + isNotable=true, + name="Giantslayer", + orbit=1, + orbitIndex=11, + skill=9020, + stats={ + [1]="25% increased Damage with Hits against Rare and Unique Enemies", + [2]="20% increased Accuracy Rating against Rare or Unique Enemies", + [3]="20% increased chance to inflict Ailments against Rare or Unique Enemies" + } + }, + [9037]={ + connections={ + [1]={ + id=32353, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Skill Speed", + orbit=2, + orbitIndex=23, + skill=9037, + stats={ + [1]="3% increased Skill Speed while Shapeshifted" + } + }, + [9040]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + connections={ + [1]={ + id=45751, + orbit=0 + } + }, + group=251, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Shield Mastery", + orbit=0, + orbitIndex=0, + skill=9040 + }, + [9046]={ + connections={ + [1]={ + id=56776, + orbit=5 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=3, + orbitIndex=8, + skill=9046, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [9050]={ + connections={ + [1]={ + id=24958, + orbit=-4 + }, + [2]={ + id=37691, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=6, + orbitIndex=36, + skill=9050, + stats={ + [1]="3% increased Attack Speed" + } + }, + [9065]={ + connections={ + [1]={ + id=752, + orbit=5 + } + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage", + orbit=4, + orbitIndex=23, + skill=9065, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [9069]={ + connections={ + [1]={ + id=42245, + orbit=0 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=2, + orbitIndex=4, + skill=9069, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [9083]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + connections={ + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=9083 + }, + [9085]={ + connections={ + }, + flavourText="Each nick and cut brings death one step closer.", + group=1103, + icon="Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.png", + isKeystone=true, + name="Crimson Assault", + orbit=0, + orbitIndex=0, + skill=9085, + stats={ + [1]="Bleeding you inflict is Aggravated\nBase Bleeding Duration is 1 second\n50% more Magnitude of Bleeding you inflict" + } + }, + [9089]={ + connections={ + [1]={ + id=3994, + orbit=0 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Evasion Rating", + orbit=1, + orbitIndex=3, + skill=9089, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [9106]={ + connections={ + [1]={ + id=54937, + orbit=7 + } + }, + group=133, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=7, + orbitIndex=2, + skill=9106, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [9112]={ + connections={ + [1]={ + id=44612, + orbit=0 + } + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=1, + orbitIndex=11, + skill=9112, + stats={ + [1]="25% increased Elemental Ailment Threshold" + } + }, + [9141]={ + connections={ + [1]={ + id=13748, + orbit=-6 + }, + [2]={ + id=35760, + orbit=6 + }, + [3]={ + id=5703, + orbit=-2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=12, + skill=9141, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [9151]={ + connections={ + [1]={ + id=42302, + orbit=0 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Forking Projectiles", + orbit=2, + orbitIndex=18, + skill=9151, + stats={ + [1]="Projectiles have 25% chance for an additional Projectile when Forking" + } + }, + [9163]={ + connections={ + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=8, + skill=9163, + stats={ + [1]="18% increased Armour" + } + }, + [9164]={ + connections={ + [1]={ + id=25513, + orbit=0 + } + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=5, + orbitIndex=45, + skill=9164, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [9185]={ + connections={ + [1]={ + id=60107, + orbit=0 + } + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=5, + skill=9185, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [9187]={ + connections={ + [1]={ + id=20015, + orbit=0 + } + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Escalation", + orbit=2, + orbitIndex=8, + skill=9187, + stats={ + [1]="25% increased Warcry Speed", + [2]="20% increased Damage for each different Warcry you've used Recently" + } + }, + [9199]={ + connections={ + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Surpassing Projectile Chance", + orbit=5, + orbitIndex=54, + skill=9199, + stats={ + [1]="+8% Surpassing chance to fire an additional Projectile" + } + }, + [9212]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=1, + orbitIndex=3, + skill=9212, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [9217]={ + connections={ + [1]={ + id=5108, + orbit=0 + }, + [2]={ + id=16538, + orbit=0 + }, + [3]={ + id=47733, + orbit=0 + } + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=0, + orbitIndex=0, + skill=9217, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [9221]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=9221 + }, + [9226]={ + connections={ + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + isNotable=true, + name="Mental Perseverance", + orbit=1, + orbitIndex=0, + skill=9226, + stats={ + [1]="10% of Damage is taken from Mana before Life", + [2]="+15 to Intelligence" + } + }, + [9227]={ + connections={ + [1]={ + id=36071, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.png", + isNotable=true, + name="Focused Thrust", + orbit=2, + orbitIndex=4, + skill=9227, + stats={ + [1]="75% increased Melee Damage with Spears while Surrounded", + [2]="40% increased Projectile Damage with Spears while there are no Enemies within 3m" + } + }, + [9240]={ + connections={ + [1]={ + id=21225, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Damage", + orbit=2, + orbitIndex=16, + skill=9240, + stats={ + [1]="10% increased Damage with Spears" + } + }, + [9272]={ + connections={ + [1]={ + id=12906, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Duration", + orbit=1, + orbitIndex=0, + skill=9272, + stats={ + [1]="10% increased Pin duration" + } + }, + [9275]={ + connections={ + [1]={ + id=5704, + orbit=0 + }, + [2]={ + id=63888, + orbit=0 + } + }, + group=1180, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Speed", + orbit=2, + orbitIndex=16, + skill=9275, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [9290]={ + connections={ + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Rusted Pins", + orbit=4, + orbitIndex=57, + skill=9290, + stats={ + [1]="30% increased Pin Buildup", + [2]="Bleeding you inflict on Pinned Enemies is Aggravated" + } + }, + [9294]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=528, + orbit=0 + } + }, + group=1544, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.png", + isNotable=true, + name="Critical Strike", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=9294, + stats={ + [1]="Chance to Hit with Attacks can exceed 100%\nGain additional Critical Hit Chance equal to 25% of excess chance to Hit with Attacks" + } + }, + [9323]={ + connections={ + [1]={ + id=40395, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Craving Slaughter", + orbit=2, + orbitIndex=23, + skill=9323, + stats={ + [1]="+15 maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" + } + }, + [9324]={ + connections={ + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Duration", + orbit=3, + orbitIndex=21, + skill=9324, + stats={ + [1]="8% increased Ignite Duration on Enemies" + } + }, + [9328]={ + connections={ + [1]={ + id=34782, + orbit=0 + } + }, + group=139, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png", + isNotable=true, + name="Spirit of the Bear", + orbit=0, + orbitIndex=0, + skill=9328, + stats={ + [1]="50% increased Damage against Immobilised Enemies while Shapeshifted", + [2]="25% increased Stun buildup while Shapeshifted" + } + }, + [9352]={ + connections={ + [1]={ + id=32071, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=3, + orbitIndex=23, + skill=9352, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [9393]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=1, + orbitIndex=8, + skill=9393 + }, + [9405]={ + connections={ + [1]={ + id=59720, + orbit=6 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=12, + skill=9405, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [9411]={ + connections={ + [1]={ + id=49466, + orbit=0 + }, + [2]={ + id=64434, + orbit=0 + } + }, + group=1207, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=15, + skill=9411, + stats={ + [1]="25% increased Life Recovery from Flasks used when on Low Life" + } + }, + [9414]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=21, + skill=9414, + stats={ + [1]="16% increased Elemental Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [9417]={ + connections={ + [1]={ + id=48121, + orbit=-6 + }, + [2]={ + id=13171, + orbit=5 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=0, + orbitIndex=0, + skill=9417, + stats={ + [1]="16% increased Totem Life" + } + }, + [9421]={ + connections={ + [1]={ + id=60170, + orbit=0 + } + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Snowpiercer", + orbit=2, + orbitIndex=8, + skill=9421, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="+10 to Intelligence" + } + }, + [9441]={ + connections={ + [1]={ + id=5077, + orbit=0 + } + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Area", + orbit=2, + orbitIndex=8, + skill=9441, + stats={ + [1]="15% increased Parry Hit Area of Effect" + } + }, + [9442]={ + connections={ + [1]={ + id=37260, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Warcry Speed", + orbit=2, + orbitIndex=18, + skill=9442, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [9444]={ + connections={ + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + isNotable=true, + name="One with the Storm", + orbit=6, + orbitIndex=39, + skill=9444, + stats={ + [1]="Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge" + } + }, + [9458]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=9458 + }, + [9472]={ + connections={ + [1]={ + id=31991, + orbit=0 + }, + [2]={ + id=41062, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Catapult", + orbit=0, + orbitIndex=0, + skill=9472, + stats={ + [1]="15% increased Projectile Speed", + [2]="12% increased Area of Effect for Attacks" + } + }, + [9485]={ + connections={ + [1]={ + id=60685, + orbit=0 + } + }, + group=841, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=9485, + stats={ + [1]="+5 to any Attribute" + } + }, + [9510]={ + connections={ + [1]={ + id=16695, + orbit=0 + } + }, + group=1142, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Recoup", + orbit=2, + orbitIndex=0, + skill=9510, + stats={ + [1]="3% of Elemental Damage taken Recouped as Energy Shield" + } + }, + [9528]={ + connections={ + [1]={ + id=62200, + orbit=-4 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown Speed", + orbit=3, + orbitIndex=15, + skill=9528, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [9532]={ + connections={ + [1]={ + id=59368, + orbit=2 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png", + name="Strength and Dexterity", + orbit=7, + orbitIndex=22, + skill=9532, + stats={ + [1]="+4 to Strength", + [2]="+4 to Dexterity" + } + }, + [9535]={ + connections={ + [1]={ + id=37434, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/lightningstr.png", + isNotable=true, + name="Brinerot Ferocity", + orbit=0, + orbitIndex=0, + skill=9535, + stats={ + [1]="4% increased Attack Speed", + [2]="+8% to Lightning Resistance", + [3]="+30% of Armour also applies to Lightning Damage" + } + }, + [9554]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=8723, + orbit=9 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=62, + skill=9554, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [9568]={ + connections={ + [1]={ + id=5580, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=2, + orbitIndex=1, + skill=9568, + stats={ + [1]="16% increased Totem Life" + } + }, + [9572]={ + connections={ + [1]={ + id=12822, + orbit=0 + } + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage if Projectile Hit", + orbit=2, + orbitIndex=14, + skill=9572, + stats={ + [1]="15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" + } + }, + [9583]={ + connections={ + [1]={ + id=47316, + orbit=0 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech and Physical Damage", + orbit=7, + orbitIndex=0, + skill=9583, + stats={ + [1]="1% increased maximum Life", + [2]="8% increased amount of Life Leeched" + } + }, + [9586]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1152, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=4, + orbitIndex=10, + skill=9586 + }, + [9638]={ + connections={ + [1]={ + id=39083, + orbit=-7 + } + }, + group=465, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Skill Speed", + orbit=0, + orbitIndex=0, + skill=9638, + stats={ + [1]="3% increased Skill Speed" + } + }, + [9642]={ + connections={ + [1]={ + id=517, + orbit=6 + }, + [2]={ + id=14666, + orbit=-4 + } + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Dampening Shield", + orbit=7, + orbitIndex=21, + skill=9642, + stats={ + [1]="28% increased maximum Energy Shield", + [2]="Gain additional Ailment Threshold equal to 12% of maximum Energy Shield", + [3]="Gain additional Stun Threshold equal to 12% of maximum Energy Shield" + } + }, + [9652]={ + connections={ + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Mending Deflection", + orbit=2, + orbitIndex=18, + skill=9652, + stats={ + [1]="15% of Damage taken from Deflected Hits Recouped as Life", + [2]="20% faster start of Energy Shield Recharge when not on Full Life" + } + }, + [9663]={ + connections={ + [1]={ + id=19359, + orbit=-5 + } + }, + group=1431, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + name="Chaos Resistance", + orbit=2, + orbitIndex=8, + skill=9663, + stats={ + [1]="+5% to Chaos Resistance" + } + }, + [9698]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=2, + orbitIndex=22, + skill=9698 + }, + [9703]={ + connections={ + [1]={ + id=6030, + orbit=0 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=3, + orbitIndex=2, + skill=9703, + stats={ + [1]="10% increased Poison Duration" + } + }, + [9710]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1516, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.png", + isMultipleChoiceOption=true, + name="Bleeding Concoction", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=9710, + stats={ + [1]="Grants Skill: Bleeding Concoction" + } + }, + [9736]={ + connections={ + [1]={ + id=61318, + orbit=0 + }, + [2]={ + id=62235, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Insulated Treads", + orbit=4, + orbitIndex=42, + skill=9736, + stats={ + [1]="25% increased Armour and Evasion Rating", + [2]="Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots" + } + }, + [9737]={ + connections={ + [1]={ + id=36522, + orbit=0 + }, + [2]={ + id=24813, + orbit=4 + }, + [3]={ + id=59480, + orbit=0 + }, + [4]={ + id=15590, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=4, + orbitIndex=51, + skill=9737, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [9745]={ + connections={ + [1]={ + id=58513, + orbit=0 + } + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png", + name="Movement Speed", + orbit=7, + orbitIndex=12, + skill=9745, + stats={ + [1]="2% increased Movement Speed" + } + }, + [9750]={ + connections={ + [1]={ + id=1169, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown", + orbit=7, + orbitIndex=12, + skill=9750, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [9762]={ + connections={ + [1]={ + id=45824, + orbit=0 + } + }, + group=564, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=6, + orbitIndex=5, + skill=9762, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [9782]={ + connections={ + [1]={ + id=20677, + orbit=0 + } + }, + group=1169, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=9782, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [9796]={ + connections={ + [1]={ + id=62310, + orbit=-4 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=18, + skill=9796, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [9798]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=24868, + orbit=0 + } + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=58, + skill=9798, + stats={ + [1]="4% increased Skill Speed" + } + }, + [9825]={ + connections={ + [1]={ + id=934, + orbit=-4 + }, + [2]={ + id=21755, + orbit=9 + } + }, + group=763, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=3, + orbitIndex=0, + skill=9825, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [9843]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png", + name="Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=66, + skill=9843, + stats={ + [1]="3% increased maximum Mana" + } + }, + [9857]={ + connections={ + [1]={ + id=54990, + orbit=0 + } + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=2, + orbitIndex=8, + skill=9857, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [9863]={ + connections={ + }, + flavourText="A throne is the most devious trap of them all", + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + isNotable=true, + name="Knight of Izaro", + orbit=4, + orbitIndex=42, + skill=9863, + stats={ + [1]="+12% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 10% of Evasion Rating", + [3]="Banner Skills have 15% increased Aura Magnitudes", + [4]="25% reduced Armour Break taken" + } + }, + [9896]={ + connections={ + [1]={ + id=292, + orbit=0 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Heartstopping Presence", + orbit=3, + orbitIndex=4, + skill=9896, + stats={ + [1]="Enemies in your Presence have 75% reduced Life Regeneration rate" + } + }, + [9908]={ + connections={ + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + isNotable=true, + name="Price of Freedom", + orbit=2, + orbitIndex=8, + skill=9908, + stats={ + [1]="15% increased Cost Efficiency of Attacks", + [2]="18% of Skill Mana Costs Converted to Life Costs" + } + }, + [9918]={ + connections={ + [1]={ + id=16626, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=2, + orbitIndex=4, + skill=9918, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [9928]={ + connections={ + [1]={ + id=50403, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Embracing Frost", + orbit=4, + orbitIndex=36, + skill=9928, + stats={ + [1]="+1% to Maximum Cold Resistance", + [2]="+10% to Cold Resistance" + } + }, + [9941]={ + connections={ + [1]={ + id=38888, + orbit=0 + } + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=15, + skill=9941, + stats={ + [1]="8% increased Accuracy Rating with One Handed Melee Weapons", + [2]="8% increased Accuracy Rating with Two Handed Melee Weapons" + } + }, + [9968]={ + connections={ + [1]={ + id=38678, + orbit=-6 + }, + [2]={ + id=28623, + orbit=0 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + isNotable=true, + name="Feel the Earth", + orbit=4, + orbitIndex=69, + skill=9968, + stats={ + [1]="25% reduced Shock duration on you", + [2]="40% increased Elemental Ailment Threshold" + } + }, + [9988]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=20195, + orbit=0 + }, + [2]={ + id=16276, + orbit=0 + }, + [3]={ + id=60913, + orbit=0 + }, + [4]={ + id=25438, + orbit=0 + }, + [5]={ + id=9997, + orbit=0 + }, + [6]={ + id=8525, + orbit=0 + }, + [7]={ + id=13772, + orbit=0 + }, + [8]={ + id=22908, + orbit=0 + }, + [9]={ + id=110, + orbit=0 + }, + [10]={ + id=49340, + orbit=0 + }, + [11]={ + id=61039, + orbit=0 + }, + [12]={ + id=64962, + orbit=0 + } + }, + group=47, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.png", + isFreeAllocate=true, + isNotable=true, + name="Smith's Masterwork", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=9988, + stats={ + [1]="Can only use a Normal Body Armour", + [2]="+200 to Armour for each Connected Notable Passive Skill Allocated" + } + }, + [9994]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=23415, + orbit=0 + }, + [2]={ + id=44357, + orbit=0 + }, + [3]={ + id=13065, + orbit=0 + }, + [4]={ + id=27686, + orbit=0 + }, + [5]={ + id=25434, + orbit=0 + }, + [6]={ + id=17268, + orbit=0 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Master of the Elements", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=24, + skill=9994 + }, + [9997]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=32, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.png", + isNotable=true, + name="Molten Symbol", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=9997, + stats={ + [1]="Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage" + } + }, + [10011]={ + connections={ + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Damage vs Blinded", + orbit=3, + orbitIndex=13, + skill=10011, + stats={ + [1]="15% increased Damage with Hits against Blinded Enemies" + } + }, + [10029]={ + connections={ + [1]={ + id=19277, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Repulsion", + orbit=2, + orbitIndex=4, + skill=10029, + stats={ + [1]="Area Skills have 20% chance to Knock Enemies Back on Hit", + [2]="20% increased Spell Area Damage" + } + }, + [10041]={ + connections={ + [1]={ + id=32799, + orbit=0 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Ailment Threshold and Companion Resistance", + orbit=7, + orbitIndex=22, + skill=10041, + stats={ + [1]="8% increased Elemental Ailment Threshold", + [2]="Companions have +12% to all Elemental Resistances" + } + }, + [10047]={ + connections={ + [1]={ + id=62757, + orbit=0 + } + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=10, + skill=10047, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [10053]={ + connections={ + [1]={ + id=19470, + orbit=0 + }, + [2]={ + id=9458, + orbit=0 + } + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png", + isNotable=true, + name="Combat Alchemy", + orbit=2, + orbitIndex=20, + skill=10053, + stats={ + [1]="10% chance for Flasks you use to not consume Charges", + [2]="20% increased Life and Mana Recovery from Flasks" + } + }, + [10055]={ + connections={ + [1]={ + id=30554, + orbit=0 + }, + [2]={ + id=41497, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Chaos Resistance", + orbit=7, + orbitIndex=2, + skill=10055, + stats={ + [1]="Minions have 8% increased maximum Life", + [2]="Minions have +7% to Chaos Resistance" + } + }, + [10058]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + connections={ + [1]={ + id=55149, + orbit=0 + }, + [2]={ + id=44373, + orbit=0 + } + }, + group=1301, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.png", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=10058 + }, + [10072]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=52068, + orbit=-7 + } + }, + group=59, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Block Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=10072, + stats={ + [1]="6% increased Block chance" + } + }, + [10079]={ + connections={ + [1]={ + id=5314, + orbit=0 + } + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=16, + skill=10079, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [10100]={ + connections={ + [1]={ + id=47263, + orbit=0 + }, + [2]={ + id=25300, + orbit=0 + } + }, + group=189, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=10100, + stats={ + [1]="+5 to any Attribute" + } + }, + [10131]={ + connections={ + [1]={ + id=3251, + orbit=0 + }, + [2]={ + id=44669, + orbit=0 + }, + [3]={ + id=14127, + orbit=0 + }, + [4]={ + id=55947, + orbit=0 + } + }, + group=1067, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=10131, + stats={ + [1]="+5 to any Attribute" + } + }, + [10156]={ + connections={ + [1]={ + id=6744, + orbit=-6 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=38, + skill=10156, + stats={ + [1]="+5 to any Attribute" + } + }, + [10159]={ + connections={ + [1]={ + id=31977, + orbit=4 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=4, + orbitIndex=42, + skill=10159, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [10162]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + connections={ + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + isOnlyImage=true, + name="Power Charge Mastery", + orbit=0, + orbitIndex=0, + skill=10162 + }, + [10192]={ + connections={ + [1]={ + id=3823, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=61436, + name="Minion Damage", + stats={ + [1]="Minions deal 10% increased Damage" + } + } + }, + orbit=3, + orbitIndex=0, + skill=10192, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [10242]={ + connections={ + [1]={ + id=38111, + orbit=0 + } + }, + group=1214, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=2, + orbitIndex=8, + skill=10242, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [10245]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=10245 + }, + [10247]={ + connections={ + [1]={ + id=28370, + orbit=0 + } + }, + group=785, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=51, + skill=10247, + stats={ + [1]="+5 to any Attribute" + } + }, + [10251]={ + connections={ + [1]={ + id=7204, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=16, + skill=10251, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [10260]={ + connections={ + [1]={ + id=33730, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Damage", + orbit=2, + orbitIndex=1, + skill=10260, + stats={ + [1]="Channelling Skills deal 12% increased Damage" + } + }, + [10265]={ + connections={ + [1]={ + id=36071, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.png", + isNotable=true, + name="Javelin", + orbit=6, + orbitIndex=48, + skill=10265, + stats={ + [1]="40% increased Critical Damage Bonus with Spears" + } + }, + [10267]={ + connections={ + [1]={ + id=8456, + orbit=0 + } + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Attack Cold Damage and Freeze Buildup", + orbit=7, + orbitIndex=22, + skill=10267, + stats={ + [1]="8% increased Freeze Buildup", + [2]="8% increased Attack Cold Damage" + } + }, + [10271]={ + connections={ + [1]={ + id=58038, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=7, + skill=10271, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [10273]={ + connections={ + [1]={ + id=45272, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=7, + orbitIndex=2, + skill=10273, + stats={ + [1]="+3 to all Attributes" + } + }, + [10277]={ + connections={ + [1]={ + id=64064, + orbit=0 + } + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=7, + skill=10277, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [10286]={ + connections={ + [1]={ + id=38066, + orbit=-4 + } + }, + group=209, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break and Armour", + orbit=7, + orbitIndex=8, + skill=10286, + stats={ + [1]="10% increased Armour", + [2]="Break 15% increased Armour" + } + }, + [10295]={ + connections={ + [1]={ + id=27733, + orbit=0 + } + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Overzealous", + orbit=5, + orbitIndex=30, + skill=10295, + stats={ + [1]="16% increased Cast Speed", + [2]="15% increased Mana Cost of Skills" + } + }, + [10305]={ + connections={ + [1]={ + id=45586, + orbit=0 + }, + [2]={ + id=61490, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Attack Damage with Ally", + orbit=2, + orbitIndex=14, + skill=10305, + stats={ + [1]="Allies in your Presence deal 8% increased Damage", + [2]="8% increased Attack Damage while you have an Ally in your Presence" + } + }, + [10314]={ + connections={ + [1]={ + id=16256, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=4, + orbitIndex=30, + skill=10314, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [10315]={ + connections={ + [1]={ + id=44699, + orbit=0 + }, + [2]={ + id=47443, + orbit=0 + }, + [3]={ + id=37971, + orbit=0 + } + }, + group=1497, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Easy Going", + orbit=0, + orbitIndex=0, + skill=10315, + stats={ + [1]="25% increased Reservation Efficiency of Companion Skills" + } + }, + [10320]={ + connections={ + [1]={ + id=14548, + orbit=3 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=7, + orbitIndex=18, + skill=10320, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [10362]={ + connections={ + [1]={ + id=10830, + orbit=0 + }, + [2]={ + id=9163, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=0, + orbitIndex=0, + skill=10362, + stats={ + [1]="15% increased Armour" + } + }, + [10364]={ + connections={ + [1]={ + id=44683, + orbit=0 + }, + [2]={ + id=55342, + orbit=4 + }, + [3]={ + id=42857, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + name="Skill Speed", + orbit=4, + orbitIndex=48, + skill=10364, + stats={ + [1]="4% increased Skill Speed" + } + }, + [10371]={ + ascendancyName="Tactician", + connections={ + }, + group=303, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.png", + isNotable=true, + name="Whoever Pays Best", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=10371, + stats={ + [1]="Banners gain 5 Glory per second", + [2]="There is no Limit on the number of Banners you can place" + } + }, + [10372]={ + connections={ + [1]={ + id=36191, + orbit=-3 + }, + [2]={ + id=55933, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=1, + orbitIndex=1, + skill=10372, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [10382]={ + connections={ + [1]={ + id=21984, + orbit=0 + }, + [2]={ + id=33979, + orbit=0 + } + }, + group=1160, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=10382, + stats={ + [1]="+5 to any Attribute" + } + }, + [10398]={ + connections={ + [1]={ + id=3472, + orbit=-3 + } + }, + group=734, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + isNotable=true, + name="Sudden Escalation", + orbit=7, + orbitIndex=18, + skill=10398, + stats={ + [1]="16% increased Critical Hit Chance for Spells", + [2]="8% increased Cast Speed if you've dealt a Critical Hit Recently" + } + }, + [10423]={ + connections={ + [1]={ + id=37905, + orbit=-7 + } + }, + group=1476, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + isNotable=true, + name="Exposed to the Inferno", + orbit=1, + orbitIndex=0, + skill=10423, + stats={ + [1]="Damage Penetrates 18% Fire Resistance", + [2]="15% increased Duration of Ailments against Enemies with Exposure" + } + }, + [10429]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=1, + orbitIndex=11, + skill=10429 + }, + [10452]={ + connections={ + [1]={ + id=44213, + orbit=0 + }, + [2]={ + id=1878, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=2, + skill=10452, + stats={ + [1]="10% increased Armour", + [2]="10% increased maximum Energy Shield" + } + }, + [10472]={ + connections={ + [1]={ + id=17687, + orbit=2 + }, + [2]={ + id=27422, + orbit=-2 + } + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=0, + orbitIndex=0, + skill=10472, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [10474]={ + connections={ + [1]={ + id=64443, + orbit=0 + }, + [2]={ + id=53785, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=3, + orbitIndex=12, + skill=10474, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [10484]={ + connections={ + [1]={ + id=42660, + orbit=0 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + orbit=2, + orbitIndex=14, + skill=10484, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [10495]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=7, + orbitIndex=18, + skill=10495 + }, + [10499]={ + connections={ + [1]={ + id=42583, + orbit=0 + }, + [2]={ + id=51788, + orbit=8 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + isNotable=true, + name="Necromantic Ward", + orbit=2, + orbitIndex=0, + skill=10499, + stats={ + [1]="20% increased Life Regeneration rate", + [2]="30% reduced effect of Curses on you", + [3]="30% increased damage against Undead Enemies" + } + }, + [10500]={ + connections={ + [1]={ + id=6900, + orbit=-6 + }, + [2]={ + id=9040, + orbit=0 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Dazing Blocks", + orbit=4, + orbitIndex=12, + skill=10500, + stats={ + [1]="100% chance to Daze Enemies whose Hits you Block with a raised Shield" + } + }, + [10508]={ + connections={ + [1]={ + id=21684, + orbit=5 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Shield Attack Speed", + orbit=7, + orbitIndex=15, + skill=10508, + stats={ + [1]="3% increased Attack Speed while holding a Shield" + } + }, + [10534]={ + connections={ + [1]={ + id=46205, + orbit=-7 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast and Attack Speed", + orbit=2, + orbitIndex=2, + skill=10534, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed", + [2]="Attacks used by Totems have 4% increased Attack Speed" + } + }, + [10552]={ + connections={ + [1]={ + id=703, + orbit=-3 + }, + [2]={ + id=18895, + orbit=3 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun Threshold from Energy Shield", + orbit=7, + orbitIndex=8, + skill=10552, + stats={ + [1]="Gain additional Stun Threshold equal to 12% of maximum Energy Shield" + } + }, + [10561]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=32705, + orbit=9 + } + }, + flavourText="\"My heart was fractured. I believed Kelari's words. I knew not his true nature... his ambition. I convinced Ruzhan there were cowards among his ranks. I failed you. And I accept my fate.\"\n\nNavira confessed her failure to Varashta.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.png", + isNotable=true, + name="Navira's Fracturing", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=7, + orbitIndex=17, + skill=10561, + stats={ + [1]="Grants Skill: Navira's Fracturing" + } + }, + [10571]={ + connections={ + [1]={ + id=48240, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=3, + orbitIndex=17, + skill=10571, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [10576]={ + connections={ + [1]={ + id=58644, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=0, + orbitIndex=0, + skill=10576, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision" + } + }, + [10602]={ + connections={ + [1]={ + id=8629, + orbit=0 + } + }, + group=398, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + isNotable=true, + name="Reaving", + orbit=4, + orbitIndex=9, + skill=10602, + stats={ + [1]="8% increased Attack Speed with One Handed Weapons", + [2]="+15 to Dexterity" + } + }, + [10612]={ + connections={ + [1]={ + id=52003, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Embodiment of Frost", + orbit=2, + orbitIndex=5, + skill=10612, + stats={ + [1]="Immune to Freeze and Chill while affected by an Archon Buff" + } + }, + [10635]={ + connections={ + [1]={ + id=31724, + orbit=0 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=6, + skill=10635, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [10636]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=38697, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Block Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=9, + skill=10636, + stats={ + [1]="8% increased Block chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [10648]={ + connections={ + [1]={ + id=26400, + orbit=0 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=54, + skill=10648, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies further than 6m" + } + }, + [10671]={ + connections={ + [1]={ + id=5740, + orbit=0 + }, + [2]={ + id=23419, + orbit=0 + }, + [3]={ + id=51048, + orbit=0 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Attack Damage", + orbit=2, + orbitIndex=1, + skill=10671, + stats={ + [1]="10% increased Attack Damage" + } + }, + [10677]={ + connections={ + [1]={ + id=56638, + orbit=3 + } + }, + group=995, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold if not Stunned recently", + orbit=2, + orbitIndex=20, + skill=10677, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [10681]={ + connections={ + [1]={ + id=27581, + orbit=5 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Defensive Stance", + orbit=4, + orbitIndex=0, + skill=10681, + stats={ + [1]="+4% to maximum Block chance" + } + }, + [10694]={ + ascendancyName="Infernalist", + connections={ + }, + group=805, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.png", + isNotable=true, + name="Seething Body", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=10694, + stats={ + [1]="Gain Elemental Archon when you cast a Spell while on High Infernal Flame", + [2]="Elemental Archon does not expire while on High Infernal Flame", + [3]="Lose Elemental Archon on reaching maximum Infernal Flame" + } + }, + [10713]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=16615, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=23, + skill=10713, + stats={ + [1]="30% increased Armour while stationary" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [10727]={ + connections={ + [1]={ + id=1825, + orbit=0 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + isNotable=true, + name="Emboldening Casts", + orbit=3, + orbitIndex=11, + skill=10727, + stats={ + [1]="12% increased Attack Damage for each different Non-Instant Spell you've used in the past 8 seconds" + } + }, + [10729]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=1153, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=10729 + }, + [10731]={ + ascendancyName="Chronomancer", + connections={ + }, + group=326, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.png", + isNotable=true, + name="Quicksand Hourglass", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=10731, + stats={ + [1]="Grants Sands of Time" + } + }, + [10738]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=10738 + }, + [10742]={ + connections={ + [1]={ + id=41991, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Attack and Cast Speed", + orbit=3, + orbitIndex=4, + skill=10742, + stats={ + [1]="Minions have 3% increased Attack and Cast Speed" + } + }, + [10772]={ + connections={ + [1]={ + id=2119, + orbit=0 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Bloodthirsty", + orbit=0, + orbitIndex=0, + skill=10772, + stats={ + [1]="20% increased Damage while Leeching", + [2]="10% increased Attack Speed while Leeching", + [3]="30% increased Armour and Evasion Rating while Leeching" + } + }, + [10774]={ + connections={ + [1]={ + id=35863, + orbit=0 + } + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Unyielding", + orbit=2, + orbitIndex=0, + skill=10774, + stats={ + [1]="15% increased Attack Speed if you've been Hit Recently", + [2]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [10783]={ + connections={ + [1]={ + id=9762, + orbit=0 + }, + [2]={ + id=38564, + orbit=0 + } + }, + group=564, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=2, + orbitIndex=16, + skill=10783, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [10824]={ + connections={ + [1]={ + id=49734, + orbit=-5 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=4, + orbitIndex=19, + skill=10824, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [10830]={ + connections={ + [1]={ + id=59589, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=2, + skill=10830, + stats={ + [1]="18% increased Armour" + } + }, + [10835]={ + connections={ + [1]={ + id=48026, + orbit=0 + }, + [2]={ + id=53367, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Duration", + orbit=3, + orbitIndex=16, + skill=10835, + stats={ + [1]="Banner Skills have 20% increased Duration" + } + }, + [10841]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=7, + orbitIndex=15, + skill=10841 + }, + [10873]={ + connections={ + [1]={ + id=32777, + orbit=0 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Bestial Rage", + orbit=3, + orbitIndex=12, + skill=10873, + stats={ + [1]="Gain 1 Rage on Melee Hit", + [2]="Every 10 Rage also grants 12% increased Physical Damage" + } + }, + [10881]={ + connections={ + [1]={ + id=36450, + orbit=3 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Focus Energy Shield", + orbit=0, + orbitIndex=0, + skill=10881, + stats={ + [1]="40% increased Energy Shield from Equipped Focus" + } + }, + [10909]={ + connections={ + [1]={ + id=16489, + orbit=9 + }, + [2]={ + id=33053, + orbit=3 + } + }, + group=887, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=8, + skill=10909, + stats={ + [1]="+5 to any Attribute" + } + }, + [10927]={ + connections={ + [1]={ + id=9272, + orbit=0 + }, + [2]={ + id=42250, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Duration", + orbit=3, + orbitIndex=3, + skill=10927, + stats={ + [1]="10% increased Pin duration" + } + }, + [10944]={ + connections={ + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=0, + skill=10944, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [10987]={ + ascendancyName="Chronomancer", + connections={ + }, + group=358, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.png", + isNotable=true, + name="Now and Again", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=2, + orbitIndex=9, + skill=10987, + stats={ + [1]="Cascadable Spells have 20% chance to Echo", + [2]="Repeatable Spells have 20% chance to Repeat" + } + }, + [10998]={ + connections={ + [1]={ + id=21438, + orbit=0 + }, + [2]={ + id=62235, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Strong Chin", + orbit=4, + orbitIndex=30, + skill=10998, + stats={ + [1]="25% increased Armour and Evasion Rating", + [2]="Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet" + } + }, + [11014]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=11014 + }, + [11015]={ + connections={ + [1]={ + id=45329, + orbit=0 + } + }, + group=1244, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=0, + orbitIndex=0, + skill=11015, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [11027]={ + connections={ + [1]={ + id=59433, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Endurance Charge Duration and Armour", + orbit=2, + orbitIndex=1, + skill=11027, + stats={ + [1]="10% increased Endurance Charge Duration", + [2]="10% increased Armour if you've consumed an Endurance Charge Recently" + } + }, + [11032]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + connections={ + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=11032 + }, + [11037]={ + connections={ + [1]={ + id=57039, + orbit=0 + } + }, + group=765, + icon="Art/2DArt/SkillIcons/ExplosiveGrenade.png", + isNotable=true, + name="Volatile Catalyst", + orbit=3, + orbitIndex=6, + skill=11037, + stats={ + [1]="8% increased Area of Effect", + [2]="10% increased Cooldown Recovery Rate" + } + }, + [11048]={ + connections={ + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Duration", + orbit=7, + orbitIndex=20, + skill=11048, + stats={ + [1]="Minions deal 8% increased Damage", + [2]="8% increased Minion Duration" + } + }, + [11066]={ + connections={ + [1]={ + id=26663, + orbit=2 + } + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=7, + orbitIndex=19, + skill=11066, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [11087]={ + connections={ + [1]={ + id=42635, + orbit=0 + } + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Damage", + orbit=2, + orbitIndex=1, + skill=11087, + stats={ + [1]="Channelling Skills deal 12% increased Damage" + } + }, + [11094]={ + connections={ + [1]={ + id=59303, + orbit=-6 + } + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Effect", + orbit=7, + orbitIndex=3, + skill=11094, + stats={ + [1]="Charms applied to you have 10% increased Effect" + } + }, + [11153]={ + connections={ + [1]={ + id=5049, + orbit=0 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Accuracy", + orbit=7, + orbitIndex=12, + skill=11153, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [11160]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=43721, + orbit=5 + }, + [2]={ + id=21374, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Relinquish Your Life", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=70, + skill=11160, + stats={ + [1]="53% increased Life Cost of Skills", + [2]="Gain 21% of Damage as Extra Chaos Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11178]={ + connections={ + [1]={ + id=24224, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + isNotable=true, + name="Whirling Onslaught", + orbit=3, + orbitIndex=19, + skill=11178, + stats={ + [1]="50% chance to gain Onslaught on Killing Blow with Axes" + } + }, + [11230]={ + connections={ + [1]={ + id=17672, + orbit=0 + } + }, + flavourText="A properly disciplined mind gives rise to structured thought.", + group=912, + icon="Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.png", + isKeystone=true, + name="Ritual Cadence", + orbit=0, + orbitIndex=0, + skill=11230, + stats={ + [1]="Invocation Skills instead Trigger Spells every 2 seconds\nInvocation Skills cannot gain Energy while Triggering Spells\nInvoked Spells consume 50% less Energy" + } + }, + [11248]={ + connections={ + [1]={ + id=35831, + orbit=0 + }, + [2]={ + id=21568, + orbit=0 + }, + [3]={ + id=46380, + orbit=0 + }, + [4]={ + id=48387, + orbit=0 + }, + [5]={ + id=22270, + orbit=0 + } + }, + group=304, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=11248, + stats={ + [1]="+5 to any Attribute" + } + }, + [11252]={ + connections={ + [1]={ + id=39911, + orbit=0 + } + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=23, + skill=11252, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [11257]={ + connections={ + [1]={ + id=10271, + orbit=0 + }, + [2]={ + id=54282, + orbit=4 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Evasion while Surrounded", + orbit=3, + orbitIndex=11, + skill=11257, + stats={ + [1]="30% increased Evasion Rating while Surrounded" + } + }, + [11275]={ + connections={ + [1]={ + id=13893, + orbit=0 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=7, + orbitIndex=12, + skill=11275, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [11284]={ + connections={ + [1]={ + id=31697, + orbit=0 + }, + [2]={ + id=30985, + orbit=0 + }, + [3]={ + id=50104, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Duration", + orbit=7, + orbitIndex=7, + skill=11284, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [11292]={ + connections={ + [1]={ + id=2575, + orbit=7 + }, + [2]={ + id=56757, + orbit=-7 + } + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=2, + orbitIndex=0, + skill=11292, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [11306]={ + connections={ + [1]={ + id=57880, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Rage on Hit", + orbit=2, + orbitIndex=5, + skill=11306, + stats={ + [1]="Gain 1 Rage on Melee Axe Hit" + } + }, + [11311]={ + connections={ + [1]={ + id=38057, + orbit=0 + } + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=5, + orbitIndex=61, + skill=11311, + stats={ + [1]="+10 to Armour", + [2]="+8 to Evasion Rating" + } + }, + [11315]={ + connections={ + [1]={ + id=48846, + orbit=0 + } + }, + group=929, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=11315, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [11329]={ + connections={ + [1]={ + id=54676, + orbit=0 + } + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=22, + skill=11329, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [11330]={ + connections={ + [1]={ + id=22185, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Debuff Expiry Rate", + orbit=3, + orbitIndex=6, + skill=11330, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [11335]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=5571, + orbit=6 + } + }, + group=4, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Passive Point", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=11335, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [11337]={ + connections={ + [1]={ + id=23427, + orbit=5 + }, + [2]={ + id=44455, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Chill Magnitude", + orbit=3, + orbitIndex=16, + skill=11337, + stats={ + [1]="15% increased Magnitude of Chill you inflict" + } + }, + [11366]={ + connections={ + [1]={ + id=34927, + orbit=0 + }, + [2]={ + id=558, + orbit=6 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Volcanic Skin", + orbit=5, + orbitIndex=2, + skill=11366, + stats={ + [1]="Gain 8% of Damage as Extra Fire Damage", + [2]="+20% to Fire Resistance" + } + }, + [11376]={ + connections={ + [1]={ + id=35492, + orbit=0 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Necrotic Touch", + orbit=1, + orbitIndex=10, + skill=11376, + stats={ + [1]="Minions have 40% increased Critical Hit Chance" + } + }, + [11392]={ + connections={ + [1]={ + id=38320, + orbit=0 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Molten Being", + orbit=5, + orbitIndex=8, + skill=11392, + stats={ + [1]="Gain 5% of Damage as Extra Fire Damage", + [2]="5% of Physical Damage taken as Fire Damage" + } + }, + [11410]={ + connections={ + [1]={ + id=21755, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=6, + orbitIndex=48, + skill=11410, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [11428]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=244, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Exhaust All Power", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=7, + skill=11428, + stats={ + [1]="Archon recovery period expires 30% slower", + [2]="Archon Buffs also grant +50% Critical Damage Bonus", + [3]="Archon Buffs also grant +30% Critical Hit Chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11433]={ + connections={ + [1]={ + id=24630, + orbit=-6 + }, + [2]={ + id=44753, + orbit=0 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=7, + orbitIndex=0, + skill=11433, + stats={ + [1]="12% increased Fire Damage" + } + }, + [11463]={ + connections={ + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=23, + skill=11463, + stats={ + [1]="25% reduced Presence Area of Effect" + } + }, + [11464]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=27405, + orbit=0 + } + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Movement Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=54, + skill=11464, + stats={ + [1]="3% increased Movement Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11472]={ + connections={ + [1]={ + id=19880, + orbit=0 + }, + [2]={ + id=40270, + orbit=0 + } + }, + group=1203, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Evasion if Consumed Frenzy Charge", + orbit=2, + orbitIndex=8, + skill=11472, + stats={ + [1]="20% increased Evasion Rating if you've consumed a Frenzy Charge Recently" + } + }, + [11495]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=34081, + orbit=9 + }, + [2]={ + id=36643, + orbit=8 + }, + [3]={ + id=53280, + orbit=5 + }, + [4]={ + id=20437, + orbit=5 + }, + [5]={ + id=52295, + orbit=5 + }, + [6]={ + id=37604, + orbit=-6 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Martial Artist", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=15, + skill=11495 + }, + [11504]={ + connections={ + [1]={ + id=30839, + orbit=7 + }, + [2]={ + id=35696, + orbit=0 + } + }, + group=1303, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Dexterity", + orbit=2, + orbitIndex=19, + skill=11504, + stats={ + [1]="2% increased Attack Speed", + [2]="+5 to Dexterity" + } + }, + [11505]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=11505 + }, + [11509]={ + connections={ + [1]={ + id=7465, + orbit=0 + } + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=3, + orbitIndex=15, + skill=11509, + stats={ + [1]="12% increased Critical Hit Chance against Enemies that have entered your Presence Recently" + } + }, + [11525]={ + connections={ + [1]={ + id=64724, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability and Ignite Magnitude", + orbit=2, + orbitIndex=8, + skill=11525, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="8% increased Ignite Magnitude" + } + }, + [11526]={ + connections={ + [1]={ + id=38993, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Sniper", + orbit=5, + orbitIndex=30, + skill=11526, + stats={ + [1]="Arrows gain Critical Hit Chance as they travel farther, up to\n40% increased Critical Hit Chance after 7 metres" + } + }, + [11572]={ + connections={ + [1]={ + id=32923, + orbit=-7 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Arcane Surge Effect and Life Regeneration", + orbit=7, + orbitIndex=19, + skill=11572, + stats={ + [1]="5% increased Life Regeneration rate", + [2]="10% increased effect of Arcane Surge on you" + } + }, + [11578]={ + connections={ + }, + group=1048, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Spreading Shocks", + orbit=0, + orbitIndex=0, + skill=11578, + stats={ + [1]="Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius" + } + }, + [11580]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34769, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration Rate", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=13, + skill=11580, + stats={ + [1]="25% increased Life Regeneration rate" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11598]={ + connections={ + [1]={ + id=4536, + orbit=0 + }, + [2]={ + id=44516, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Speed", + orbit=0, + orbitIndex=0, + skill=11598, + stats={ + [1]="3% increased Attack Speed with Quarterstaves" + } + }, + [11604]={ + connections={ + [1]={ + id=17088, + orbit=0 + }, + [2]={ + id=29408, + orbit=0 + }, + [3]={ + id=52765, + orbit=0 + } + }, + group=1127, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=11604, + stats={ + [1]="+5 to any Attribute" + } + }, + [11641]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=45248, + orbit=0 + }, + [2]={ + id=55582, + orbit=0 + } + }, + group=414, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.png", + isNotable=true, + name="Essence of Virtue", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=11641, + stats={ + [1]="Grants Skill: Virtuous Barrier" + } + }, + [11656]={ + connections={ + [1]={ + id=53822, + orbit=0 + }, + [2]={ + id=9106, + orbit=-3 + } + }, + group=133, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=7, + orbitIndex=8, + skill=11656, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [11666]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=60708, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Reduced Movement Penalty", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=17, + skill=11666, + stats={ + [1]="6% reduced Movement Speed Penalty from using Skills while moving" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11667]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Immobilisation Buildup", + orbit=1, + orbitIndex=10, + skill=11667, + stats={ + [1]="10% increased Immobilisation buildup against Constructs" + } + }, + [11672]={ + connections={ + [1]={ + id=47177, + orbit=0 + }, + [2]={ + id=48030, + orbit=0 + } + }, + group=890, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=11672, + stats={ + [1]="+5 to any Attribute" + } + }, + [11679]={ + connections={ + [1]={ + id=29148, + orbit=0 + }, + [2]={ + id=7424, + orbit=8 + }, + [3]={ + id=61042, + orbit=0 + } + }, + group=638, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=11679, + stats={ + [1]="+5 to any Attribute" + } + }, + [11722]={ + connections={ + [1]={ + id=62431, + orbit=2 + } + }, + group=998, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Seal Generation Frequency", + orbit=2, + orbitIndex=16, + skill=11722, + stats={ + [1]="Sealed Skills have 10% increased Seal gain frequency" + } + }, + [11736]={ + connections={ + [1]={ + id=62677, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=4, + orbitIndex=36, + skill=11736, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [11741]={ + connections={ + [1]={ + id=17282, + orbit=0 + }, + [2]={ + id=31159, + orbit=0 + } + }, + group=213, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=8, + skill=11741, + stats={ + [1]="+5 to any Attribute" + } + }, + [11752]={ + connections={ + [1]={ + id=62455, + orbit=0 + }, + [2]={ + id=62258, + orbit=0 + }, + [3]={ + id=57616, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Duration", + orbit=7, + orbitIndex=2, + skill=11752, + stats={ + [1]="Banner Skills have 20% increased Duration" + } + }, + [11764]={ + connections={ + [1]={ + id=38878, + orbit=7 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Debuff Expiry", + orbit=7, + orbitIndex=11, + skill=11764, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [11771]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=52395, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=22, + skill=11771, + stats={ + [1]="4% increased Skill Speed" + } + }, + [11774]={ + connections={ + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.png", + isNotable=true, + name="The Spring Hare", + orbit=0, + orbitIndex=0, + skill=11774, + stats={ + [1]="20% chance for Damage of Enemies Hitting you to be Unlucky", + [2]="20% chance for Damage with Hits to be Lucky" + } + }, + [11776]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=37046, + orbit=6 + } + }, + group=1572, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=11776, + stats={ + [1]="15% increased Physical Damage" + } + }, + [11786]={ + connections={ + [1]={ + id=7716, + orbit=0 + } + }, + group=328, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=5, + skill=11786, + stats={ + [1]="10% increased Armour", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [11788]={ + connections={ + [1]={ + id=14355, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area Damage", + orbit=7, + orbitIndex=0, + skill=11788, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [11813]={ + connections={ + [1]={ + id=30456, + orbit=-4 + } + }, + group=1163, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=12, + skill=11813, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [11825]={ + connections={ + [1]={ + id=42794, + orbit=4 + }, + [2]={ + id=54984, + orbit=0 + }, + [3]={ + id=47374, + orbit=0 + }, + [4]={ + id=10648, + orbit=0 + } + }, + group=1286, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=11825, + stats={ + [1]="+5 to any Attribute" + } + }, + [11826]={ + connections={ + [1]={ + id=17726, + orbit=0 + } + }, + group=928, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Heavy Ammunition", + orbit=7, + orbitIndex=8, + skill=11826, + stats={ + [1]="5% reduced Attack Speed", + [2]="40% increased Projectile Damage", + [3]="40% increased Projectile Stun Buildup" + } + }, + [11836]={ + connections={ + [1]={ + id=32721, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Critical vs Blinded", + orbit=2, + orbitIndex=7, + skill=11836, + stats={ + [1]="12% increased Critical Hit Chance against Blinded Enemies" + } + }, + [11838]={ + connections={ + [1]={ + id=33112, + orbit=-4 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + isNotable=true, + name="Dreamcatcher", + orbit=7, + orbitIndex=6, + skill=11838, + stats={ + [1]="25% increased Spell Damage while on Full Energy Shield", + [2]="75% increased Energy Shield from Equipped Focus" + } + }, + [11855]={ + connections={ + [1]={ + id=30829, + orbit=0 + } + }, + group=969, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=16, + skill=11855, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [11861]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=59795, + orbit=0 + } + }, + group=694, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=1, + skill=11861, + stats={ + [1]="10% increased Spell Damage", + [2]="+10 to Strength" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [11871]={ + connections={ + [1]={ + id=47235, + orbit=0 + }, + [2]={ + id=53471, + orbit=0 + }, + [3]={ + id=24958, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Chance", + orbit=3, + orbitIndex=1, + skill=11871, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [11873]={ + connections={ + [1]={ + id=50150, + orbit=0 + }, + [2]={ + id=62677, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Mana Regeneration", + orbit=3, + orbitIndex=9, + skill=11873, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Elemental Damage" + } + }, + [11882]={ + connections={ + [1]={ + id=63888, + orbit=-5 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance", + orbit=4, + orbitIndex=3, + skill=11882, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [11886]={ + connections={ + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Mauling Stuns", + orbit=7, + orbitIndex=23, + skill=11886, + stats={ + [1]="40% increased Stun Buildup against enemies within 2 metres", + [2]="20% increased Melee Damage against Heavy Stunned enemies" + } + }, + [11916]={ + connections={ + }, + group=801, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=3, + orbitIndex=16, + skill=11916, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [11938]={ + connections={ + [1]={ + id=39964, + orbit=0 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=0, + orbitIndex=0, + skill=11938, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [11980]={ + connections={ + [1]={ + id=20504, + orbit=-5 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=4, + orbitIndex=71, + skill=11980, + stats={ + [1]="5% increased Block chance" + } + }, + [11984]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=42762, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=7, + skill=11984, + stats={ + [1]="15% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12000]={ + ascendancyName="Titan", + connections={ + }, + group=78, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.png", + isNotable=true, + name="Mysterious Lineage", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=12000, + stats={ + [1]="15% more Maximum Life" + } + }, + [12005]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=23, + skill=12005 + }, + [12033]={ + ascendancyName="Deadeye", + connections={ + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.png", + isNotable=true, + name="Endless Munitions", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=2, + orbitIndex=8, + skill=12033, + stats={ + [1]="Skills fire an additional Projectile" + } + }, + [12054]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=37523, + orbit=0 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Totem Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=12054, + stats={ + [1]="20% increased Totem Damage" + } + }, + [12066]={ + connections={ + [1]={ + id=48734, + orbit=0 + } + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Aura Magnitude", + orbit=3, + orbitIndex=8, + skill=12066, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [12078]={ + connections={ + [1]={ + id=53771, + orbit=-6 + }, + [2]={ + id=41877, + orbit=-4 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=5, + orbitIndex=39, + skill=12078, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [12116]={ + connections={ + [1]={ + id=42036, + orbit=0 + }, + [2]={ + id=52410, + orbit=0 + } + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Area", + orbit=4, + orbitIndex=22, + skill=12116, + stats={ + [1]="20% increased Parry Hit Area of Effect" + } + }, + [12120]={ + connections={ + [1]={ + id=51606, + orbit=-7 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=18, + skill=12120, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [12125]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=381, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=12125 + }, + [12166]={ + connections={ + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cast Speed with Cold Skills", + orbit=7, + orbitIndex=22, + skill=12166, + stats={ + [1]="3% increased Cast Speed with Cold Skills" + } + }, + [12169]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + [1]={ + id=60138, + orbit=0 + } + }, + group=1242, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=2, + orbitIndex=13, + skill=12169 + }, + [12174]={ + connections={ + [1]={ + id=18864, + orbit=0 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Ailment Magnitude", + orbit=2, + orbitIndex=22, + skill=12174, + stats={ + [1]="10% increased Magnitude of Ailments you inflict" + } + }, + [12183]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=16433, + orbit=0 + } + }, + group=1526, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Passive Points", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=12183, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [12189]={ + connections={ + [1]={ + id=32859, + orbit=-4 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=4, + orbitIndex=17, + skill=12189, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [12208]={ + connections={ + [1]={ + id=32813, + orbit=-7 + } + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=3, + skill=12208, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [12232]={ + connections={ + [1]={ + id=872, + orbit=0 + }, + [2]={ + id=11087, + orbit=0 + } + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.png", + name="Channelling Damage and Defences", + orbit=2, + orbitIndex=21, + skill=12232, + stats={ + [1]="Channelling Skills deal 6% increased Damage", + [2]="4% increased Armour, Evasion and Energy Shield while Channelling" + } + }, + [12239]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + [1]={ + id=39881, + orbit=0 + }, + [2]={ + id=41811, + orbit=0 + } + }, + group=1345, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=0, + orbitIndex=0, + skill=12239 + }, + [12245]={ + connections={ + [1]={ + id=13610, + orbit=0 + }, + [2]={ + id=19749, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Arsonist", + orbit=3, + orbitIndex=14, + skill=12245, + stats={ + [1]="Ignites you inflict deal Damage 18% faster" + } + }, + [12249]={ + connections={ + [1]={ + id=12761, + orbit=-3 + } + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=20, + skill=12249, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [12253]={ + connections={ + [1]={ + id=32183, + orbit=0 + }, + [2]={ + id=41017, + orbit=0 + }, + [3]={ + id=35696, + orbit=0 + }, + [4]={ + id=34497, + orbit=0 + }, + [5]={ + id=16401, + orbit=0 + }, + [6]={ + id=24656, + orbit=0 + } + }, + group=1333, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=12253, + stats={ + [1]="+5 to any Attribute" + } + }, + [12255]={ + connections={ + [1]={ + id=989, + orbit=0 + }, + [2]={ + id=27740, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=0, + skill=12255, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [12276]={ + connections={ + [1]={ + id=13980, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Aftershock Chance", + orbit=4, + orbitIndex=39, + skill=12276, + stats={ + [1]="8% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" + } + }, + [12311]={ + connections={ + [1]={ + id=64119, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=7, + orbitIndex=16, + skill=12311, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [12322]={ + connections={ + [1]={ + id=53196, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask and Charm Charges Gained", + orbit=7, + orbitIndex=8, + skill=12322, + stats={ + [1]="8% increased Flask and Charm Charges gained" + } + }, + [12324]={ + connections={ + [1]={ + id=24764, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Chance", + orbit=1, + orbitIndex=7, + skill=12324, + stats={ + [1]="5% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type" + } + }, + [12329]={ + connections={ + [1]={ + id=17523, + orbit=4 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=7, + orbitIndex=0, + skill=12329, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [12337]={ + connections={ + [1]={ + id=5295, + orbit=0 + } + }, + group=994, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Flash Storm", + orbit=0, + orbitIndex=0, + skill=12337, + stats={ + [1]="30% increased chance to Shock", + [2]="Damage Penetrates 15% Lightning Resistance" + } + }, + [12367]={ + connections={ + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=0, + skill=12367, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [12382]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + [1]={ + id=35849, + orbit=0 + } + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=11, + skill=12382 + }, + [12412]={ + connections={ + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Temporal Mastery", + orbit=1, + orbitIndex=0, + skill=12412, + stats={ + [1]="16% increased Cooldown Recovery Rate" + } + }, + [12418]={ + connections={ + [1]={ + id=51832, + orbit=0 + }, + [2]={ + id=3988, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=21, + skill=12418, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [12419]={ + connections={ + [1]={ + id=56063, + orbit=0 + } + }, + group=950, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage and Duration", + orbit=2, + orbitIndex=4, + skill=12419, + stats={ + [1]="5% increased Chaos Damage", + [2]="5% increased Skill Effect Duration" + } + }, + [12430]={ + connections={ + [1]={ + id=17584, + orbit=0 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isSwitchable=true, + name="Melee Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + id=36764, + name="Spell and Attack Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + } + }, + orbit=2, + orbitIndex=13, + skill=12430, + stats={ + [1]="10% increased Melee Damage" + } + }, + [12451]={ + connections={ + [1]={ + id=24922, + orbit=-9 + } + }, + group=1085, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=3, + orbitIndex=12, + skill=12451, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [12462]={ + connections={ + [1]={ + id=64299, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.png", + id=25740, + name="Damage", + stats={ + [1]="8% increased Damage" + } + } + }, + orbit=3, + orbitIndex=20, + skill=12462, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [12465]={ + connections={ + [1]={ + id=30040, + orbit=0 + } + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=7, + orbitIndex=14, + skill=12465, + stats={ + [1]="Break 20% increased Armour" + } + }, + [12471]={ + connections={ + [1]={ + id=19942, + orbit=0 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Attack Elemental Damage", + orbit=2, + orbitIndex=19, + skill=12471, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [12488]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=49189, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Remnant Range", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=8, + skill=12488, + stats={ + [1]="Remnants can be collected from 25% further away" + } + }, + [12498]={ + connections={ + [1]={ + id=30341, + orbit=0 + } + }, + group=1155, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Quiver Effect", + orbit=0, + orbitIndex=0, + skill=12498, + stats={ + [1]="6% increased bonuses gained from Equipped Quiver" + } + }, + [12526]={ + connections={ + [1]={ + id=54818, + orbit=-9 + } + }, + group=763, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=3, + orbitIndex=18, + skill=12526, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [12565]={ + connections={ + [1]={ + id=3245, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns and Block", + orbit=3, + orbitIndex=5, + skill=12565, + stats={ + [1]="4% increased Block chance", + [2]="10% increased Thorns damage" + } + }, + [12601]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=50908, + orbit=0 + }, + [2]={ + id=35745, + orbit=0 + } + }, + group=633, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=2, + skill=12601, + stats={ + [1]="2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12610]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=4873, + orbit=0 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=20, + skill=12610, + stats={ + [1]="Meta Skills gain 20% increased Energy" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12611]={ + connections={ + [1]={ + id=32155, + orbit=3 + }, + [2]={ + id=44204, + orbit=3 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Harness the Elements", + orbit=0, + orbitIndex=0, + skill=12611, + stats={ + [1]="20% increased Damage for each type of Elemental Ailment on Enemy" + } + }, + [12661]={ + connections={ + [1]={ + id=34984, + orbit=0 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Asceticism", + orbit=7, + orbitIndex=16, + skill=12661, + stats={ + [1]="Stun Threshold is based on 30% of your Energy Shield instead of Life" + } + }, + [12683]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=33618, + orbit=0 + }, + [2]={ + id=61974, + orbit=0 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Power of the Storm", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=4, + skill=12683, + stats={ + [1]="50% increased Damage if you've Triggered a Skill Recently" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12750]={ + connections={ + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Vale Shelter", + orbit=0, + orbitIndex=0, + skill=12750, + stats={ + [1]="Charms gain 0.15 charges per Second" + } + }, + [12751]={ + connections={ + }, + group=498, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Critical Chance", + orbit=2, + orbitIndex=15, + skill=12751, + stats={ + [1]="10% increased Critical Hit Chance with One Handed Melee Weapons" + } + }, + [12761]={ + connections={ + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=4, + skill=12761, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [12777]={ + connections={ + [1]={ + id=28950, + orbit=-8 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=23, + skill=12777, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [12778]={ + connections={ + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Spell Critical Chance", + orbit=3, + orbitIndex=8, + skill=12778, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [12786]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + [1]={ + id=5777, + orbit=0 + }, + [2]={ + id=18465, + orbit=0 + }, + [3]={ + id=64299, + orbit=0 + } + }, + group=556, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=12786 + }, + [12795]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=44871, + orbit=0 + }, + [2]={ + id=4739, + orbit=0 + } + }, + group=1529, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.png", + isMultipleChoiceOption=true, + name="Path of the Sorceress", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=12795, + stats={ + [1]="Can Allocate Passive Skills from the Sorceress's starting point", + [2]="Grants 4 Passive Skill Points" + } + }, + [12800]={ + connections={ + [1]={ + id=8896, + orbit=0 + } + }, + group=1363, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Evasion while Sprinting", + orbit=0, + orbitIndex=0, + skill=12800, + stats={ + [1]="25% increased Evasion Rating while Sprinting" + } + }, + [12817]={ + connections={ + [1]={ + id=22967, + orbit=-7 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Defences", + orbit=7, + orbitIndex=4, + skill=12817, + stats={ + [1]="25% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [12821]={ + connections={ + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=2, + orbitIndex=2, + skill=12821, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [12822]={ + connections={ + [1]={ + id=5826, + orbit=0 + } + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Adaptable Assault", + orbit=0, + orbitIndex=0, + skill=12822, + stats={ + [1]="+0.4 metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds", + [2]="Projectiles have 25% chance to Fork if you've dealt a Melee Hit in the past eight seconds" + } + }, + [12851]={ + connections={ + [1]={ + id=32507, + orbit=0 + }, + [2]={ + id=32727, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=7, + orbitIndex=5, + skill=12851, + stats={ + [1]="10% increased Physical Damage" + } + }, + [12876]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.png", + isNotable=true, + name="Faith is a Choice", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=7, + skill=12876, + stats={ + [1]="Grants Skill: Meditate" + } + }, + [12882]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=25618, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.png", + isNotable=true, + name="Tempest Caller", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=12, + skill=12882, + stats={ + [1]="Trigger Elemental Storm on Critical Hit with Spells", + [2]="Grants Skill: Elemental Storm" + } + }, + [12890]={ + connections={ + [1]={ + id=2091, + orbit=0 + }, + [2]={ + id=42118, + orbit=0 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=12890, + stats={ + [1]="+5 to any Attribute" + } + }, + [12893]={ + connections={ + [1]={ + id=65167, + orbit=3 + } + }, + group=1366, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Area Damage and Companion Area of Effect", + orbit=0, + orbitIndex=0, + skill=12893, + stats={ + [1]="6% increased Area Damage", + [2]="Companions have 10% increased Area of Effect" + } + }, + [12906]={ + connections={ + [1]={ + id=3234, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Sitting Duck", + orbit=7, + orbitIndex=20, + skill=12906, + stats={ + [1]="35% increased Critical Hit Chance against Immobilised enemies", + [2]="Your Hits cannot be Evaded by Pinned Enemies" + } + }, + [12918]={ + connections={ + [1]={ + id=4017, + orbit=0 + } + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=8, + skill=12918, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [12925]={ + connections={ + [1]={ + id=61196, + orbit=5 + } + }, + group=979, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Chance", + orbit=4, + orbitIndex=2, + skill=12925, + stats={ + [1]="15% increased chance to Shock" + } + }, + [12940]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=20637, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + isNotable=true, + name="Cower Before the First Ones", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=0, + skill=12940, + stats={ + [1]="30% increased Fire Damage", + [2]="30% increased Cold Damage", + [3]="30% increased Lightning Damage", + [4]="30% increased Chaos Damage", + [5]="30% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12964]={ + connections={ + }, + group=301, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Lone Warrior", + orbit=0, + orbitIndex=0, + skill=12964, + stats={ + [1]="Aura Skills have 14% increased Magnitudes", + [2]="Your Aura Buffs do not affect Allies" + } + }, + [12992]={ + connections={ + [1]={ + id=16485, + orbit=-2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=22, + skill=12992, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [12998]={ + connections={ + [1]={ + id=30463, + orbit=-6 + }, + [2]={ + id=28623, + orbit=0 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + isNotable=true, + name="Warm the Heart", + orbit=4, + orbitIndex=21, + skill=12998, + stats={ + [1]="25% reduced Freeze Duration on you", + [2]="60% increased Freeze Threshold" + } + }, + [13030]={ + connections={ + [1]={ + id=55, + orbit=-3 + } + }, + group=1091, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Faster Ailments", + orbit=0, + orbitIndex=0, + skill=13030, + stats={ + [1]="Damaging Ailments deal damage 5% faster" + } + }, + [13065]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=63236, + orbit=0 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Triggered Spell Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=14, + skill=13065, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [13075]={ + connections={ + [1]={ + id=50392, + orbit=0 + } + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=0, + orbitIndex=0, + skill=13075, + stats={ + [1]="+12 to Strength" + } + }, + [13081]={ + connections={ + [1]={ + id=14254, + orbit=-5 + } + }, + group=764, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=5, + orbitIndex=17, + skill=13081, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [13108]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/minionattackspeed.png", + name="Ally Attack and Cast Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=67, + skill=13108, + stats={ + [1]="3% reduced Skill Speed", + [2]="Allies in your Presence have 6% increased Attack Speed", + [3]="Allies in your Presence have 6% increased Cast Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13123]={ + connections={ + [1]={ + id=62723, + orbit=4 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=7, + orbitIndex=10, + skill=13123, + stats={ + [1]="15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [13157]={ + connections={ + [1]={ + id=30392, + orbit=3 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=3, + orbitIndex=1, + skill=13157, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [13171]={ + connections={ + [1]={ + id=24438, + orbit=5 + } + }, + group=464, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Physical Damage Reduction", + orbit=0, + orbitIndex=0, + skill=13171, + stats={ + [1]="Totems have 12% additional Physical Damage Reduction" + } + }, + [13174]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=770, + orbit=0 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.png", + isNotable=true, + name="Pyromantic Pact", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=3, + skill=13174, + stats={ + [1]="Maximum Mana is replaced by twice as much Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs", + [2]="Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum", + [3]="Lose all Infernal Flame on reaching maximum Infernal Flame", + [4]="25% of Infernal Flame lost per second if none was gained in the past 2 seconds" + } + }, + [13228]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=43486, + orbit=0 + } + }, + group=230, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=19, + skill=13228, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13233]={ + connections={ + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Radial Force", + orbit=0, + orbitIndex=0, + skill=13233, + stats={ + [1]="10% increased Area of Effect", + [2]="12% increased Immobilisation buildup" + } + }, + [13241]={ + connections={ + [1]={ + id=51921, + orbit=0 + }, + [2]={ + id=55746, + orbit=0 + }, + [3]={ + id=39732, + orbit=0 + } + }, + group=647, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=13241, + stats={ + [1]="+5 to any Attribute" + } + }, + [13279]={ + connections={ + [1]={ + id=2864, + orbit=0 + }, + [2]={ + id=61657, + orbit=0 + } + }, + group=616, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=13279, + stats={ + [1]="+5 to any Attribute" + } + }, + [13289]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + flavourText="\"And you... there was no excuse for your actions. You defiled them! You have tainted the very sands with the blood of your own! Yet the war rages on. You have achieved nothing. You must pay.\"\n\nVarashta condemned Kelari to the ritual of the {barya}, sentenced to serve as a Djinn.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.png", + isNotable=true, + name="Barya of Kelari", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=15, + skill=13289, + stats={ + [1]="Grants Skill: Kelari, the Tainted Sands" + } + }, + [13293]={ + connections={ + [1]={ + id=30457, + orbit=4 + } + }, + group=153, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=18, + skill=13293, + stats={ + [1]="20% increased Armour if you haven't been Hit Recently" + } + }, + [13294]={ + connections={ + [1]={ + id=20718, + orbit=2 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Duration", + orbit=1, + orbitIndex=7, + skill=13294, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [13307]={ + connections={ + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=4, + orbitIndex=25, + skill=13307, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [13333]={ + connections={ + [1]={ + id=1700, + orbit=7 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=1, + orbitIndex=9, + skill=13333, + stats={ + [1]="10% increased Cold Damage" + } + }, + [13341]={ + connections={ + [1]={ + id=63255, + orbit=0 + }, + [2]={ + id=56841, + orbit=0 + }, + [3]={ + id=18451, + orbit=0 + } + }, + group=999, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=4, + skill=13341, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [13352]={ + connections={ + [1]={ + id=59180, + orbit=0 + }, + [2]={ + id=38010, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation and Attack Damage", + orbit=7, + orbitIndex=19, + skill=13352, + stats={ + [1]="5% increased Attack Damage", + [2]="8% increased Glory generation" + } + }, + [13356]={ + connections={ + [1]={ + id=6229, + orbit=7 + } + }, + group=498, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=2, + orbitIndex=0, + skill=13356, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [13359]={ + connections={ + [1]={ + id=31943, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=15, + skill=13359, + stats={ + [1]="4% faster start of Energy Shield Recharge", + [2]="8% increased Elemental Damage" + } + }, + [13367]={ + connections={ + [1]={ + id=38969, + orbit=0 + }, + [2]={ + id=21713, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=14, + skill=13367, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [13379]={ + connections={ + [1]={ + id=27761, + orbit=0 + } + }, + group=1078, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Stun Threshold during Parry", + orbit=0, + orbitIndex=0, + skill=13379, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [13387]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=5, + orbitIndex=0, + skill=13387 + }, + [13397]={ + connections={ + [1]={ + id=1207, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=6, + skill=13397, + stats={ + [1]="+5 to any Attribute" + } + }, + [13407]={ + connections={ + [1]={ + id=23040, + orbit=-3 + }, + [2]={ + id=51583, + orbit=0 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Heartbreaking", + orbit=2, + orbitIndex=9, + skill=13407, + stats={ + [1]="25% increased Critical Damage Bonus", + [2]="+10 to Strength" + } + }, + [13411]={ + connections={ + [1]={ + id=34136, + orbit=7 + } + }, + group=1037, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=42, + skill=13411, + stats={ + [1]="+5 to any Attribute" + } + }, + [13419]={ + connections={ + [1]={ + id=14958, + orbit=0 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=7, + orbitIndex=14, + skill=13419, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [13425]={ + connections={ + [1]={ + id=315, + orbit=0 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Duration", + orbit=0, + orbitIndex=0, + skill=13425, + stats={ + [1]="10% increased Bleeding Duration" + } + }, + [13457]={ + connections={ + [1]={ + id=3630, + orbit=5 + }, + [2]={ + id=52445, + orbit=0 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Shadow Dancing", + orbit=4, + orbitIndex=60, + skill=13457, + stats={ + [1]="40% increased Evasion Rating if you have been Hit Recently", + [2]="40% faster start of Energy Shield Recharge if you've been Stunned Recently" + } + }, + [13468]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=51454, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + isNotable=true, + name="Give Up Your Essence", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=22, + skill=13468, + stats={ + [1]="Allies in your Presence Regenerate 2% of your Maximum Life per second", + [2]="30% increased Life Cost of Skills" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13474]={ + connections={ + [1]={ + id=16084, + orbit=0 + } + }, + group=397, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=0, + orbitIndex=0, + skill=13474, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [13482]={ + connections={ + [1]={ + id=30136, + orbit=0 + }, + [2]={ + id=15892, + orbit=0 + } + }, + group=197, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png", + isNotable=true, + name="Punctured Lung", + orbit=0, + orbitIndex=0, + skill=13482, + stats={ + [1]="Enemies you Fully Armour Break cannot Regenerate Life", + [2]="Enemies you Fully Armour Break are Maimed" + } + }, + [13489]={ + connections={ + [1]={ + id=47517, + orbit=0 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Unbreakable", + orbit=3, + orbitIndex=5, + skill=13489, + stats={ + [1]="15% increased Armour", + [2]="50% reduced Armour Break taken", + [3]="10% reduced Slowing Potency of Debuffs on You" + } + }, + [13500]={ + connections={ + [1]={ + id=41044, + orbit=-3 + }, + [2]={ + id=44733, + orbit=0 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Recoup", + orbit=3, + orbitIndex=2, + skill=13500, + stats={ + [1]="3% of Damage taken Recouped as Mana" + } + }, + [13505]={ + connections={ + [1]={ + id=4956, + orbit=0 + } + }, + group=578, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Resilient Soul", + orbit=0, + orbitIndex=0, + skill=13505, + stats={ + [1]="20% increased Life Regeneration rate", + [2]="5% of Damage taken Recouped as Life" + } + }, + [13515]={ + connections={ + [1]={ + id=14601, + orbit=0 + } + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/stormborn.png", + isNotable=true, + name="Stormwalker", + orbit=7, + orbitIndex=12, + skill=13515, + stats={ + [1]="Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground", + [2]="40% reduced effect of Shock on you" + } + }, + [13524]={ + connections={ + [1]={ + id=54923, + orbit=0 + }, + [2]={ + id=259, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Everlasting Glory", + orbit=4, + orbitIndex=27, + skill=13524, + stats={ + [1]="Skills have a 15% chance to not consume Glory" + } + }, + [13537]={ + connections={ + [1]={ + id=49455, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=10, + skill=13537, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [13542]={ + connections={ + [1]={ + id=27492, + orbit=0 + } + }, + group=835, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Loose Flesh", + orbit=0, + orbitIndex=0, + skill=13542, + stats={ + [1]="20% of Elemental Damage taken Recouped as Life" + } + }, + [13562]={ + connections={ + [1]={ + id=23650, + orbit=3 + } + }, + group=587, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration on Low Life", + orbit=7, + orbitIndex=18, + skill=13562, + stats={ + [1]="15% increased Life Regeneration Rate while on Low Life" + } + }, + [13576]={ + connections={ + [1]={ + id=17024, + orbit=0 + } + }, + group=991, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Skill Speed", + orbit=0, + orbitIndex=0, + skill=13576, + stats={ + [1]="3% increased Attack and Cast Speed with Lightning Skills" + } + }, + [13610]={ + connections={ + [1]={ + id=41447, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Faster Ignites and Flammability Magnitude", + orbit=3, + orbitIndex=11, + skill=13610, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="Ignites you inflict deal Damage 4% faster" + } + }, + [13619]={ + connections={ + [1]={ + id=12208, + orbit=0 + }, + [2]={ + id=59600, + orbit=0 + } + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charges", + orbit=7, + orbitIndex=0, + skill=13619, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [13624]={ + connections={ + [1]={ + id=28258, + orbit=-2 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Duration", + orbit=2, + orbitIndex=23, + skill=13624, + stats={ + [1]="Mark Skills have 25% increased Skill Effect Duration" + } + }, + [13634]={ + connections={ + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Duration", + orbit=2, + orbitIndex=18, + skill=13634, + stats={ + [1]="Offering Skills have 30% increased Duration" + } + }, + [13673]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=61985, + orbit=-8 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Chill Duration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=1, + skill=13673, + stats={ + [1]="25% increased Chill Duration on Enemies" + } + }, + [13691]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.png", + isOnlyImage=true, + name="Totem Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=13691, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13701]={ + connections={ + [1]={ + id=17871, + orbit=0 + }, + [2]={ + id=59538, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze and Chill Resistance", + orbit=2, + orbitIndex=2, + skill=13701, + stats={ + [1]="5% reduced Effect of Chill on you", + [2]="10% increased Freeze Threshold" + } + }, + [13708]={ + connections={ + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Curved Weapon", + orbit=4, + orbitIndex=40, + skill=13708, + stats={ + [1]="15% increased Accuracy Rating", + [2]="+10 to Dexterity" + } + }, + [13711]={ + connections={ + [1]={ + id=30562, + orbit=4 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=22, + skill=13711, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [13715]={ + ascendancyName="Titan", + connections={ + [1]={ + id=59372, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Stun Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=44, + skill=13715, + stats={ + [1]="18% increased Stun Buildup" + } + }, + [13724]={ + connections={ + [1]={ + id=20236, + orbit=0 + }, + [2]={ + id=33823, + orbit=0 + } + }, + group=1147, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Deadly Force", + orbit=4, + orbitIndex=54, + skill=13724, + stats={ + [1]="15% increased Damage if you've dealt a Critical Hit in the past 8 seconds", + [2]="15% increased Critical Hit Chance" + } + }, + [13738]={ + connections={ + }, + group=974, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Lightning Quick", + orbit=0, + orbitIndex=0, + skill=13738, + stats={ + [1]="14% increased Lightning Damage", + [2]="8% increased Attack and Cast Speed with Lightning Skills" + } + }, + [13748]={ + connections={ + [1]={ + id=38338, + orbit=-6 + }, + [2]={ + id=41029, + orbit=9 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=0, + skill=13748, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [13769]={ + connections={ + [1]={ + id=2254, + orbit=-4 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=8, + skill=13769, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [13772]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=39, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.png", + isNotable=true, + name="Flowing Metal", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=13772, + stats={ + [1]="Body Armour grants +50% of Armour also applies to Elemental Damage" + } + }, + [13777]={ + connections={ + [1]={ + id=38532, + orbit=0 + } + }, + group=210, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Power Charge Duration and Energy Shield", + orbit=2, + orbitIndex=15, + skill=13777, + stats={ + [1]="10% increased Power Charge Duration", + [2]="10% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [13783]={ + connections={ + [1]={ + id=28992, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png", + isSwitchable=true, + name="Ailment Chance", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + id=53191, + name="Accuracy", + stats={ + [1]="8% increased Accuracy Rating" + } + } + }, + orbit=7, + orbitIndex=19, + skill=13783, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [13799]={ + connections={ + [1]={ + id=36576, + orbit=-3 + } + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage and Slow Effect", + orbit=2, + orbitIndex=20, + skill=13799, + stats={ + [1]="8% increased Attack Damage", + [2]="Debuffs you inflict have 4% increased Slow Magnitude" + } + }, + [13823]={ + connections={ + [1]={ + id=63861, + orbit=0 + }, + [2]={ + id=32054, + orbit=0 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + isNotable=true, + name="Controlling Magic", + orbit=3, + orbitIndex=13, + skill=13823, + stats={ + [1]="25% increased Critical Hit Chance for Spells", + [2]="Hits have 25% reduced Critical Hit Chance against you" + } + }, + [13828]={ + connections={ + [1]={ + id=1140, + orbit=0 + } + }, + group=880, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=0, + orbitIndex=0, + skill=13828, + stats={ + [1]="+16 to Evasion Rating" + } + }, + [13839]={ + connections={ + [1]={ + id=65287, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=5, + orbitIndex=6, + skill=13839, + stats={ + [1]="15% increased Totem Damage" + } + }, + [13845]={ + connections={ + [1]={ + id=28408, + orbit=-7 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=0, + orbitIndex=0, + skill=13845, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [13855]={ + connections={ + [1]={ + id=50626, + orbit=0 + }, + [2]={ + id=64370, + orbit=0 + } + }, + group=705, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=0, + orbitIndex=0, + skill=13855, + stats={ + [1]="+10 to Armour", + [2]="+5 to maximum Energy Shield" + } + }, + [13856]={ + connections={ + [1]={ + id=18496, + orbit=0 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Ailment Effect", + orbit=7, + orbitIndex=9, + skill=13856, + stats={ + [1]="12% increased Magnitude of Ailments you inflict" + } + }, + [13862]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=13862 + }, + [13882]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern.png", + connections={ + }, + group=737, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=13882 + }, + [13893]={ + connections={ + [1]={ + id=42390, + orbit=-5 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration and Stun Buildup", + orbit=7, + orbitIndex=5, + skill=13893, + stats={ + [1]="10% increased Stun Buildup", + [2]="Damage Penetrates 5% Fire Resistance" + } + }, + [13895]={ + connections={ + [1]={ + id=36071, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.png", + isNotable=true, + name="Precise Point", + orbit=5, + orbitIndex=10, + skill=13895, + stats={ + [1]="25% increased Damage with Spears", + [2]="25% increased Accuracy Rating with Spears" + } + }, + [13909]={ + connections={ + [1]={ + id=31037, + orbit=0 + }, + [2]={ + id=62679, + orbit=0 + } + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=18, + skill=13909, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [13937]={ + connections={ + [1]={ + id=17791, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Damage", + orbit=7, + orbitIndex=7, + skill=13937, + stats={ + [1]="14% increased Damage with Maces" + } + }, + [13942]={ + connections={ + [1]={ + id=65023, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=3, + skill=13942, + stats={ + [1]="15% increased Armour" + } + }, + [13950]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11666, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Reduced Movement Penalty", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=5, + skill=13950, + stats={ + [1]="6% reduced Movement Speed Penalty from using Skills while moving" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13980]={ + connections={ + [1]={ + id=14832, + orbit=0 + }, + [2]={ + id=14693, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Split the Earth", + orbit=4, + orbitIndex=33, + skill=13980, + stats={ + [1]="10% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + [2]="Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage" + } + }, + [13987]={ + connections={ + [1]={ + id=7604, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Attack Speed", + orbit=2, + orbitIndex=8, + skill=13987, + stats={ + [1]="3% increased Melee Attack Speed" + } + }, + [14001]={ + connections={ + [1]={ + id=56893, + orbit=-3 + } + }, + group=1262, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges Used", + orbit=2, + orbitIndex=22, + skill=14001, + stats={ + [1]="6% reduced Charm Charges used" + } + }, + [14026]={ + connections={ + }, + group=146, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage against Immobilised", + orbit=0, + orbitIndex=0, + skill=14026, + stats={ + [1]="20% increased Damage against Immobilised Enemies while Shapeshifted" + } + }, + [14033]={ + connections={ + [1]={ + id=34553, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Spell and Minion Damage", + orbit=2, + orbitIndex=16, + skill=14033, + stats={ + [1]="10% increased Spell Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [14045]={ + connections={ + [1]={ + id=33848, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=5, + orbitIndex=48, + skill=14045, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [14048]={ + connections={ + [1]={ + id=34717, + orbit=7 + } + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration while not on Low Mana", + orbit=4, + orbitIndex=54, + skill=14048, + stats={ + [1]="16% increased Mana Regeneration Rate while not on Low Mana" + } + }, + [14082]={ + connections={ + [1]={ + id=43964, + orbit=0 + } + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=7, + orbitIndex=8, + skill=14082, + stats={ + [1]="10% increased Physical Damage" + } + }, + [14091]={ + connections={ + [1]={ + id=28860, + orbit=0 + }, + [2]={ + id=36449, + orbit=0 + }, + [3]={ + id=23993, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break and Physical Damage", + orbit=1, + orbitIndex=0, + skill=14091, + stats={ + [1]="Break 10% increased Armour", + [2]="6% increased Physical Damage" + } + }, + [14096]={ + connections={ + [1]={ + id=44293, + orbit=7 + } + }, + group=660, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=14, + skill=14096, + stats={ + [1]="3% increased Cast Speed" + } + }, + [14110]={ + connections={ + [1]={ + id=22484, + orbit=-4 + }, + [2]={ + id=35974, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=3, + orbitIndex=22, + skill=14110, + stats={ + [1]="15% increased Totem Damage" + } + }, + [14113]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + [1]={ + id=10029, + orbit=0 + }, + [2]={ + id=8660, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=14113 + }, + [14127]={ + connections={ + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Duration", + orbit=2, + orbitIndex=13, + skill=14127, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [14131]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=34207, + orbit=0 + } + }, + flavourText="\"Yes... they fell by my blade and fire lashed them for their betrayal! No {dekhara} is exempt from fighting back the Winter before us, lest they too know the Doom of the Desert!\"\n\nRuzhan fumed at Varashta, in pure defiance.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.png", + isNotable=true, + name="Ruzhan's Fury", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=53, + skill=14131, + stats={ + [1]="Grants Skill: Ruzhan's Fury" + } + }, + [14176]={ + connections={ + [1]={ + id=18004, + orbit=0 + } + }, + group=321, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Later Rage Loss Start", + orbit=2, + orbitIndex=16, + skill=14176, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [14205]={ + connections={ + [1]={ + id=25753, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Ignite", + orbit=1, + orbitIndex=1, + skill=14205, + stats={ + [1]="Gain 1 Rage when your Hit Ignites a target" + } + }, + [14211]={ + connections={ + [1]={ + id=44540, + orbit=0 + } + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/Trap.png", + isNotable=true, + name="Shredding Contraptions", + orbit=1, + orbitIndex=10, + skill=14211, + stats={ + [1]="Enemies affected by your Hazards Recently have 25% reduced Armour", + [2]="Enemies affected by your Hazards Recently have 25% reduced Evasion Rating" + } + }, + [14226]={ + connections={ + }, + flavourText="You circle the black scorpion with enmity, daring it time and again.", + group=1398, + icon="Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.png", + isKeystone=true, + name="Dance with Death", + orbit=0, + orbitIndex=0, + skill=14226, + stats={ + [1]="25% more Skill Speed while Off Hand is empty and you have\na One-Handed Martial Weapon equipped in your Main Hand" + } + }, + [14231]={ + connections={ + [1]={ + id=40453, + orbit=-7 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=13, + skill=14231, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [14254]={ + connections={ + [1]={ + id=97, + orbit=0 + } + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=4, + skill=14254, + stats={ + [1]="3% increased Attack Speed" + } + }, + [14258]={ + connections={ + [1]={ + id=13123, + orbit=-7 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNoteble.png", + isNotable=true, + name="Puppet Master chance", + orbit=2, + orbitIndex=3, + skill=14258, + stats={ + [1]="35% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [14262]={ + connections={ + [1]={ + id=32763, + orbit=0 + }, + [2]={ + id=21945, + orbit=0 + } + }, + group=1441, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14262, + stats={ + [1]="+5 to any Attribute" + } + }, + [14267]={ + connections={ + [1]={ + id=32763, + orbit=0 + }, + [2]={ + id=28976, + orbit=0 + }, + [3]={ + id=38212, + orbit=0 + }, + [4]={ + id=1499, + orbit=0 + } + }, + group=1463, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14267, + stats={ + [1]="+5 to any Attribute" + } + }, + [14272]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + connections={ + }, + group=1178, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=2, + orbitIndex=7, + skill=14272 + }, + [14294]={ + connections={ + [1]={ + id=43818, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + isNotable=true, + name="Sacrificial Blood", + orbit=2, + orbitIndex=14, + skill=14294, + stats={ + [1]="15% increased Life Cost of Skills", + [2]="40% increased Spell Damage with Spells that cost Life" + } + }, + [14324]={ + connections={ + [1]={ + id=1468, + orbit=-2 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Arcane Blossom", + orbit=7, + orbitIndex=3, + skill=14324, + stats={ + [1]="15% increased Mana Recovery rate" + } + }, + [14328]={ + connections={ + [1]={ + id=18959, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Energy Shield and Armour applies to Elemental Damage Hits", + orbit=7, + orbitIndex=19, + skill=14328, + stats={ + [1]="12% increased maximum Energy Shield", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [14340]={ + connections={ + [1]={ + id=26786, + orbit=0 + }, + [2]={ + id=26319, + orbit=0 + } + }, + group=905, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14340, + stats={ + [1]="+5 to any Attribute" + } + }, + [14342]={ + connections={ + [1]={ + id=49256, + orbit=4 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=16, + skill=14342, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [14343]={ + connections={ + }, + group=1086, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Deterioration", + orbit=0, + orbitIndex=0, + skill=14343, + stats={ + [1]="Damaging Ailments Cannot Be inflicted on you while you already have one", + [2]="20% increased Magnitude of Damaging Ailments you inflict" + } + }, + [14355]={ + connections={ + [1]={ + id=8483, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area Damage", + orbit=7, + orbitIndex=3, + skill=14355, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [14363]={ + connections={ + [1]={ + id=61338, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=3, + orbitIndex=2, + skill=14363, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [14383]={ + connections={ + [1]={ + id=46601, + orbit=0 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + isNotable=true, + name="Suffusion", + orbit=0, + orbitIndex=0, + skill=14383, + stats={ + [1]="30% increased amount of Mana Leeched", + [2]="Unaffected by Chill while Leeching Mana" + } + }, + [14394]={ + connections={ + [1]={ + id=35743, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=16, + skill=14394, + stats={ + [1]="+2% to Lightning Resistance", + [2]="8% increased Armour and Evasion Rating" + } + }, + [14418]={ + connections={ + [1]={ + id=16602, + orbit=0 + } + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png", + name="Evasion", + orbit=7, + orbitIndex=6, + skill=14418, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [14428]={ + connections={ + [1]={ + id=6287, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=3, + orbitIndex=14, + skill=14428, + stats={ + [1]="+8 to Intelligence" + } + }, + [14429]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=393, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.png", + isNotable=true, + name="Advanced Thaumaturgy", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=14429, + stats={ + [1]="Gem Quality grants Socketed Skills an additional effect" + } + }, + [14432]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=113, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png", + isNotable=true, + name="Lunar Boon", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=14432, + stats={ + [1]="40% increased Mana Regeneration Rate while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [14439]={ + connections={ + [1]={ + id=5728, + orbit=3 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=8, + skill=14439, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [14446]={ + connections={ + [1]={ + id=61403, + orbit=0 + }, + [2]={ + id=22713, + orbit=0 + }, + [3]={ + id=58022, + orbit=9 + }, + [4]={ + id=45702, + orbit=0 + } + }, + group=1285, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14446, + stats={ + [1]="+5 to any Attribute" + } + }, + [14459]={ + connections={ + [1]={ + id=5544, + orbit=3 + } + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorn Critical Damage", + orbit=2, + orbitIndex=2, + skill=14459, + stats={ + [1]="30% increased Thorns Critical Damage Bonus" + } + }, + [14505]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=14505 + }, + [14508]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=29074, + orbit=0 + } + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Poison Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=29, + skill=14508, + stats={ + [1]="12% increased Magnitude of Poison you inflict" + } + }, + [14509]={ + connections={ + [1]={ + id=9323, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Rage on Melee Hit", + orbit=3, + orbitIndex=1, + skill=14509, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [14511]={ + connections={ + [1]={ + id=18207, + orbit=-3 + }, + [2]={ + id=53719, + orbit=0 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee and Stun", + orbit=4, + orbitIndex=15, + skill=14511, + stats={ + [1]="10% increased Stun Buildup", + [2]="10% increased Melee Damage" + } + }, + [14515]={ + connections={ + [1]={ + id=43778, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/icongroundslam.png", + name="Jagged Ground Effect", + orbit=3, + orbitIndex=8, + skill=14515, + stats={ + [1]="15% increased Magnitude of Jagged Ground you create" + } + }, + [14539]={ + connections={ + [1]={ + id=44776, + orbit=5 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Deflection and Evasion", + orbit=7, + orbitIndex=4, + skill=14539, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [14540]={ + connections={ + [1]={ + id=31903, + orbit=0 + } + }, + flavourText="Stand your ground, child, keep your senses.\nThe pain is fleeting, but victory is forever.", + group=459, + icon="Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", + isKeystone=true, + name="Unwavering Stance", + orbit=0, + orbitIndex=0, + skill=14540, + stats={ + [1]="Cannot be Light Stunned\nCannot Dodge Roll or Sprint" + } + }, + [14548]={ + connections={ + [1]={ + id=59541, + orbit=7 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=7, + orbitIndex=0, + skill=14548, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [14572]={ + connections={ + [1]={ + id=49657, + orbit=-6 + }, + [2]={ + id=11037, + orbit=0 + } + }, + group=765, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=3, + orbitIndex=8, + skill=14572, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [14575]={ + connections={ + }, + group=604, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.png", + name="Minion Lightning Resistance", + orbit=0, + orbitIndex=0, + skill=14575, + stats={ + [1]="Minions have +20% to Lightning Resistance", + [2]="Minions have +3% to Maximum Lightning Resistances" + } + }, + [14598]={ + connections={ + [1]={ + id=4345, + orbit=0 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png", + name="Minion Damage and Command Speed", + orbit=3, + orbitIndex=12, + skill=14598, + stats={ + [1]="Minions deal 6% increased Damage", + [2]="Minions have 8% increased Cooldown Recovery Rate for Command Skills" + } + }, + [14601]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=7, + orbitIndex=0, + skill=14601 + }, + [14602]={ + connections={ + [1]={ + id=42737, + orbit=0 + } + }, + group=568, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Specialised Shots", + orbit=7, + orbitIndex=3, + skill=14602, + stats={ + [1]="15% increased Bolt Speed", + [2]="20% increased Damage with Crossbows" + } + }, + [14654]={ + connections={ + [1]={ + id=22616, + orbit=0 + }, + [2]={ + id=14459, + orbit=0 + }, + [3]={ + id=21017, + orbit=0 + }, + [4]={ + id=52807, + orbit=0 + }, + [5]={ + id=58295, + orbit=0 + }, + [6]={ + id=6222, + orbit=0 + } + }, + group=338, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14654, + stats={ + [1]="+5 to any Attribute" + } + }, + [14655]={ + connections={ + [1]={ + id=372, + orbit=7 + } + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Fire Damage", + orbit=3, + orbitIndex=3, + skill=14655, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Fire Damage" + } + }, + [14658]={ + connections={ + [1]={ + id=12253, + orbit=0 + }, + [2]={ + id=22517, + orbit=0 + }, + [3]={ + id=52053, + orbit=0 + }, + [4]={ + id=1631, + orbit=0 + }, + [5]={ + id=57945, + orbit=0 + } + }, + group=1282, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14658, + stats={ + [1]="+5 to any Attribute" + } + }, + [14666]={ + connections={ + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=3, + orbitIndex=18, + skill=14666, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [14686]={ + connections={ + [1]={ + id=48552, + orbit=0 + }, + [2]={ + id=53795, + orbit=-3 + } + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=7, + orbitIndex=17, + skill=14686, + stats={ + [1]="15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [14693]={ + connections={ + [1]={ + id=13937, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Damage", + orbit=4, + orbitIndex=27, + skill=14693, + stats={ + [1]="14% increased Damage with Maces" + } + }, + [14712]={ + connections={ + [1]={ + id=3866, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=2, + skill=14712, + stats={ + [1]="Minions have 12% increased maximum Life" + } + }, + [14724]={ + connections={ + [1]={ + id=62185, + orbit=0 + } + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Duration", + orbit=0, + orbitIndex=0, + skill=14724, + stats={ + [1]="20% increased Shock Duration" + } + }, + [14725]={ + connections={ + [1]={ + id=49220, + orbit=-5 + }, + [2]={ + id=34233, + orbit=0 + } + }, + group=983, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + name="Skill Speed", + orbit=2, + orbitIndex=18, + skill=14725, + stats={ + [1]="3% increased Skill Speed" + } + }, + [14739]={ + connections={ + [1]={ + id=49235, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=3, + skill=14739, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [14761]={ + connections={ + [1]={ + id=45215, + orbit=0 + }, + [2]={ + id=57775, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Warlord Leader", + orbit=2, + orbitIndex=6, + skill=14761, + stats={ + [1]="Allies in your Presence deal 40% increased Damage", + [2]="40% increased Presence Area of Effect" + } + }, + [14769]={ + connections={ + [1]={ + id=40471, + orbit=-2 + } + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.png", + name="Dexterity", + orbit=7, + orbitIndex=20, + skill=14769, + stats={ + [1]="+8 to Dexterity" + } + }, + [14777]={ + connections={ + [1]={ + id=59466, + orbit=5 + }, + [2]={ + id=20015, + orbit=0 + } + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Bravado", + orbit=2, + orbitIndex=20, + skill=14777, + stats={ + [1]="Empowered Attacks have 50% increased Stun Buildup", + [2]="100% increased Stun Threshold during Empowered Attacks" + } + }, + [14832]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + connections={ + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + isOnlyImage=true, + name="Mace Mastery", + orbit=0, + orbitIndex=0, + skill=14832 + }, + [14882]={ + connections={ + [1]={ + id=5048, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=7, + orbitIndex=18, + skill=14882, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [14890]={ + connections={ + [1]={ + id=21080, + orbit=-4 + } + }, + group=1089, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Chill Magnitude and Duration", + orbit=2, + orbitIndex=13, + skill=14890, + stats={ + [1]="10% increased Chill Duration on Enemies", + [2]="10% increased Magnitude of Chill you inflict" + } + }, + [14923]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=14923 + }, + [14926]={ + connections={ + [1]={ + id=50609, + orbit=0 + }, + [2]={ + id=56910, + orbit=-6 + } + }, + group=801, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=3, + orbitIndex=20, + skill=14926, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [14934]={ + connections={ + [1]={ + id=32523, + orbit=0 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Spiral into Mania", + orbit=2, + orbitIndex=4, + skill=14934, + stats={ + [1]="10% increased Cast Speed", + [2]="+13% to Chaos Resistance" + } + }, + [14945]={ + connections={ + [1]={ + id=34552, + orbit=0 + }, + [2]={ + id=1447, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Growing Swarm", + orbit=3, + orbitIndex=16, + skill=14945, + stats={ + [1]="Minions have 20% increased Area of Effect", + [2]="Minions have 20% increased Cooldown Recovery Rate" + } + }, + [14952]={ + connections={ + [1]={ + id=21985, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Skill Effect Duration", + orbit=7, + orbitIndex=8, + skill=14952, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [14958]={ + connections={ + [1]={ + id=17548, + orbit=0 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=1, + orbitIndex=10, + skill=14958, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [14960]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=57959, + orbit=0 + } + }, + group=10, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png", + name="Fire Resistance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=14960, + stats={ + [1]="+8% to Fire Resistance" + } + }, + [14980]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=14980, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [14996]={ + connections={ + [1]={ + id=41620, + orbit=-7 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Stun Buildup", + orbit=7, + orbitIndex=2, + skill=14996, + stats={ + [1]="20% increased Stun buildup if you have Shapeshifted to an Animal form Recently" + } + }, + [14997]={ + connections={ + [1]={ + id=47856, + orbit=0 + }, + [2]={ + id=28370, + orbit=0 + } + }, + group=756, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=0, + orbitIndex=0, + skill=14997, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [15030]={ + connections={ + [1]={ + id=45693, + orbit=0 + }, + [2]={ + id=21324, + orbit=0 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Consistent Intake", + orbit=7, + orbitIndex=5, + skill=15030, + stats={ + [1]="15% increased Parried Debuff Magnitude", + [2]="Cannot be Critically Hit while Parrying" + } + }, + [15044]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=32560, + orbit=0 + }, + [2]={ + id=42845, + orbit=0 + } + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.png", + isNotable=true, + name="A Solid Plan", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=15044, + stats={ + [1]="Persistent Buffs have 50% less Reservation" + } + }, + [15083]={ + connections={ + }, + group=844, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Power Conduction", + orbit=0, + orbitIndex=0, + skill=15083, + stats={ + [1]="25% increased Shock Duration", + [2]="25% increased Magnitude of Shock you inflict" + } + }, + [15114]={ + connections={ + [1]={ + id=6356, + orbit=5 + }, + [2]={ + id=71, + orbit=-5 + }, + [3]={ + id=7642, + orbit=0 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Boundless Growth", + orbit=0, + orbitIndex=0, + skill=15114, + stats={ + [1]="Plants have a 20% chance to immediately Overgrow" + } + }, + [15141]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Impale Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=63, + skill=15141, + stats={ + [1]="30% chance to Impale on Spell Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [15180]={ + connections={ + [1]={ + id=61444, + orbit=-2 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Hinder", + orbit=2, + orbitIndex=3, + skill=15180, + stats={ + [1]="10% chance to Hinder Enemies on Hit with Spells" + } + }, + [15182]={ + connections={ + [1]={ + id=54818, + orbit=0 + } + }, + group=741, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15182, + stats={ + [1]="+5 to any Attribute" + } + }, + [15194]={ + connections={ + [1]={ + id=25303, + orbit=0 + } + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.png", + name="Minion Fire Resistance", + orbit=0, + orbitIndex=0, + skill=15194, + stats={ + [1]="Minions have +20% to Fire Resistance" + } + }, + [15207]={ + connections={ + [1]={ + id=6330, + orbit=0 + } + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Damage", + orbit=7, + orbitIndex=0, + skill=15207, + stats={ + [1]="8% increased Attack Damage", + [2]="8% increased Accuracy Rating" + } + }, + [15247]={ + connections={ + [1]={ + id=46683, + orbit=0 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=3, + orbitIndex=7, + skill=15247, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [15270]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=15270 + }, + [15275]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=52374, + orbit=-6 + } + }, + group=7, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=15275, + stats={ + [1]="Spells Cast by Totems have 5% increased Cast Speed", + [2]="Attacks used by Totems have 5% increased Attack Speed" + } + }, + [15301]={ + connections={ + [1]={ + id=4709, + orbit=0 + }, + [2]={ + id=64064, + orbit=0 + } + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=13, + skill=15301, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [15304]={ + connections={ + [1]={ + id=16466, + orbit=0 + } + }, + group=1151, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=14, + skill=15304, + stats={ + [1]="3% increased Cast Speed" + } + }, + [15343]={ + connections={ + [1]={ + id=58692, + orbit=5 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=5, + orbitIndex=12, + skill=15343, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [15356]={ + connections={ + [1]={ + id=18815, + orbit=0 + } + }, + group=1394, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=15356, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [15358]={ + connections={ + [1]={ + id=10320, + orbit=7 + }, + [2]={ + id=44255, + orbit=-7 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Minion Revive Speed", + orbit=3, + orbitIndex=15, + skill=15358, + stats={ + [1]="Minions have 10% increased maximum Life", + [2]="Minions Revive 8% faster" + } + }, + [15374]={ + connections={ + [1]={ + id=48035, + orbit=0 + } + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Hale Heart", + orbit=0, + orbitIndex=0, + skill=15374, + stats={ + [1]="15% increased Life Recovery rate" + } + }, + [15408]={ + connections={ + [1]={ + id=2254, + orbit=4 + }, + [2]={ + id=6338, + orbit=0 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=2, + orbitIndex=23, + skill=15408, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [15424]={ + connections={ + [1]={ + id=58157, + orbit=0 + }, + [2]={ + id=35151, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + name="Stun Threshold", + orbit=2, + orbitIndex=20, + skill=15424, + stats={ + [1]="15% increased Stun Threshold" + } + }, + [15427]={ + connections={ + [1]={ + id=57379, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=6, + skill=15427, + stats={ + [1]="12% increased Melee Damage" + } + }, + [15443]={ + connections={ + }, + group=1052, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Endured Suffering", + orbit=0, + orbitIndex=0, + skill=15443, + stats={ + [1]="10% of Physical Damage taken Recouped as Life", + [2]="20% increased Physical Damage" + } + }, + [15494]={ + connections={ + [1]={ + id=1865, + orbit=0 + }, + [2]={ + id=43584, + orbit=0 + } + }, + group=619, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Fire Damage when consuming an Endurance Charge", + orbit=2, + orbitIndex=20, + skill=15494, + stats={ + [1]="3% increased Fire Damage per Endurance Charge consumed Recently" + } + }, + [15507]={ + connections={ + [1]={ + id=48401, + orbit=0 + } + }, + group=892, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=10, + skill=15507, + stats={ + [1]="+5 to any Attribute" + } + }, + [15522]={ + connections={ + [1]={ + id=17348, + orbit=6 + }, + [2]={ + id=24630, + orbit=-6 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=3, + orbitIndex=21, + skill=15522, + stats={ + [1]="12% increased Ignite Magnitude" + } + }, + [15580]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=61977, + orbit=0 + } + }, + group=366, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=48, + skill=15580, + stats={ + [1]="15% increased Damage", + [2]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [15590]={ + connections={ + [1]={ + id=26356, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Detonator Area", + orbit=7, + orbitIndex=17, + skill=15590, + stats={ + [1]="Detonator skills have 8% increased Area of Effect" + } + }, + [15606]={ + connections={ + [1]={ + id=41821, + orbit=0 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Thrill of the Fight", + orbit=4, + orbitIndex=30, + skill=15606, + stats={ + [1]="Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%" + } + }, + [15617]={ + connections={ + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Heavy Drinker", + orbit=0, + orbitIndex=0, + skill=15617, + stats={ + [1]="20% increased Life Recovery from Flasks", + [2]="Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply" + } + }, + [15618]={ + connections={ + [1]={ + id=57710, + orbit=0 + } + }, + group=778, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + name="Spell Critical Damage", + orbit=3, + orbitIndex=0, + skill=15618, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [15625]={ + connections={ + [1]={ + id=65161, + orbit=0 + }, + [2]={ + id=24287, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Evasion", + orbit=2, + orbitIndex=12, + skill=15625, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [15628]={ + connections={ + [1]={ + id=36880, + orbit=3 + } + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge Effect", + orbit=5, + orbitIndex=59, + skill=15628, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [15644]={ + connections={ + [1]={ + id=41538, + orbit=6 + }, + [2]={ + id=44612, + orbit=0 + } + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + isNotable=true, + name="Shedding Skin", + orbit=3, + orbitIndex=10, + skill=15644, + stats={ + [1]="40% increased Elemental Ailment Threshold", + [2]="10% reduced Duration of Ailments on You" + } + }, + [15672]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=45400, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Elemental Resistance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=5, + skill=15672, + stats={ + [1]="Totems gain +2% to all Maximum Elemental Resistances" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [15698]={ + connections={ + [1]={ + id=55260, + orbit=0 + }, + [2]={ + id=28982, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=3, + skill=15698, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [15775]={ + connections={ + [1]={ + id=30808, + orbit=0 + }, + [2]={ + id=11598, + orbit=0 + }, + [3]={ + id=29959, + orbit=0 + }, + [4]={ + id=15343, + orbit=-5 + } + }, + group=1445, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15775, + stats={ + [1]="+5 to any Attribute" + } + }, + [15782]={ + connections={ + [1]={ + id=1433, + orbit=0 + }, + [2]={ + id=46628, + orbit=0 + }, + [3]={ + id=53675, + orbit=0 + } + }, + group=444, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15782, + stats={ + [1]="+5 to any Attribute" + } + }, + [15801]={ + connections={ + }, + group=629, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=0, + orbitIndex=0, + skill=15801, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [15809]={ + connections={ + [1]={ + id=31175, + orbit=0 + }, + [2]={ + id=26945, + orbit=7 + }, + [3]={ + id=18485, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Critical Chance", + orbit=3, + orbitIndex=22, + skill=15809, + stats={ + [1]="Minions have 20% increased Critical Hit Chance" + } + }, + [15814]={ + connections={ + [1]={ + id=12800, + orbit=0 + } + }, + group=1375, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Evasion while Sprinting", + orbit=0, + orbitIndex=0, + skill=15814, + stats={ + [1]="25% increased Evasion Rating while Sprinting" + } + }, + [15825]={ + connections={ + [1]={ + id=26592, + orbit=-3 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + isNotable=true, + name="Bhatair's Storm", + orbit=2, + orbitIndex=16, + skill=15825, + stats={ + [1]="+12% of Armour also applies to Elemental Damage", + [2]="8% faster start of Energy Shield Recharge", + [3]="Archon recovery period expires 10% faster", + [4]="10% increased effect of Archon Buffs on you" + } + }, + [15829]={ + connections={ + [1]={ + id=46146, + orbit=0 + } + }, + group=1088, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + isNotable=true, + name="Siphon", + orbit=0, + orbitIndex=0, + skill=15829, + stats={ + [1]="Recover 2% of maximum Mana on Kill", + [2]="25% increased amount of Mana Leeched" + } + }, + [15838]={ + connections={ + [1]={ + id=15969, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Ailment Chance", + orbit=4, + orbitIndex=2, + skill=15838, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [15839]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Ailment Duration", + orbit=1, + orbitIndex=5, + skill=15839, + stats={ + [1]="10% increased Duration of Ailments on Beasts" + } + }, + [15842]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=88, + icon="", + isOnlyImage=true, + name="Minion Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=10, + skill=15842, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [15855]={ + connections={ + [1]={ + id=37963, + orbit=0 + } + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=5, + orbitIndex=41, + skill=15855, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [15876]={ + connections={ + [1]={ + id=7947, + orbit=2 + }, + [2]={ + id=46554, + orbit=0 + } + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Energy Shield as Freeze Threshold", + orbit=2, + orbitIndex=10, + skill=15876, + stats={ + [1]="Gain 15% of maximum Energy Shield as additional Freeze Threshold" + } + }, + [15885]={ + connections={ + [1]={ + id=12367, + orbit=3 + }, + [2]={ + id=22783, + orbit=0 + }, + [3]={ + id=11679, + orbit=0 + }, + [4]={ + id=42680, + orbit=0 + } + }, + group=690, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15885, + stats={ + [1]="+5 to any Attribute" + } + }, + [15892]={ + connections={ + }, + group=183, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Damage vs Armour Broken Enemies", + orbit=3, + orbitIndex=13, + skill=15892, + stats={ + [1]="20% increased Damage against Enemies with Fully Broken Armour" + } + }, + [15899]={ + connections={ + [1]={ + id=21627, + orbit=9 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=2, + orbitIndex=6, + skill=15899, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [15913]={ + connections={ + [1]={ + id=32599, + orbit=2 + }, + [2]={ + id=61362, + orbit=-2 + }, + [3]={ + id=49734, + orbit=0 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area of Effect and Damage", + orbit=2, + orbitIndex=16, + skill=15913, + stats={ + [1]="4% increased Area of Effect", + [2]="5% increased Area Damage" + } + }, + [15969]={ + connections={ + [1]={ + id=41129, + orbit=0 + }, + [2]={ + id=59376, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Damage against Ailments", + orbit=3, + orbitIndex=0, + skill=15969, + stats={ + [1]="12% increased Damage with Hits against Enemies affected by Elemental Ailments" + } + }, + [15975]={ + connections={ + [1]={ + id=48198, + orbit=5 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=13, + skill=15975, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [15984]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=838, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCast.png", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=15984 + }, + [15986]={ + connections={ + [1]={ + id=6030, + orbit=0 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Building Toxins", + orbit=2, + orbitIndex=5, + skill=15986, + stats={ + [1]="25% reduced Poison Duration", + [2]="Targets can be affected by +1 of your Poisons at the same time" + } + }, + [15991]={ + connections={ + [1]={ + id=15984, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Embodiment of Lightning", + orbit=2, + orbitIndex=19, + skill=15991, + stats={ + [1]="Immune to Shock while affected by an Archon Buff" + } + }, + [16013]={ + connections={ + [1]={ + id=41811, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze on Hit", + orbit=7, + orbitIndex=6, + skill=16013, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [16024]={ + connections={ + [1]={ + id=29288, + orbit=2 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Critical Damage", + orbit=2, + orbitIndex=22, + skill=16024, + stats={ + [1]="Invocation Spells have 20% increased Critical Damage Bonus" + } + }, + [16051]={ + connections={ + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Attack Speed", + orbit=5, + orbitIndex=4, + skill=16051, + stats={ + [1]="Attacks used by Totems have 4% increased Attack Speed" + } + }, + [16084]={ + connections={ + [1]={ + id=57552, + orbit=0 + } + }, + group=396, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=0, + orbitIndex=0, + skill=16084, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [16090]={ + connections={ + [1]={ + id=50302, + orbit=0 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs", + orbit=3, + orbitIndex=8, + skill=16090, + stats={ + [1]="6% of Skill Mana Costs Converted to Life Costs" + } + }, + [16100]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=65173, + orbit=7 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=0, + skill=16100, + stats={ + [1]="20% increased Evasion Rating" + } + }, + [16111]={ + connections={ + [1]={ + id=46268, + orbit=9 + }, + [2]={ + id=2397, + orbit=0 + }, + [3]={ + id=54099, + orbit=0 + } + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage while Surrounded", + orbit=7, + orbitIndex=4, + skill=16111, + stats={ + [1]="20% increased Attack Damage while Surrounded" + } + }, + [16114]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + }, + group=445, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=16114 + }, + [16121]={ + connections={ + [1]={ + id=56334, + orbit=7 + } + }, + group=1440, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=1, + skill=16121, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [16123]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=983, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=3, + orbitIndex=22, + skill=16123 + }, + [16140]={ + connections={ + [1]={ + id=16013, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze on Hit", + orbit=2, + orbitIndex=10, + skill=16140, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [16142]={ + connections={ + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Deep Freeze", + orbit=3, + orbitIndex=10, + skill=16142, + stats={ + [1]="20% increased Freeze Buildup", + [2]="Enemies Frozen by you have -8% to Cold Resistance" + } + }, + [16150]={ + connections={ + [1]={ + id=37971, + orbit=0 + } + }, + group=1493, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Inspiring Ally", + orbit=0, + orbitIndex=0, + skill=16150, + stats={ + [1]="Increases and Reductions to Companion Damage also apply to you" + } + }, + [16168]={ + connections={ + [1]={ + id=54232, + orbit=-5 + }, + [2]={ + id=25374, + orbit=0 + }, + [3]={ + id=45916, + orbit=0 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=16168, + stats={ + [1]="+5 to any Attribute" + } + }, + [16204]={ + ascendancyName="Shaman", + connections={ + }, + group=58, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.png", + isNotable=true, + name="Sacred Flow", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=16204, + stats={ + [1]="+40 to Spirit for each of your empty Charm slots" + } + }, + [16249]={ + ascendancyName="Tactician", + connections={ + }, + group=294, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.png", + isNotable=true, + name="Watch How I Do It", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=16249, + stats={ + [1]="Allies in your Presence gain added Attack Damage equal\nto 25% of your main hand Weapon's damage" + } + }, + [16256]={ + connections={ + [1]={ + id=53188, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Ether Flow", + orbit=3, + orbitIndex=8, + skill=16256, + stats={ + [1]="25% reduced Mana Regeneration Rate while stationary", + [2]="50% increased Mana Regeneration Rate while moving", + [3]="5% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [16276]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=57, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.png", + isNotable=true, + name="Kitavan Imprint", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=16276, + stats={ + [1]="Body Armour grants 60% increased Glory generation" + } + }, + [16311]={ + connections={ + [1]={ + id=32600, + orbit=0 + }, + [2]={ + id=14654, + orbit=0 + } + }, + group=381, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=20, + skill=16311, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [16329]={ + connections={ + [1]={ + id=39607, + orbit=-2 + } + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Charges Used", + orbit=2, + orbitIndex=2, + skill=16329, + stats={ + [1]="5% reduced Flask Charges used" + } + }, + [16332]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49258, + orbit=-7 + }, + [2]={ + id=11160, + orbit=-9 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=64, + skill=16332, + stats={ + [1]="17% increased Stun Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [16347]={ + connections={ + [1]={ + id=52373, + orbit=0 + } + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + orbit=2, + orbitIndex=2, + skill=16347, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [16367]={ + connections={ + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=0, + orbitIndex=0, + skill=16367, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [16385]={ + connections={ + [1]={ + id=53320, + orbit=0 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=2, + orbitIndex=14, + skill=16385, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [16401]={ + connections={ + [1]={ + id=44490, + orbit=0 + } + }, + group=1352, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage and Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=16401, + stats={ + [1]="8% increased Lightning Damage", + [2]="10% increased Electrocute Buildup" + } + }, + [16413]={ + connections={ + [1]={ + id=42660, + orbit=0 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/minionstr.png", + name="Attack and Minion Damage", + orbit=2, + orbitIndex=4, + skill=16413, + stats={ + [1]="8% increased Attack Damage", + [2]="Minions deal 8% increased Damage" + } + }, + [16433]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=12795, + orbit=0 + }, + [2]={ + id=57253, + orbit=0 + }, + [3]={ + id=36676, + orbit=0 + } + }, + group=1525, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.png", + isMultipleChoice=true, + isNotable=true, + name="Path Seeker", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=16433 + }, + [16460]={ + connections={ + [1]={ + id=28992, + orbit=0 + }, + [2]={ + id=6772, + orbit=0 + } + }, + group=944, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=18, + skill=16460, + stats={ + [1]="+5 to any Attribute" + } + }, + [16466]={ + connections={ + [1]={ + id=40196, + orbit=0 + } + }, + group=1151, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Mental Alacrity", + orbit=2, + orbitIndex=0, + skill=16466, + stats={ + [1]="5% increased Cast Speed", + [2]="15% increased Mana Regeneration Rate", + [3]="+10 to Intelligence" + } + }, + [16484]={ + connections={ + [1]={ + id=25100, + orbit=0 + }, + [2]={ + id=18923, + orbit=0 + } + }, + group=1039, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=0, + skill=16484, + stats={ + [1]="+5 to any Attribute" + } + }, + [16485]={ + connections={ + [1]={ + id=2344, + orbit=-2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=2, + skill=16485, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [16489]={ + connections={ + [1]={ + id=28556, + orbit=6 + }, + [2]={ + id=49799, + orbit=7 + } + }, + group=887, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=16489, + stats={ + [1]="+5 to any Attribute" + } + }, + [16499]={ + connections={ + [1]={ + id=36814, + orbit=0 + } + }, + group=856, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Lingering Whispers", + orbit=7, + orbitIndex=12, + skill=16499, + stats={ + [1]="40% increased Curse Duration", + [2]="10% increased Curse Magnitudes" + } + }, + [16506]={ + connections={ + [1]={ + id=35417, + orbit=-2 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Elemental Ailment Chance", + orbit=7, + orbitIndex=10, + skill=16506, + stats={ + [1]="20% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently" + } + }, + [16538]={ + connections={ + [1]={ + id=44330, + orbit=0 + } + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=2, + orbitIndex=2, + skill=16538, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [16568]={ + connections={ + [1]={ + id=60992, + orbit=-2 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Revive Speed", + orbit=3, + orbitIndex=2, + skill=16568, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [16596]={ + connections={ + [1]={ + id=38535, + orbit=7 + }, + [2]={ + id=5088, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Speed with Elemental Skills", + orbit=3, + orbitIndex=20, + skill=16596, + stats={ + [1]="3% increased Attack and Cast Speed with Elemental Skills" + } + }, + [16602]={ + connections={ + [1]={ + id=29285, + orbit=2 + }, + [2]={ + id=30657, + orbit=0 + } + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png", + name="Evasion", + orbit=7, + orbitIndex=23, + skill=16602, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [16615]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=18713, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Unmoving Craiceann", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=60, + skill=16615, + stats={ + [1]="30% increased Armour while stationary", + [2]="30% increased Life Regeneration Rate while stationary" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [16618]={ + connections={ + [1]={ + id=24511, + orbit=0 + }, + [2]={ + id=4492, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + isNotable=true, + name="Jack of all Trades", + orbit=5, + orbitIndex=24, + skill=16618, + stats={ + [1]="2% increased Damage per 5 of your lowest Attribute" + } + }, + [16620]={ + connections={ + [1]={ + id=21161, + orbit=4 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Movement Penalty with Raised Shield", + orbit=3, + orbitIndex=10, + skill=16620, + stats={ + [1]="10% reduced Movement Speed Penalty while Actively Blocking" + } + }, + [16626]={ + connections={ + [1]={ + id=53089, + orbit=0 + }, + [2]={ + id=62023, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Impact Area", + orbit=2, + orbitIndex=20, + skill=16626, + stats={ + [1]="12% increased Area of Effect if you have Stunned an Enemy Recently", + [2]="12% increased Area of Effect for Attacks" + } + }, + [16647]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=16647 + }, + [16680]={ + connections={ + [1]={ + id=48137, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=4, + orbitIndex=15, + skill=16680, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [16691]={ + connections={ + [1]={ + id=21716, + orbit=-5 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech Speed", + orbit=7, + orbitIndex=6, + skill=16691, + stats={ + [1]="Leech Life 15% faster" + } + }, + [16695]={ + connections={ + [1]={ + id=61926, + orbit=0 + } + }, + group=1142, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Recoup", + orbit=2, + orbitIndex=6, + skill=16695, + stats={ + [1]="3% of Elemental Damage taken Recouped as Energy Shield" + } + }, + [16705]={ + connections={ + [1]={ + id=25851, + orbit=4 + }, + [2]={ + id=34621, + orbit=0 + }, + [3]={ + id=61834, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=66, + skill=16705, + stats={ + [1]="+5 to any Attribute" + } + }, + [16721]={ + connections={ + [1]={ + id=32239, + orbit=4 + }, + [2]={ + id=34187, + orbit=6 + }, + [3]={ + id=18270, + orbit=6 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=0, + orbitIndex=0, + skill=16721, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [16725]={ + connections={ + [1]={ + id=27373, + orbit=6 + }, + [2]={ + id=36629, + orbit=-6 + }, + [3]={ + id=54811, + orbit=0 + }, + [4]={ + id=36163, + orbit=0 + } + }, + group=480, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=16725, + stats={ + [1]="+5 to any Attribute" + } + }, + [16744]={ + connections={ + [1]={ + id=24009, + orbit=-5 + }, + [2]={ + id=24748, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=3, + orbitIndex=12, + skill=16744, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [16784]={ + connections={ + [1]={ + id=31650, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=5, + orbitIndex=68, + skill=16784, + stats={ + [1]="16% increased Totem Life" + } + }, + [16786]={ + connections={ + [1]={ + id=20467, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Immobilisation Buildup", + orbit=7, + orbitIndex=14, + skill=16786, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [16790]={ + connections={ + [1]={ + id=27234, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Efficient Casting", + orbit=7, + orbitIndex=0, + skill=16790, + stats={ + [1]="15% increased Mana Regeneration Rate", + [2]="20% increased Mana Cost Efficiency" + } + }, + [16816]={ + connections={ + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Pinpoint Shot", + orbit=0, + orbitIndex=0, + skill=16816, + stats={ + [1]="Attacks gain increased Accuracy Rating equal to their Critical Hit Chance" + } + }, + [16861]={ + connections={ + [1]={ + id=27303, + orbit=-5 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=3, + orbitIndex=22, + skill=16861, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [16871]={ + connections={ + [1]={ + id=9532, + orbit=2 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png", + name="Strength and Dexterity", + orbit=7, + orbitIndex=18, + skill=16871, + stats={ + [1]="+4 to Strength", + [2]="+4 to Dexterity" + } + }, + [16938]={ + connections={ + [1]={ + id=8789, + orbit=3 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=7, + orbitIndex=18, + skill=16938, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [16940]={ + connections={ + [1]={ + id=25446, + orbit=0 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Arcane Nature", + orbit=7, + orbitIndex=1, + skill=16940, + stats={ + [1]="12% increased Area of Effect while you have Arcane Surge", + [2]="30% increased Spell Damage while you have Arcane Surge" + } + }, + [16947]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=18713, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Shelter from the Rain", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=54, + skill=16947, + stats={ + [1]="20% faster start of Energy Shield Recharge", + [2]="15% increased Block chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17024]={ + connections={ + [1]={ + id=37372, + orbit=0 + } + }, + group=971, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Skill Speed", + orbit=0, + orbitIndex=0, + skill=17024, + stats={ + [1]="3% increased Attack and Cast Speed with Lightning Skills" + } + }, + [17025]={ + connections={ + [1]={ + id=13515, + orbit=0 + } + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=2, + orbitIndex=18, + skill=17025, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [17026]={ + connections={ + [1]={ + id=23373, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Cooldown Recovery Rate", + orbit=2, + orbitIndex=2, + skill=17026, + stats={ + [1]="15% increased Cooldown Recovery Rate for Grenade Skills" + } + }, + [17029]={ + connections={ + [1]={ + id=45992, + orbit=0 + } + }, + group=467, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Blade Catcher", + orbit=2, + orbitIndex=12, + skill=17029, + stats={ + [1]="Defend with 200% of Armour against Critical Hits", + [2]="+15 to Strength" + } + }, + [17045]={ + connections={ + [1]={ + id=55131, + orbit=6 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Movement Speed ", + orbit=4, + orbitIndex=42, + skill=17045, + stats={ + [1]="2% increased Movement Speed" + } + }, + [17057]={ + connections={ + [1]={ + id=17025, + orbit=2 + } + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=1, + orbitIndex=0, + skill=17057, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [17058]={ + ascendancyName="Ritualist", + connections={ + }, + group=1561, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Reduced Resistances", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=17058, + stats={ + [1]="-20% to all Elemental Resistances" + } + }, + [17059]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6874, + orbit=-7 + } + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Stun Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=20, + skill=17059, + stats={ + [1]="25% increased Stun Threshold while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17061]={ + connections={ + [1]={ + id=31773, + orbit=2 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Delay", + orbit=3, + orbitIndex=4, + skill=17061, + stats={ + [1]="Archon recovery period expires 10% faster" + } + }, + [17077]={ + connections={ + [1]={ + id=51463, + orbit=0 + }, + [2]={ + id=36114, + orbit=0 + } + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Attack Damage while Moving", + orbit=0, + orbitIndex=0, + skill=17077, + stats={ + [1]="12% increased Attack Damage while moving" + } + }, + [17088]={ + connections={ + [1]={ + id=51416, + orbit=4 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=17088, + stats={ + [1]="+5 to any Attribute" + } + }, + [17092]={ + connections={ + [1]={ + id=10484, + orbit=0 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + orbit=2, + orbitIndex=18, + skill=17092, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [17101]={ + connections={ + [1]={ + id=25362, + orbit=-2 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + name="Attack Damage", + orbit=3, + orbitIndex=17, + skill=17101, + stats={ + [1]="10% increased Attack Damage" + } + }, + [17107]={ + connections={ + [1]={ + id=11788, + orbit=3 + } + }, + group=852, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area Damage", + orbit=0, + orbitIndex=0, + skill=17107, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [17112]={ + connections={ + [1]={ + id=64900, + orbit=-7 + }, + [2]={ + id=4331, + orbit=2 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Attack Damage and Stun", + orbit=2, + orbitIndex=19, + skill=17112, + stats={ + [1]="10% increased Stun Buildup", + [2]="Ancestrally Boosted Attacks deal 16% increased Damage" + } + }, + [17118]={ + connections={ + [1]={ + id=38814, + orbit=0 + }, + [2]={ + id=20049, + orbit=0 + }, + [3]={ + id=8789, + orbit=4 + } + }, + group=1016, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=17118, + stats={ + [1]="+5 to any Attribute" + } + }, + [17138]={ + connections={ + [1]={ + id=51903, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=0, + orbitIndex=0, + skill=17138, + stats={ + [1]="10% increased Melee Damage" + } + }, + [17146]={ + connections={ + [1]={ + id=3843, + orbit=4 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Damage", + orbit=2, + orbitIndex=17, + skill=17146, + stats={ + [1]="20% increased Parry Damage" + } + }, + [17150]={ + connections={ + [1]={ + id=53647, + orbit=7 + }, + [2]={ + id=19750, + orbit=0 + } + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="General's Bindings", + orbit=3, + orbitIndex=8, + skill=17150, + stats={ + [1]="Gain 8% of Evasion Rating as extra Armour" + } + }, + [17215]={ + connections={ + [1]={ + id=4552, + orbit=2 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + name="Mana Regeneration and Attack Speed", + orbit=7, + orbitIndex=19, + skill=17215, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Mana Regeneration Rate" + } + }, + [17229]={ + connections={ + [1]={ + id=34493, + orbit=0 + }, + [2]={ + id=47242, + orbit=0 + }, + [3]={ + id=29985, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + isNotable=true, + name="Silent Guardian", + orbit=3, + orbitIndex=9, + skill=17229, + stats={ + [1]="Minions have +20% to all Elemental Resistances", + [2]="20% increased Elemental Ailment Threshold" + } + }, + [17248]={ + connections={ + [1]={ + id=53960, + orbit=-5 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=0, + skill=17248, + stats={ + [1]="+5 to any Attribute" + } + }, + [17254]={ + connections={ + [1]={ + id=14272, + orbit=0 + }, + [2]={ + id=26596, + orbit=0 + } + }, + group=1178, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Spell Haste", + orbit=0, + orbitIndex=0, + skill=17254, + stats={ + [1]="15% increased Evasion Rating", + [2]="8% increased Cast Speed" + } + }, + [17260]={ + connections={ + [1]={ + id=41180, + orbit=0 + }, + [2]={ + id=9037, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Piercing Claw", + orbit=3, + orbitIndex=2, + skill=17260, + stats={ + [1]="Damage Penetrates 15% of Enemy Elemental Resistances while Shapeshifted" + } + }, + [17268]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=7621, + orbit=3 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Shock Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=13, + skill=17268, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [17282]={ + connections={ + [1]={ + id=47252, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=20, + skill=17282, + stats={ + [1]="16% increased Mana Regeneration Rate while stationary" + } + }, + [17283]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + connections={ + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=17283 + }, + [17294]={ + connections={ + [1]={ + id=19330, + orbit=-5 + }, + [2]={ + id=27501, + orbit=4 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=16, + skill=17294, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [17303]={ + connections={ + [1]={ + id=17026, + orbit=0 + }, + [2]={ + id=27992, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Utility Ordnance", + orbit=7, + orbitIndex=6, + skill=17303, + stats={ + [1]="40% increased Cooldown Recovery Rate for Grenade Skills", + [2]="80% reduced Grenade Damage" + } + }, + [17316]={ + connections={ + [1]={ + id=40244, + orbit=-4 + }, + [2]={ + id=62986, + orbit=5 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=4, + orbitIndex=51, + skill=17316, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [17330]={ + connections={ + [1]={ + id=61927, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/icongroundslam.png", + isNotable=true, + name="Perforation", + orbit=2, + orbitIndex=23, + skill=17330, + stats={ + [1]="20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground", + [2]="40% increased Jagged Ground Duration" + } + }, + [17340]={ + connections={ + [1]={ + id=62051, + orbit=-4 + } + }, + group=807, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + isNotable=true, + name="Adrenaline Rush", + orbit=4, + orbitIndex=9, + skill=17340, + stats={ + [1]="4% increased Movement Speed if you've Killed Recently", + [2]="8% increased Attack Speed if you've killed Recently" + } + }, + [17348]={ + connections={ + [1]={ + id=11275, + orbit=0 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=7, + orbitIndex=17, + skill=17348, + stats={ + [1]="12% increased Ignite Magnitude" + } + }, + [17349]={ + connections={ + [1]={ + id=23940, + orbit=-3 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=0, + skill=17349, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [17356]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.png", + isNotable=true, + name="Hollow Resonance Technique", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=58, + skill=17356, + stats={ + [1]="Grants Skill: Hollow Resonance" + } + }, + [17366]={ + connections={ + [1]={ + id=29361, + orbit=0 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=10, + skill=17366, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [17367]={ + connections={ + [1]={ + id=53941, + orbit=-6 + }, + [2]={ + id=12761, + orbit=0 + } + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=4, + skill=17367, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [17372]={ + connections={ + [1]={ + id=35985, + orbit=0 + }, + [2]={ + id=19074, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Reaching Strike", + orbit=3, + orbitIndex=4, + skill=17372, + stats={ + [1]="25% increased Melee Damage", + [2]="+0.2 metres to Melee Strike Range" + } + }, + [17378]={ + connections={ + [1]={ + id=40894, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=22, + skill=17378, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [17380]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + [1]={ + id=41972, + orbit=0 + }, + [2]={ + id=23427, + orbit=0 + }, + [3]={ + id=47270, + orbit=0 + }, + [4]={ + id=19955, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=1, + orbitIndex=6, + skill=17380 + }, + [17394]={ + connections={ + [1]={ + id=45530, + orbit=-3 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Stun Buildup", + orbit=7, + orbitIndex=0, + skill=17394, + stats={ + [1]="Minions cause 15% increased Stun Buildup" + } + }, + [17411]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=17411 + }, + [17417]={ + connections={ + [1]={ + id=3652, + orbit=3 + }, + [2]={ + id=27999, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed and Physical Damage", + orbit=3, + orbitIndex=4, + skill=17417, + stats={ + [1]="5% increased Projectile Speed", + [2]="8% increased Physical Damage" + } + }, + [17420]={ + connections={ + [1]={ + id=18717, + orbit=0 + }, + [2]={ + id=25565, + orbit=0 + }, + [3]={ + id=15356, + orbit=0 + } + }, + group=1399, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=17420, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [17447]={ + connections={ + [1]={ + id=24843, + orbit=-7 + }, + [2]={ + id=29320, + orbit=7 + } + }, + group=1213, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Stun Threshold during Parry", + orbit=2, + orbitIndex=14, + skill=17447, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [17468]={ + connections={ + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=17468, + stats={ + [1]="+5 to any Attribute" + } + }, + [17501]={ + connections={ + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage", + orbit=2, + orbitIndex=7, + skill=17501, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [17505]={ + connections={ + [1]={ + id=52106, + orbit=0 + }, + [2]={ + id=28774, + orbit=0 + }, + [3]={ + id=23382, + orbit=0 + } + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=6, + orbitIndex=30, + skill=17505, + stats={ + [1]="3% increased Cast Speed" + } + }, + [17517]={ + connections={ + [1]={ + id=13233, + orbit=-4 + }, + [2]={ + id=17655, + orbit=9 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area of Effect", + orbit=7, + orbitIndex=12, + skill=17517, + stats={ + [1]="5% increased Area of Effect" + } + }, + [17523]={ + connections={ + [1]={ + id=42032, + orbit=0 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=7, + orbitIndex=8, + skill=17523, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [17532]={ + connections={ + [1]={ + id=61934, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=2, + orbitIndex=20, + skill=17532, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [17548]={ + connections={ + [1]={ + id=630, + orbit=0 + }, + [2]={ + id=31039, + orbit=0 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Moment of Truth", + orbit=7, + orbitIndex=2, + skill=17548, + stats={ + [1]="25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", + [2]="15% increased Critical Hit Chance" + } + }, + [17553]={ + connections={ + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Pierce", + orbit=7, + orbitIndex=5, + skill=17553, + stats={ + [1]="25% chance for Projectiles to Pierce Enemies within 3m distance of you" + } + }, + [17584]={ + connections={ + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isSwitchable=true, + name="Attack Area", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + id=53526, + name="Spell and Attack Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + } + }, + orbit=2, + orbitIndex=17, + skill=17584, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [17587]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=166, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=1, + orbitIndex=9, + skill=17587, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17589]={ + connections={ + [1]={ + id=36085, + orbit=0 + }, + [2]={ + id=64462, + orbit=7 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=23, + skill=17589, + stats={ + [1]="10% increased Attack Damage" + } + }, + [17600]={ + connections={ + [1]={ + id=18519, + orbit=3 + }, + [2]={ + id=32096, + orbit=0 + }, + [3]={ + id=10041, + orbit=-2 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Thirsting Ally", + orbit=3, + orbitIndex=19, + skill=17600, + stats={ + [1]="Leeching Life from your Hits causes your Companion to also Leech the same amount of Life" + } + }, + [17602]={ + connections={ + [1]={ + id=59799, + orbit=4 + }, + [2]={ + id=59798, + orbit=-4 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=7, + orbitIndex=15, + skill=17602, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [17625]={ + connections={ + [1]={ + id=10873, + orbit=-5 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=7, + orbitIndex=9, + skill=17625, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [17646]={ + ascendancyName="Witchhunter", + connections={ + }, + group=246, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.png", + isNotable=true, + name="Judge, Jury, and Executioner", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=17646, + stats={ + [1]="Decimating Strike" + } + }, + [17655]={ + connections={ + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.png", + id=14942, + name="Damage", + stats={ + [1]="8% increased Damage" + } + } + }, + orbit=2, + orbitIndex=8, + skill=17655, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [17664]={ + connections={ + [1]={ + id=11463, + orbit=0 + }, + [2]={ + id=33348, + orbit=0 + } + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Decisive Retreat", + orbit=0, + orbitIndex=0, + skill=17664, + stats={ + [1]="50% increased Critical Damage Bonus against Enemies that have exited your Presence Recently" + } + }, + [17668]={ + connections={ + [1]={ + id=17215, + orbit=2 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + name="Mana Regeneration and Attack Speed", + orbit=2, + orbitIndex=22, + skill=17668, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Mana Regeneration Rate" + } + }, + [17672]={ + connections={ + [1]={ + id=38732, + orbit=0 + }, + [2]={ + id=64427, + orbit=0 + } + }, + group=911, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=17672, + stats={ + [1]="+5 to any Attribute" + } + }, + [17686]={ + connections={ + [1]={ + id=53996, + orbit=0 + }, + [2]={ + id=43575, + orbit=0 + } + }, + group=884, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage ", + orbit=7, + orbitIndex=19, + skill=17686, + stats={ + [1]="10% increased Melee Damage" + } + }, + [17687]={ + connections={ + [1]={ + id=2021, + orbit=-5 + } + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Charges", + orbit=7, + orbitIndex=0, + skill=17687, + stats={ + [1]="15% increased Mana Flask Charges gained" + } + }, + [17702]={ + connections={ + [1]={ + id=46882, + orbit=0 + }, + [2]={ + id=27262, + orbit=-3 + }, + [3]={ + id=20467, + orbit=0 + } + }, + group=1137, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=17702, + stats={ + [1]="+5 to any Attribute" + } + }, + [17706]={ + connections={ + [1]={ + id=46972, + orbit=-2 + } + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Charges Used", + orbit=2, + orbitIndex=20, + skill=17706, + stats={ + [1]="4% reduced Flask Charges used from Mana Flasks" + } + }, + [17711]={ + connections={ + [1]={ + id=46989, + orbit=3 + } + }, + group=855, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=0, + orbitIndex=0, + skill=17711, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [17724]={ + connections={ + [1]={ + id=17101, + orbit=-4 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + name="Attack Damage", + orbit=3, + orbitIndex=13, + skill=17724, + stats={ + [1]="10% increased Attack Damage" + } + }, + [17725]={ + connections={ + [1]={ + id=9221, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Bonded Precision", + orbit=7, + orbitIndex=10, + skill=17725, + stats={ + [1]="Allies in your Presence have 25% increased Critical Hit Chance", + [2]="25% increased Critical Hit Chance" + } + }, + [17726]={ + connections={ + [1]={ + id=33053, + orbit=7 + } + }, + group=928, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Stun Buildup", + orbit=7, + orbitIndex=5, + skill=17726, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [17729]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=56466, + orbit=0 + } + }, + group=606, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=5, + skill=17729, + stats={ + [1]="12% increased Spell Damage", + [2]="8% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17745]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=478, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=17745 + }, + [17750]={ + connections={ + [1]={ + id=658, + orbit=4 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=7, + orbitIndex=22, + skill=17750, + stats={ + [1]="+6% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [17754]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.png", + isNotable=true, + name="Loyal Hellhound", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=7, + skill=17754, + stats={ + [1]="Grants Skill: Summon Infernal Hound" + } + }, + [17762]={ + connections={ + [1]={ + id=2964, + orbit=-7 + }, + [2]={ + id=28476, + orbit=0 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.png", + isNotable=true, + name="Vengeance", + orbit=2, + orbitIndex=23, + skill=17762, + stats={ + [1]="10% of Thorns Damage Leeched as Life" + } + }, + [17788]={ + ascendancyName="Lich", + connections={ + }, + containJewelSocket=true, + group=1173, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isNotable=true, + name="Crystalline Phylactery", + nodeOverlay={ + alloc="JewelSocketAltActive", + path="JewelSocketAltCanAllocate", + unalloc="JewelSocketAltNormal" + }, + orbit=6, + orbitIndex=0, + skill=17788, + stats={ + [1]="Can Socket a non-Unique Basic Jewel into the Phylactery", + [2]="100% increased Effect of bonuses gained from Socketed Jewel", + [3]="50% more Mana Cost of Skills if you have no Energy Shield" + } + }, + [17791]={ + connections={ + [1]={ + id=526, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Stun Buildup", + orbit=7, + orbitIndex=3, + skill=17791, + stats={ + [1]="18% increased Stun Buildup with Maces" + } + }, + [17792]={ + connections={ + [1]={ + id=48734, + orbit=3 + } + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Presence Area", + orbit=2, + orbitIndex=9, + skill=17792, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [17796]={ + connections={ + [1]={ + id=12412, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Cooldown Recovery Rate", + orbit=2, + orbitIndex=12, + skill=17796, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [17825]={ + connections={ + [1]={ + id=45585, + orbit=-7 + }, + [2]={ + id=46931, + orbit=-7 + }, + [3]={ + id=5681, + orbit=0 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="Tactical Retreat", + orbit=0, + orbitIndex=0, + skill=17825, + stats={ + [1]="+0.5 metres to Dodge Roll distance while Surrounded", + [2]="10% increased Movement Speed while Surrounded" + } + }, + [17854]={ + connections={ + [1]={ + id=55275, + orbit=7 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Escape Velocity", + orbit=4, + orbitIndex=0, + skill=17854, + stats={ + [1]="3% increased Movement Speed", + [2]="30% increased Evasion Rating" + } + }, + [17867]={ + connections={ + [1]={ + id=37092, + orbit=0 + } + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Exposure Effect and Slow Effect", + orbit=7, + orbitIndex=10, + skill=17867, + stats={ + [1]="Debuffs you inflict have 7% increased Slow Magnitude", + [2]="7% increased Exposure Effect" + } + }, + [17871]={ + connections={ + [1]={ + id=32672, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze and Chill Resistance", + orbit=2, + orbitIndex=12, + skill=17871, + stats={ + [1]="5% reduced Effect of Chill on you", + [2]="10% increased Freeze Threshold" + } + }, + [17882]={ + connections={ + [1]={ + id=33596, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Volatile Grenades", + orbit=7, + orbitIndex=0, + skill=17882, + stats={ + [1]="25% reduced Grenade Detonation Time" + } + }, + [17885]={ + connections={ + [1]={ + id=11392, + orbit=-7 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude on You", + orbit=3, + orbitIndex=2, + skill=17885, + stats={ + [1]="15% reduced Magnitude of Ignite on you" + } + }, + [17894]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=58058, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Her Final Bite", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=42, + skill=17894, + stats={ + [1]="20% increased Physical Damage with Bows", + [2]="Bow Attacks have Culling Strike" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17903]={ + connections={ + [1]={ + id=40117, + orbit=-7 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + orbit=7, + orbitIndex=8, + skill=17903, + stats={ + [1]="16% increased Thorns damage" + } + }, + [17906]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=17906 + }, + [17923]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=18826, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Volatility", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=16, + skill=17923, + stats={ + [1]="10% chance to gain Volatility on Kill" + } + }, + [17924]={ + connections={ + [1]={ + id=51867, + orbit=-7 + } + }, + group=386, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=3, + orbitIndex=20, + skill=17924, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [17955]={ + connections={ + [1]={ + id=51708, + orbit=0 + } + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Careful Consideration", + orbit=3, + orbitIndex=6, + skill=17955, + stats={ + [1]="30% reduced Evasion Rating if you have been Hit Recently", + [2]="100% increased Evasion Rating if you haven't been Hit Recently" + } + }, + [17973]={ + connections={ + [1]={ + id=4748, + orbit=4 + }, + [2]={ + id=22691, + orbit=-6 + } + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + isSwitchable=true, + name="Rapid Recharge", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + id=48926, + name="Living Death", + stats={ + [1]="Minions have 15% increased maximum Life", + [2]="Minions Revive 15% faster" + } + } + }, + orbit=7, + orbitIndex=3, + skill=17973, + stats={ + [1]="12% increased Energy Shield Recharge Rate", + [2]="12% faster start of Energy Shield Recharge" + } + }, + [17994]={ + connections={ + [1]={ + id=22565, + orbit=0 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=5, + skill=17994, + stats={ + [1]="10% increased Armour", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [17999]={ + connections={ + [1]={ + id=51561, + orbit=0 + }, + [2]={ + id=42026, + orbit=0 + }, + [3]={ + id=63979, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown and Speed", + orbit=7, + orbitIndex=4, + skill=17999, + stats={ + [1]="8% increased Warcry Speed", + [2]="6% increased Warcry Cooldown Recovery Rate" + } + }, + [18004]={ + connections={ + [1]={ + id=8881, + orbit=0 + } + }, + group=321, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Later Rage Loss Start", + orbit=3, + orbitIndex=19, + skill=18004, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [18049]={ + connections={ + [1]={ + id=5802, + orbit=0 + } + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=22, + skill=18049, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies within 2m" + } + }, + [18073]={ + connections={ + [1]={ + id=49952, + orbit=7 + }, + [2]={ + id=63114, + orbit=4 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Attack Damage", + orbit=7, + orbitIndex=2, + skill=18073, + stats={ + [1]="12% increased Attack Damage" + } + }, + [18081]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=52993, + orbit=0 + }, + [2]={ + id=14980, + orbit=0 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Call Upon the Deep", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=7, + skill=18081, + stats={ + [1]="Damage Penetrates 20% Elemental Resistances for each time you've used a Skill that Requires Glory in the past 6 seconds" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [18086]={ + connections={ + [1]={ + id=62844, + orbit=0 + }, + [2]={ + id=7333, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Breath of Ice", + orbit=4, + orbitIndex=54, + skill=18086, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="+10 to Intelligence" + } + }, + [18101]={ + connections={ + [1]={ + id=61615, + orbit=3 + }, + [2]={ + id=59413, + orbit=-3 + } + }, + group=627, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=0, + orbitIndex=0, + skill=18101, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [18115]={ + connections={ + [1]={ + id=48856, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=7, + orbitIndex=7, + skill=18115, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [18121]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=18121 + }, + [18146]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=57819, + orbit=0 + } + }, + group=485, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18146, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [18157]={ + connections={ + [1]={ + id=29447, + orbit=-8 + } + }, + group=328, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Tempered Defences", + orbit=2, + orbitIndex=17, + skill=18157, + stats={ + [1]="25% increased Armour", + [2]="+15% of Armour also applies to Elemental Damage" + } + }, + [18158]={ + ascendancyName="Infernalist", + connections={ + }, + group=735, + icon="Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.png", + isNotable=true, + name="Bringer of Flame", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18158, + stats={ + [1]="All Damage from you and Allies in your Presence\ncontributes to Flammability and Ignite Magnitudes" + } + }, + [18160]={ + connections={ + [1]={ + id=26945, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Critical Chance", + orbit=7, + orbitIndex=14, + skill=18160, + stats={ + [1]="Minions have 20% increased Critical Hit Chance" + } + }, + [18167]={ + connections={ + [1]={ + id=49150, + orbit=-2 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Critical Hits", + orbit=2, + orbitIndex=10, + skill=18167, + stats={ + [1]="Invocated Spells have 12% increased Critical Hit Chance" + } + }, + [18186]={ + connections={ + [1]={ + id=13942, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=0, + skill=18186, + stats={ + [1]="15% increased Armour" + } + }, + [18207]={ + connections={ + [1]={ + id=53261, + orbit=-3 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Area and Damage", + orbit=3, + orbitIndex=8, + skill=18207, + stats={ + [1]="4% increased Area of Effect of Ancestrally Boosted Attacks", + [2]="Ancestrally Boosted Attacks deal 8% increased Damage" + } + }, + [18245]={ + connections={ + [1]={ + id=30554, + orbit=0 + }, + [2]={ + id=21164, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Physical Damage Reduction", + orbit=7, + orbitIndex=16, + skill=18245, + stats={ + [1]="Minions have 8% increased maximum Life", + [2]="Minions have 8% additional Physical Damage Reduction" + } + }, + [18270]={ + connections={ + [1]={ + id=45874, + orbit=3 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=5, + orbitIndex=55, + skill=18270, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [18280]={ + ascendancyName="Ritualist", + connections={ + }, + group=1559, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.png", + isNotable=true, + name="Mind Phylacteries", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18280, + stats={ + [1]="Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges" + } + }, + [18308]={ + connections={ + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Bleeding Out", + orbit=4, + orbitIndex=48, + skill=18308, + stats={ + [1]="+250 to Accuracy against Bleeding Enemies", + [2]="Bleeding you inflict deals Damage 10% faster" + } + }, + [18314]={ + connections={ + [1]={ + id=60239, + orbit=-4 + }, + [2]={ + id=58593, + orbit=-6 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=13, + skill=18314, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [18348]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=19482, + orbit=5 + }, + [2]={ + id=8854, + orbit=0 + }, + [3]={ + id=46016, + orbit=8 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.png", + isNotable=true, + name="Altered Flesh", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=60, + skill=18348, + stats={ + [1]="20% of Physical Damage taken as Chaos Damage", + [2]="20% of Lightning Damage taken as Fire Damage", + [3]="20% of Cold Damage taken as Fire Damage" + } + }, + [18353]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=20496, + orbit=0 + }, + [2]={ + id=3544, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Physical and Lightning Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=20, + skill=18353, + stats={ + [1]="12% increased Lightning Damage", + [2]="12% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [18374]={ + connections={ + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns and Leech", + orbit=2, + orbitIndex=7, + skill=18374, + stats={ + [1]="8% increased amount of Life Leeched", + [2]="12% increased Thorns damage" + } + }, + [18397]={ + connections={ + [1]={ + id=55063, + orbit=0 + }, + [2]={ + id=4139, + orbit=0 + } + }, + group=138, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Savoured Blood", + orbit=3, + orbitIndex=5, + skill=18397, + stats={ + [1]="35% increased amount of Life Leeched", + [2]="Leech Life 20% slower" + } + }, + [18407]={ + connections={ + }, + group=732, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=18407, + stats={ + [1]="+5 to any Attribute" + } + }, + [18419]={ + connections={ + [1]={ + id=11014, + orbit=0 + }, + [2]={ + id=16784, + orbit=0 + }, + [3]={ + id=23667, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Mending", + orbit=7, + orbitIndex=18, + skill=18419, + stats={ + [1]="Regenerate 1% of maximum Life per second while you have a Totem", + [2]="Totems Regenerate 3% of maximum Life per second" + } + }, + [18441]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34181, + orbit=0 + } + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=10, + skill=18441, + stats={ + [1]="+3 to Maximum Rage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [18448]={ + connections={ + [1]={ + id=30141, + orbit=0 + }, + [2]={ + id=6872, + orbit=0 + }, + [3]={ + id=30457, + orbit=0 + }, + [4]={ + id=59039, + orbit=0 + } + }, + group=154, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=18448, + stats={ + [1]="+5 to any Attribute" + } + }, + [18451]={ + connections={ + }, + group=999, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=12, + skill=18451, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [18465]={ + connections={ + [1]={ + id=39540, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + isSwitchable=true, + name="Cruel Fate", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.png", + id=50882, + name="Primal Spirit", + stats={ + [1]="10% increased Critical Hit Chance while Shapeshifted", + [2]="8% increased Skill Speed while Shapeshifted" + } + } + }, + orbit=4, + orbitIndex=44, + skill=18465, + stats={ + [1]="20% increased Critical Damage Bonus", + [2]="20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits" + } + }, + [18470]={ + connections={ + [1]={ + id=4447, + orbit=0 + } + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=1, + orbitIndex=4, + skill=18470, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [18472]={ + connections={ + [1]={ + id=46533, + orbit=0 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + name="Stun and Freeze Buildup", + orbit=2, + orbitIndex=12, + skill=18472, + stats={ + [1]="15% increased Stun Buildup", + [2]="15% increased Freeze Buildup" + } + }, + [18485]={ + connections={ + [1]={ + id=20119, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + isNotable=true, + name="Unstable Bond", + orbit=3, + orbitIndex=0, + skill=18485, + stats={ + [1]="Gain 3 Volatility when an Allied Persistent Reviving Minion is Killed" + } + }, + [18489]={ + connections={ + [1]={ + id=13356, + orbit=7 + }, + [2]={ + id=12751, + orbit=-7 + }, + [3]={ + id=37258, + orbit=0 + } + }, + group=498, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=7, + orbitIndex=19, + skill=18489, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [18496]={ + connections={ + [1]={ + id=50616, + orbit=0 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Lasting Trauma", + orbit=7, + orbitIndex=12, + skill=18496, + stats={ + [1]="5% reduced Attack Speed", + [2]="30% increased Magnitude of Ailments you inflict", + [3]="20% increased Duration of Damaging Ailments on Enemies" + } + }, + [18505]={ + connections={ + [1]={ + id=45090, + orbit=0 + }, + [2]={ + id=50616, + orbit=0 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Crushing Verdict", + orbit=7, + orbitIndex=16, + skill=18505, + stats={ + [1]="5% reduced Attack Speed", + [2]="30% increased Stun Buildup", + [3]="50% increased Attack Damage" + } + }, + [18519]={ + connections={ + [1]={ + id=30910, + orbit=-7 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Life Leech and Companion Damage", + orbit=7, + orbitIndex=16, + skill=18519, + stats={ + [1]="8% increased amount of Life Leeched", + [2]="Companions deal 12% increased Damage" + } + }, + [18548]={ + connections={ + [1]={ + id=28992, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=7, + orbitIndex=8, + skill=18548, + stats={ + [1]="3% increased Attack Speed" + } + }, + [18568]={ + connections={ + [1]={ + id=46887, + orbit=-5 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech and Cold Resistance", + orbit=2, + orbitIndex=1, + skill=18568, + stats={ + [1]="+5% to Cold Resistance", + [2]="10% increased amount of Mana Leeched" + } + }, + [18585]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=6127, + orbit=0 + } + }, + group=34, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Armour", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18585, + stats={ + [1]="20% increased Armour" + } + }, + [18624]={ + connections={ + [1]={ + id=39608, + orbit=-2 + }, + [2]={ + id=12329, + orbit=2 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=3, + orbitIndex=22, + skill=18624, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [18629]={ + connections={ + [1]={ + id=64327, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=3, + orbitIndex=0, + skill=18629, + stats={ + [1]="5% increased Block chance" + } + }, + [18651]={ + connections={ + [1]={ + id=11736, + orbit=0 + }, + [2]={ + id=63863, + orbit=0 + } + }, + group=858, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=18651, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [18678]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=28153, + orbit=9 + } + }, + group=315, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Buff Expiry Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18678, + stats={ + [1]="Buffs on you expire 10% slower" + } + }, + [18684]={ + connections={ + }, + flavourText="\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"", + group=127, + icon="Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", + isKeystone=true, + name="Avatar of Fire", + orbit=0, + orbitIndex=0, + skill=18684, + stats={ + [1]="75% of Damage Converted to Fire Damage\nDeal no Non-Fire Damage" + } + }, + [18713]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/MasteryArmourandEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18713, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [18717]={ + connections={ + [1]={ + id=60483, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=18717, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [18737]={ + connections={ + [1]={ + id=17725, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=7, + orbitIndex=6, + skill=18737, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [18742]={ + connections={ + [1]={ + id=7721, + orbit=-6 + }, + [2]={ + id=62732, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=3, + orbitIndex=6, + skill=18742, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [18744]={ + connections={ + [1]={ + id=60324, + orbit=2 + } + }, + group=1108, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=10, + skill=18744, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [18746]={ + connections={ + }, + group=128, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=0, + orbitIndex=0, + skill=18746, + stats={ + [1]="5% increased Block chance" + } + }, + [18793]={ + connections={ + [1]={ + id=33639, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infused Spell Damage", + orbit=2, + orbitIndex=20, + skill=18793, + stats={ + [1]="12% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [18801]={ + connections={ + [1]={ + id=11752, + orbit=0 + }, + [2]={ + id=63360, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Duration", + orbit=7, + orbitIndex=10, + skill=18801, + stats={ + [1]="Banner Skills have 20% increased Duration" + } + }, + [18815]={ + connections={ + [1]={ + id=40990, + orbit=0 + } + }, + group=1400, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=18815, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [18818]={ + connections={ + [1]={ + id=29517, + orbit=0 + }, + [2]={ + id=49461, + orbit=2 + }, + [3]={ + id=21314, + orbit=-2 + } + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage and Speed", + orbit=0, + orbitIndex=0, + skill=18818, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Attack Damage" + } + }, + [18822]={ + connections={ + [1]={ + id=21567, + orbit=-3 + }, + [2]={ + id=47790, + orbit=3 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Damage", + orbit=1, + orbitIndex=7, + skill=18822, + stats={ + [1]="10% increased Damage" + } + }, + [18826]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=47344, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.png", + isNotable=true, + name="Inner Turmoil", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=8, + skill=18826, + stats={ + [1]="Gain 1 Volatility on inflicting an Elemental Ailment", + [2]="Take no Damage from Volatility" + } + }, + [18831]={ + connections={ + [1]={ + id=49545, + orbit=7 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Block", + orbit=2, + orbitIndex=19, + skill=18831, + stats={ + [1]="5% increased Block chance" + } + }, + [18845]={ + connections={ + [1]={ + id=55807, + orbit=-5 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=27384, + name="Spell and Minion Damage", + stats={ + [1]="10% increased Spell Damage", + [2]="Minions deal 10% increased Damage" + } + } + }, + orbit=7, + orbitIndex=11, + skill=18845, + stats={ + [1]="10% increased Spell Damage" + } + }, + [18846]={ + connections={ + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=3, + orbitIndex=8, + skill=18846, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [18849]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.png", + isNotable=true, + name="Shaper of Winter", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=2, + skill=18849, + stats={ + [1]="All Damage from Hits Contributes to Chill Magnitude" + } + }, + [18856]={ + connections={ + [1]={ + id=24491, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Spell Damage", + orbit=3, + orbitIndex=0, + skill=18856, + stats={ + [1]="Invocated Spells deal 15% increased Damage" + } + }, + [18864]={ + connections={ + [1]={ + id=2745, + orbit=0 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Ailment Magnitude", + orbit=2, + orbitIndex=2, + skill=18864, + stats={ + [1]="10% increased Magnitude of Ailments you inflict" + } + }, + [18882]={ + connections={ + [1]={ + id=24045, + orbit=-2 + }, + [2]={ + id=26786, + orbit=0 + }, + [3]={ + id=30047, + orbit=0 + }, + [4]={ + id=29941, + orbit=0 + } + }, + group=957, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=6, + skill=18882, + stats={ + [1]="+5 to any Attribute" + } + }, + [18895]={ + connections={ + [1]={ + id=12661, + orbit=3 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun Threshold from Energy Shield", + orbit=1, + orbitIndex=6, + skill=18895, + stats={ + [1]="Gain additional Stun Threshold equal to 12% of maximum Energy Shield" + } + }, + [18897]={ + connections={ + [1]={ + id=53185, + orbit=5 + } + }, + group=1449, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png", + name="Evasion Rating", + orbit=2, + orbitIndex=4, + skill=18897, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [18910]={ + connections={ + [1]={ + id=10265, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Critical Chance", + orbit=5, + orbitIndex=48, + skill=18910, + stats={ + [1]="10% increased Critical Hit Chance with Spears" + } + }, + [18913]={ + connections={ + [1]={ + id=12419, + orbit=-2 + } + }, + group=950, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage and Duration", + orbit=7, + orbitIndex=22, + skill=18913, + stats={ + [1]="5% increased Chaos Damage", + [2]="5% increased Skill Effect Duration" + } + }, + [18923]={ + connections={ + [1]={ + id=61976, + orbit=0 + }, + [2]={ + id=17118, + orbit=0 + }, + [3]={ + id=39570, + orbit=0 + }, + [4]={ + id=9085, + orbit=0 + } + }, + group=1087, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=36, + skill=18923, + stats={ + [1]="+5 to any Attribute" + } + }, + [18940]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1517, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.png", + isMultipleChoiceOption=true, + name="Shattering Concoction", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=18940, + stats={ + [1]="Grants Skill: Shattering Concoction" + } + }, + [18959]={ + connections={ + [1]={ + id=55843, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Ruinic Helm", + orbit=2, + orbitIndex=14, + skill=18959, + stats={ + [1]="+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet" + } + }, + [18969]={ + connections={ + }, + group=1466, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Speed", + orbit=0, + orbitIndex=0, + skill=18969, + stats={ + [1]="3% increased Attack Speed with Bows" + } + }, + [18970]={ + connections={ + [1]={ + id=17366, + orbit=-3 + }, + [2]={ + id=11938, + orbit=0 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=16, + skill=18970, + stats={ + [1]="+8 to Evasion Rating", + [2]="+5 to maximum Energy Shield" + } + }, + [18972]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34782, + orbit=0 + } + }, + group=155, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png", + isNotable=true, + name="Echoes of Ferocity", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=0, + skill=18972, + stats={ + [1]="15% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [19001]={ + connections={ + [1]={ + id=16786, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Immobilisation Buildup", + orbit=7, + orbitIndex=18, + skill=19001, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [19003]={ + connections={ + [1]={ + id=12166, + orbit=0 + }, + [2]={ + id=3128, + orbit=0 + } + }, + group=1253, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=19003, + stats={ + [1]="10% increased Cold Damage" + } + }, + [19006]={ + connections={ + [1]={ + id=39461, + orbit=0 + } + }, + group=639, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Life", + orbit=2, + orbitIndex=18, + skill=19006, + stats={ + [1]="Minions have 6% increased maximum Life", + [2]="Minions deal 6% increased Damage" + } + }, + [19011]={ + connections={ + [1]={ + id=45363, + orbit=0 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=20, + skill=19011, + stats={ + [1]="10% increased Melee Damage" + } + }, + [19027]={ + connections={ + [1]={ + id=21156, + orbit=-2 + }, + [2]={ + id=7847, + orbit=0 + } + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.png", + name="Charge Duration", + orbit=7, + orbitIndex=12, + skill=19027, + stats={ + [1]="15% increased Endurance, Frenzy and Power Charge Duration" + } + }, + [19044]={ + connections={ + [1]={ + id=53188, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Arcane Intensity", + orbit=1, + orbitIndex=0, + skill=19044, + stats={ + [1]="3% increased Spell Damage per 100 maximum Mana" + } + }, + [19074]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=7, + orbitIndex=6, + skill=19074 + }, + [19104]={ + connections={ + [1]={ + id=29582, + orbit=0 + } + }, + group=986, + icon="Art/2DArt/SkillIcons/passives/eagleeye.png", + isNotable=true, + isSwitchable=true, + name="Eagle Eye", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + id=39628, + name="Reflex Action", + stats={ + [1]="30% increased Parry Damage", + [2]="30% increased Evasion Rating while Parrying" + } + } + }, + orbit=0, + orbitIndex=0, + skill=19104, + stats={ + [1]="+30 to Accuracy Rating", + [2]="10% increased Accuracy Rating" + } + }, + [19112]={ + connections={ + [1]={ + id=36358, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=8, + skill=19112, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [19122]={ + connections={ + [1]={ + id=28432, + orbit=0 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Armour if Consumed Endurance Charge", + orbit=2, + orbitIndex=16, + skill=19122, + stats={ + [1]="20% increased Armour if you've consumed an Endurance Charge Recently" + } + }, + [19125]={ + connections={ + }, + group=760, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Potent Incantation", + orbit=1, + orbitIndex=8, + skill=19125, + stats={ + [1]="30% increased Spell Damage", + [2]="5% reduced Cast Speed" + } + }, + [19129]={ + connections={ + [1]={ + id=55066, + orbit=0 + }, + [2]={ + id=9290, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=3, + orbitIndex=21, + skill=19129, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [19156]={ + connections={ + [1]={ + id=12249, + orbit=-7 + }, + [2]={ + id=17283, + orbit=0 + } + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Immaterial", + orbit=2, + orbitIndex=12, + skill=19156, + stats={ + [1]="50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds", + [2]="30% increased Evasion Rating while you have Energy Shield" + } + }, + [19162]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34143, + orbit=0 + }, + [2]={ + id=31554, + orbit=5 + }, + [3]={ + id=15141, + orbit=0 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=60, + skill=19162, + stats={ + [1]="5% increased Skill Effect Duration", + [2]="12% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [19203]={ + connections={ + [1]={ + id=10260, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Damage", + orbit=2, + orbitIndex=21, + skill=19203, + stats={ + [1]="Channelling Skills deal 12% increased Damage" + } + }, + [19223]={ + connections={ + [1]={ + id=21755, + orbit=0 + }, + [2]={ + id=53166, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=18, + skill=19223, + stats={ + [1]="10% increased Attack Damage" + } + }, + [19224]={ + connections={ + [1]={ + id=32555, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=4, + orbitIndex=66, + skill=19224, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [19233]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=42441, + orbit=0 + } + }, + group=1541, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=19233, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [19236]={ + connections={ + }, + group=153, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Projectile Bulwark", + orbit=0, + orbitIndex=0, + skill=19236, + stats={ + [1]="30% increased Armour", + [2]="Defend with 120% of Armour against Projectile Attacks" + } + }, + [19240]={ + connections={ + [1]={ + id=46358, + orbit=-6 + }, + [2]={ + id=4847, + orbit=5 + } + }, + group=646, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=19240, + stats={ + [1]="+5 to any Attribute" + } + }, + [19249]={ + connections={ + [1]={ + id=33209, + orbit=4 + }, + [2]={ + id=40550, + orbit=0 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Supportive Ancestors", + orbit=6, + orbitIndex=0, + skill=19249, + stats={ + [1]="25% increased Damage while you have a Totem", + [2]="Spells Cast by Totems have 3% increased Cast Speed per Summoned Totem", + [3]="Attacks used by Totems have 3% increased Attack Speed per Summoned Totem" + } + }, + [19277]={ + connections={ + [1]={ + id=44783, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area Damage", + orbit=2, + orbitIndex=12, + skill=19277, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [19288]={ + connections={ + }, + flavourText="Utter trust in your defence unleashes ultimate potential.", + group=961, + icon="Art/2DArt/SkillIcons/passives/GlancingBlows.png", + isKeystone=true, + name="Glancing Blows", + orbit=0, + orbitIndex=0, + skill=19288, + stats={ + [1]="Chance to Evade is Unlucky\nChance to Deflect is Lucky" + } + }, + [19318]={ + connections={ + [1]={ + id=53795, + orbit=5 + } + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=3, + orbitIndex=13, + skill=19318, + stats={ + [1]="20% increased Effect of Puppet Master" + } + }, + [19330]={ + connections={ + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=4, + orbitIndex=52, + skill=19330, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [19337]={ + connections={ + }, + group=1180, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Precision Salvo", + orbit=0, + orbitIndex=0, + skill=19337, + stats={ + [1]="8% increased Projectile Speed", + [2]="6% increased Attack Speed", + [3]="12% increased Accuracy Rating" + } + }, + [19338]={ + connections={ + [1]={ + id=60, + orbit=0 + } + }, + group=1377, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=3, + orbitIndex=0, + skill=19338, + stats={ + [1]="+8 to Dexterity" + } + }, + [19341]={ + connections={ + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=7, + orbitIndex=10, + skill=19341, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [19342]={ + connections={ + [1]={ + id=17553, + orbit=-3 + }, + [2]={ + id=46296, + orbit=0 + }, + [3]={ + id=27493, + orbit=0 + } + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=3, + orbitIndex=8, + skill=19342, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [19355]={ + connections={ + }, + group=1001, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=6, + orbitIndex=4, + skill=19355, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [19359]={ + connections={ + [1]={ + id=35095, + orbit=4 + }, + [2]={ + id=52245, + orbit=0 + } + }, + group=1431, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + name="Chaos Damage and Resistance", + orbit=3, + orbitIndex=2, + skill=19359, + stats={ + [1]="5% increased Chaos Damage", + [2]="+3% to Chaos Resistance" + } + }, + [19370]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.png", + isNotable=true, + name="Hollow Focus Technique", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=71, + skill=19370, + stats={ + [1]="Grants Skill: Hollow Focus" + } + }, + [19424]={ + ascendancyName="Titan", + connections={ + [1]={ + id=60634, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Strength", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=48, + skill=19424, + stats={ + [1]="4% increased Strength" + } + }, + [19426]={ + connections={ + [1]={ + id=15443, + orbit=0 + } + }, + group=1052, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=2, + orbitIndex=4, + skill=19426, + stats={ + [1]="10% increased Physical Damage" + } + }, + [19442]={ + connections={ + [1]={ + id=25170, + orbit=-3 + }, + [2]={ + id=8606, + orbit=0 + } + }, + group=1036, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Prolonged Assault", + orbit=2, + orbitIndex=8, + skill=19442, + stats={ + [1]="16% increased Attack Damage", + [2]="16% increased Skill Effect Duration", + [3]="Buffs on you expire 10% slower" + } + }, + [19461]={ + connections={ + [1]={ + id=64415, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Lightning and Cold Damage", + orbit=3, + orbitIndex=16, + skill=19461, + stats={ + [1]="8% increased Cold Damage", + [2]="8% increased Lightning Damage" + } + }, + [19470]={ + connections={ + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Life and Mana Flask Recovery", + orbit=3, + orbitIndex=17, + skill=19470, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [19482]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=36564, + orbit=0 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=109, + skill=19482, + stats={ + [1]="3% increased maximum Life" + } + }, + [19542]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + [1]={ + id=1448, + orbit=0 + } + }, + group=1308, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=19542 + }, + [19546]={ + connections={ + [1]={ + id=5681, + orbit=0 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="Favourable Odds", + orbit=2, + orbitIndex=4, + skill=19546, + stats={ + [1]="30% increased Block chance while Surrounded", + [2]="10% increased Deflection Rating while Surrounded", + [3]="40% increased Ailment and Stun Threshold while Surrounded" + } + }, + [19563]={ + connections={ + [1]={ + id=47931, + orbit=0 + }, + [2]={ + id=58496, + orbit=-7 + }, + [3]={ + id=6735, + orbit=7 + } + }, + group=155, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage", + orbit=0, + orbitIndex=0, + skill=19563, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [19573]={ + connections={ + [1]={ + id=38479, + orbit=-5 + }, + [2]={ + id=19342, + orbit=-3 + } + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Pierce", + orbit=7, + orbitIndex=11, + skill=19573, + stats={ + [1]="25% chance for Projectiles to Pierce Enemies within 3m distance of you" + } + }, + [19644]={ + connections={ + [1]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Left Hand of Darkness", + orbit=4, + orbitIndex=29, + skill=19644, + stats={ + [1]="Minions have 20% additional Physical Damage Reduction", + [2]="Minions have +23% to Chaos Resistance", + [3]="Attacks Gain 5% of Damage as extra Chaos Damage" + } + }, + [19674]={ + connections={ + [1]={ + id=41493, + orbit=0 + } + }, + group=325, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=3, + orbitIndex=2, + skill=19674, + stats={ + [1]="8% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [19715]={ + connections={ + [1]={ + id=34927, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + isNotable=true, + name="Cremation", + orbit=4, + orbitIndex=66, + skill=19715, + stats={ + [1]="Damage Penetrates 18% Fire Resistance", + [2]="Gain 6% of Elemental Damage as Extra Fire Damage" + } + }, + [19722]={ + connections={ + }, + group=1253, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Thin Ice", + orbit=7, + orbitIndex=10, + skill=19722, + stats={ + [1]="20% increased Freeze Buildup", + [2]="50% increased Damage with Hits against Frozen Enemies" + } + }, + [19749]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=1, + orbitIndex=6, + skill=19749 + }, + [19750]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + connections={ + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=19750 + }, + [19751]={ + connections={ + [1]={ + id=35618, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Threshold", + orbit=2, + orbitIndex=19, + skill=19751, + stats={ + [1]="15% increased Freeze Threshold" + } + }, + [19767]={ + connections={ + [1]={ + id=35223, + orbit=0 + }, + [2]={ + id=13895, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Attack Speed", + orbit=4, + orbitIndex=10, + skill=19767, + stats={ + [1]="3% increased Attack Speed with Spears" + } + }, + [19779]={ + connections={ + [1]={ + id=63891, + orbit=2 + } + }, + group=926, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=2, + orbitIndex=22, + skill=19779, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [19794]={ + connections={ + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude on You", + orbit=3, + orbitIndex=22, + skill=19794, + stats={ + [1]="15% reduced Magnitude of Ignite on you" + } + }, + [19796]={ + connections={ + [1]={ + id=18308, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Attack Damage vs Bleeding Enemies", + orbit=7, + orbitIndex=16, + skill=19796, + stats={ + [1]="16% increased Attack Damage against Bleeding Enemies" + } + }, + [19802]={ + connections={ + [1]={ + id=64399, + orbit=2 + } + }, + group=544, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Damage", + orbit=2, + orbitIndex=8, + skill=19802, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [19808]={ + connections={ + }, + group=1043, + icon="Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png", + isSwitchable=true, + name="Ailment Chance", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + id=28615, + name="Accuracy", + stats={ + [1]="8% increased Accuracy Rating" + } + } + }, + orbit=0, + orbitIndex=0, + skill=19808, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [19820]={ + connections={ + [1]={ + id=5686, + orbit=0 + } + }, + group=202, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=20, + skill=19820, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Cold Damage" + } + }, + [19846]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=1, + orbitIndex=6, + skill=19846 + }, + [19873]={ + connections={ + [1]={ + id=13233, + orbit=4 + }, + [2]={ + id=17655, + orbit=-9 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area of Effect", + orbit=7, + orbitIndex=4, + skill=19873, + stats={ + [1]="5% increased Area of Effect" + } + }, + [19880]={ + connections={ + [1]={ + id=59390, + orbit=0 + } + }, + group=1203, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Evasion if Consumed Frenzy Charge", + orbit=2, + orbitIndex=0, + skill=19880, + stats={ + [1]="20% increased Evasion Rating if you've consumed a Frenzy Charge Recently" + } + }, + [19942]={ + connections={ + [1]={ + id=1144, + orbit=0 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Attack Elemental Damage", + orbit=2, + orbitIndex=1, + skill=19942, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [19953]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=50142, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=19953, + stats={ + [1]="15% increased Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [19955]={ + connections={ + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Endless Blizzard", + orbit=4, + orbitIndex=6, + skill=19955, + stats={ + [1]="+1 to Level of all Cold Skills" + } + }, + [19966]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=829, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=19, + skill=19966, + stats={ + [1]="25% increased Minion Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [19998]={ + connections={ + [1]={ + id=44430, + orbit=0 + } + }, + group=889, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Damage", + orbit=0, + orbitIndex=0, + skill=19998, + stats={ + [1]="12% increased Damage with Crossbows" + } + }, + [20008]={ + connections={ + }, + group=1164, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Unleash Fire", + orbit=7, + orbitIndex=4, + skill=20008, + stats={ + [1]="30% increased Stun Buildup with Melee Damage", + [2]="Projectiles deal 75% increased Damage against Heavy Stunned Enemies" + } + }, + [20015]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=402, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=20015 + }, + [20024]={ + connections={ + [1]={ + id=44223, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=7, + orbitIndex=22, + skill=20024, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [20032]={ + connections={ + [1]={ + id=28680, + orbit=0 + }, + [2]={ + id=56762, + orbit=0 + } + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Erraticism", + orbit=2, + orbitIndex=0, + skill=20032, + stats={ + [1]="16% increased Cast Speed if you've dealt a Critical Hit Recently", + [2]="10% reduced Critical Hit Chance" + } + }, + [20044]={ + connections={ + [1]={ + id=30736, + orbit=0 + } + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=7, + skill=20044, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [20049]={ + connections={ + [1]={ + id=32818, + orbit=5 + } + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=7, + orbitIndex=0, + skill=20049, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [20091]={ + connections={ + [1]={ + id=46565, + orbit=0 + } + }, + group=564, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=5, + orbitIndex=43, + skill=20091, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [20105]={ + connections={ + [1]={ + id=13895, + orbit=0 + } + }, + group=1432, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Accuracy", + orbit=0, + orbitIndex=0, + skill=20105, + stats={ + [1]="10% increased Accuracy Rating with Spears" + } + }, + [20115]={ + connections={ + [1]={ + id=49734, + orbit=0 + }, + [2]={ + id=24420, + orbit=0 + }, + [3]={ + id=63243, + orbit=0 + }, + [4]={ + id=30258, + orbit=0 + } + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=20115, + stats={ + [1]="+5 to any Attribute" + } + }, + [20119]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=20119 + }, + [20140]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=914, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=20140 + }, + [20195]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=56, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.png", + isNotable=true, + name="Spiked Plates", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=20195, + stats={ + [1]="Body Armour grants 100% increased Thorns damage" + } + }, + [20205]={ + connections={ + [1]={ + id=33059, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold if no recent Stun", + orbit=2, + orbitIndex=4, + skill=20205, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [20236]={ + connections={ + [1]={ + id=4346, + orbit=0 + } + }, + group=1119, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack and Cast Speed on Critical", + orbit=0, + orbitIndex=0, + skill=20236, + stats={ + [1]="3% increased Attack Speed if you've dealt a Critical Hit Recently", + [2]="3% increased Cast Speed if you've dealt a Critical Hit Recently" + } + }, + [20251]={ + connections={ + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Splitting Ground", + orbit=3, + orbitIndex=23, + skill=20251, + stats={ + [1]="Skills which create Fissures have a 20% chance to create an additional Fissure" + } + }, + [20289]={ + connections={ + [1]={ + id=61896, + orbit=0 + }, + [2]={ + id=50767, + orbit=0 + } + }, + group=112, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png", + isNotable=true, + name="Frozen Claw", + orbit=0, + orbitIndex=0, + skill=20289, + stats={ + [1]="Gain 8% of Damage as Extra Cold Damage while Shapeshifted" + } + }, + [20303]={ + connections={ + [1]={ + id=9908, + orbit=0 + } + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=16, + skill=20303, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [20350]={ + connections={ + [1]={ + id=4948, + orbit=0 + }, + [2]={ + id=47006, + orbit=0 + }, + [3]={ + id=28304, + orbit=0 + } + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=10, + skill=20350, + stats={ + [1]="20% increased Damage against Enemies with Fully Broken Armour" + } + }, + [20387]={ + connections={ + [1]={ + id=57810, + orbit=0 + } + }, + group=963, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=20387, + stats={ + [1]="15% increased chance to Shock" + } + }, + [20388]={ + connections={ + }, + group=597, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Regenerative Flesh", + orbit=2, + orbitIndex=22, + skill=20388, + stats={ + [1]="6% of Damage taken Recouped as Life", + [2]="Minions Recoup 15% of Damage taken as Life" + } + }, + [20391]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=16947, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=15, + skill=20391, + stats={ + [1]="8% increased Block chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [20397]={ + connections={ + [1]={ + id=4577, + orbit=3 + }, + [2]={ + id=8556, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Authority", + orbit=7, + orbitIndex=11, + skill=20397, + stats={ + [1]="15% increased Area of Effect for Attacks", + [2]="10% increased Cooldown Recovery Rate" + } + }, + [20414]={ + connections={ + [1]={ + id=35043, + orbit=0 + }, + [2]={ + id=52410, + orbit=0 + }, + [3]={ + id=50146, + orbit=0 + } + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Reprisal", + orbit=4, + orbitIndex=31, + skill=20414, + stats={ + [1]="25% increased Parried Debuff Magnitude" + } + }, + [20416]={ + connections={ + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Grit", + orbit=0, + orbitIndex=0, + skill=20416, + stats={ + [1]="10% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + [2]="+1 to Maximum Endurance Charges" + } + }, + [20429]={ + connections={ + [1]={ + id=28797, + orbit=0 + } + }, + group=1468, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Speed", + orbit=6, + orbitIndex=62, + skill=20429, + stats={ + [1]="3% increased Attack Speed with Daggers" + } + }, + [20437]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=39552, + orbit=5 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Attributes", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=7, + skill=20437, + stats={ + [1]="+5 to all Attributes" + } + }, + [20467]={ + connections={ + [1]={ + id=58312, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Culling Strike Threshold", + orbit=3, + orbitIndex=12, + skill=20467, + stats={ + [1]="5% increased Culling Strike Threshold" + } + }, + [20496]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11984, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=6, + skill=20496, + stats={ + [1]="15% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [20499]={ + connections={ + [1]={ + id=34327, + orbit=0 + }, + [2]={ + id=2336, + orbit=-2 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge Effect", + orbit=7, + orbitIndex=13, + skill=20499, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [20504]={ + connections={ + [1]={ + id=62341, + orbit=-5 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=0, + orbitIndex=0, + skill=20504, + stats={ + [1]="Recover 5 Life when you Block" + } + }, + [20511]={ + connections={ + [1]={ + id=53804, + orbit=-7 + }, + [2]={ + id=49259, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + isNotable=true, + name="Cremating Cries", + orbit=3, + orbitIndex=14, + skill=20511, + stats={ + [1]="Empowered Attacks Gain 15% of Physical Damage as Extra Fire damage" + } + }, + [20547]={ + connections={ + [1]={ + id=33340, + orbit=0 + }, + [2]={ + id=34412, + orbit=-2 + } + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=7, + orbitIndex=11, + skill=20547, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [20558]={ + connections={ + }, + group=225, + icon="Art/2DArt/SkillIcons/passives/minionstr.png", + isNotable=true, + name="Among the Hordes", + orbit=2, + orbitIndex=20, + skill=20558, + stats={ + [1]="3% increased Movement Speed", + [2]="15% increased Attack Damage", + [3]="Minions have 10% increased Movement Speed" + } + }, + [20582]={ + connections={ + [1]={ + id=55329, + orbit=0 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parried Duration", + orbit=6, + orbitIndex=21, + skill=20582, + stats={ + [1]="15% increased Parried Debuff Duration" + } + }, + [20637]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.png", + isOnlyImage=true, + name="Damage Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=20637, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [20641]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + [1]={ + id=51934, + orbit=0 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=1, + orbitIndex=1, + skill=20641 + }, + [20645]={ + connections={ + [1]={ + id=64284, + orbit=4 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=3, + orbitIndex=14, + skill=20645, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [20649]={ + connections={ + [1]={ + id=62998, + orbit=0 + }, + [2]={ + id=2582, + orbit=0 + }, + [3]={ + id=65290, + orbit=0 + } + }, + group=1437, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=20649, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [20677]={ + connections={ + [1]={ + id=9586, + orbit=0 + }, + [2]={ + id=535, + orbit=0 + } + }, + group=1161, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="For the Jugular", + orbit=0, + orbitIndex=0, + skill=20677, + stats={ + [1]="25% increased Critical Damage Bonus", + [2]="+10 to Intelligence" + } + }, + [20691]={ + connections={ + [1]={ + id=41739, + orbit=0 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=8, + skill=20691, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [20701]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=35880, + orbit=3 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.png", + isNotable=true, + name="Instruments of Power", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=4, + skill=20701, + stats={ + [1]="You can equip a Focus while wielding a Staff", + [2]="50% reduced bonuses gained from Equipped Focus" + } + }, + [20718]={ + connections={ + [1]={ + id=30979, + orbit=-3 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Duration", + orbit=7, + orbitIndex=12, + skill=20718, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [20744]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=1, + orbitIndex=3, + skill=20744 + }, + [20772]={ + ascendancyName="Lich", + connections={ + [1]={ + id=2877, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=15028, + name="Minion Duration", + stats={ + [1]="15% increased Minion Duration" + } + } + }, + orbit=9, + orbitIndex=114, + skill=20772, + stats={ + [1]="3% increased maximum Mana" + } + }, + [20779]={ + connections={ + [1]={ + id=43431, + orbit=9 + }, + [2]={ + id=50239, + orbit=5 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=3, + orbitIndex=0, + skill=20779, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [20782]={ + connections={ + [1]={ + id=52191, + orbit=-3 + }, + [2]={ + id=42361, + orbit=0 + } + }, + group=1266, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=8, + skill=20782, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [20787]={ + connections={ + [1]={ + id=5390, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=21, + skill=20787, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [20791]={ + connections={ + [1]={ + id=13777, + orbit=0 + }, + [2]={ + id=11741, + orbit=0 + } + }, + group=210, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Power Charge Duration and Energy Shield", + orbit=2, + orbitIndex=10, + skill=20791, + stats={ + [1]="10% increased Power Charge Duration", + [2]="10% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [20820]={ + connections={ + [1]={ + id=40166, + orbit=0 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=12, + skill=20820, + stats={ + [1]="3% increased Attack Speed" + } + }, + [20830]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=37078, + orbit=8 + } + }, + group=318, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=20830, + stats={ + [1]="8% increased Area of Effect" + } + }, + [20831]={ + connections={ + [1]={ + id=29843, + orbit=0 + }, + [2]={ + id=44875, + orbit=0 + } + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png", + isNotable=true, + name="Catlike Agility", + orbit=2, + orbitIndex=14, + skill=20831, + stats={ + [1]="25% increased Evasion Rating", + [2]="40% increased Evasion Rating if you've Dodge Rolled Recently", + [3]="3% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [20837]={ + connections={ + [1]={ + id=61104, + orbit=0 + } + }, + group=1049, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + name="Knockback", + orbit=0, + orbitIndex=0, + skill=20837, + stats={ + [1]="8% increased Knockback Distance" + } + }, + [20842]={ + connections={ + [1]={ + id=48026, + orbit=0 + }, + [2]={ + id=4661, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Area", + orbit=3, + orbitIndex=12, + skill=20842, + stats={ + [1]="Banner Skills have 12% increased Area of Effect" + } + }, + [20848]={ + connections={ + [1]={ + id=16721, + orbit=0 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=7, + orbitIndex=8, + skill=20848, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [20861]={ + connections={ + [1]={ + id=8522, + orbit=0 + }, + [2]={ + id=45350, + orbit=0 + }, + [3]={ + id=17672, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Spell Damage", + orbit=7, + orbitIndex=12, + skill=20861, + stats={ + [1]="Invocated Spells deal 15% increased Damage" + } + }, + [20895]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=47184, + orbit=0 + } + }, + group=18, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png", + name="Strength", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=20895, + stats={ + [1]="5% increased Strength" + } + }, + [20909]={ + connections={ + [1]={ + id=44891, + orbit=0 + } + }, + group=1422, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=1, + skill=20909, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [20916]={ + connections={ + [1]={ + id=59355, + orbit=0 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Blinding Strike", + orbit=7, + orbitIndex=8, + skill=20916, + stats={ + [1]="24% increased Attack Damage", + [2]="10% chance to Blind Enemies on Hit with Attacks" + } + }, + [20963]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=17587, + orbit=0 + } + }, + group=166, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Calculated Hunter", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=18, + skill=20963, + stats={ + [1]="5% reduced Skill Speed", + [2]="50% increased Critical Hit Chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [20989]={ + connections={ + [1]={ + id=42984, + orbit=0 + }, + [2]={ + id=30141, + orbit=0 + } + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Attack Area", + orbit=3, + orbitIndex=9, + skill=20989, + stats={ + [1]="6% increased Area of Effect" + } + }, + [21017]={ + connections={ + [1]={ + id=26969, + orbit=-7 + }, + [2]={ + id=55789, + orbit=7 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=5, + orbitIndex=0, + skill=21017, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [21070]={ + connections={ + [1]={ + id=57388, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=7, + orbitIndex=20, + skill=21070, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [21077]={ + connections={ + [1]={ + id=354, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Cooldown Recovery Rate", + orbit=3, + orbitIndex=12, + skill=21077, + stats={ + [1]="15% increased Cooldown Recovery Rate for Grenade Skills" + } + }, + [21080]={ + connections={ + [1]={ + id=1869, + orbit=-4 + } + }, + group=1089, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=19, + skill=21080, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [21081]={ + connections={ + [1]={ + id=25745, + orbit=5 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=5, + orbitIndex=42, + skill=21081, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [21089]={ + connections={ + [1]={ + id=31848, + orbit=7 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns Ignore Armour", + orbit=7, + orbitIndex=20, + skill=21089, + stats={ + [1]="Thorns Damage has 25% chance to ignore Enemy Armour" + } + }, + [21096]={ + connections={ + [1]={ + id=56388, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Area", + orbit=4, + orbitIndex=69, + skill=21096, + stats={ + [1]="Banner Skills have 12% increased Area of Effect" + } + }, + [21111]={ + connections={ + [1]={ + id=33099, + orbit=-5 + } + }, + group=1268, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Activation Chance", + orbit=7, + orbitIndex=11, + skill=21111, + stats={ + [1]="10% chance when a Charm is used to use another Charm without consuming Charges" + } + }, + [21112]={ + connections={ + [1]={ + id=31055, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + orbit=4, + orbitIndex=57, + skill=21112, + stats={ + [1]="10% increased Damage with Bows" + } + }, + [21127]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=4, + orbitIndex=30, + skill=21127 + }, + [21142]={ + connections={ + [1]={ + id=55829, + orbit=7 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=7, + orbitIndex=5, + skill=21142, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [21156]={ + connections={ + [1]={ + id=34623, + orbit=0 + } + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.png", + name="Charge Duration", + orbit=7, + orbitIndex=8, + skill=21156, + stats={ + [1]="15% increased Endurance, Frenzy and Power Charge Duration" + } + }, + [21161]={ + connections={ + [1]={ + id=10500, + orbit=5 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Movement Penalty with Raised Shield", + orbit=3, + orbitIndex=7, + skill=21161, + stats={ + [1]="10% reduced Movement Speed Penalty while Actively Blocking" + } + }, + [21164]={ + connections={ + [1]={ + id=62670, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Fleshcrafting", + orbit=7, + orbitIndex=10, + skill=21164, + stats={ + [1]="Minions gain 15% of their maximum Life as Extra maximum Energy Shield", + [2]="4% of Maximum Life Converted to Energy Shield" + } + }, + [21184]={ + connections={ + [1]={ + id=20251, + orbit=0 + } + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Attack Area", + orbit=7, + orbitIndex=3, + skill=21184, + stats={ + [1]="6% increased Area of Effect" + } + }, + [21205]={ + connections={ + [1]={ + id=44176, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=5, + orbitIndex=60, + skill=21205, + stats={ + [1]="+3 to all Attributes" + } + }, + [21206]={ + connections={ + [1]={ + id=45899, + orbit=0 + }, + [2]={ + id=11505, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Explosive Impact", + orbit=3, + orbitIndex=8, + skill=21206, + stats={ + [1]="15% increased Area of Effect", + [2]="Burning Enemies you kill have a 5% chance to Explode, dealing a\ntenth of their maximum Life as Fire Damage" + } + }, + [21208]={ + connections={ + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Activation Speed and Effect", + orbit=7, + orbitIndex=14, + skill=21208, + stats={ + [1]="3% increased Curse Magnitudes", + [2]="10% faster Curse Activation" + } + }, + [21213]={ + connections={ + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + isNotable=true, + name="Cirel of Tarth's Light", + orbit=7, + orbitIndex=10, + skill=21213, + stats={ + [1]="+10% of Armour also applies to Elemental Damage", + [2]="10% faster start of Energy Shield Recharge", + [3]="10% increased Light Radius", + [4]="10% increased Accuracy Rating", + [5]="10% increased Area of Effect" + } + }, + [21218]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=7066, + orbit=0 + }, + [2]={ + id=13950, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=5, + skill=21218, + stats={ + [1]="16% increased Damage with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [21225]={ + connections={ + [1]={ + id=38369, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Damage", + orbit=3, + orbitIndex=16, + skill=21225, + stats={ + [1]="10% increased Damage with Spears" + } + }, + [21227]={ + connections={ + [1]={ + id=36290, + orbit=-2 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=4, + orbitIndex=39, + skill=21227, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [21245]={ + connections={ + }, + group=518, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Spell Critical Chance", + orbit=0, + orbitIndex=0, + skill=21245, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [21274]={ + connections={ + [1]={ + id=39298, + orbit=0 + } + }, + group=866, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=21274, + stats={ + [1]="+5 to any Attribute" + } + }, + [21279]={ + connections={ + [1]={ + id=35534, + orbit=-3 + } + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Effect and Blind Effect", + orbit=2, + orbitIndex=21, + skill=21279, + stats={ + [1]="8% increased Effect of your Mark Skills", + [2]="10% increased Blind Effect" + } + }, + [21280]={ + connections={ + [1]={ + id=28050, + orbit=0 + }, + [2]={ + id=61312, + orbit=0 + }, + [3]={ + id=40630, + orbit=0 + } + }, + group=1046, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=21280, + stats={ + [1]="+5 to any Attribute" + } + }, + [21284]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=30904, + orbit=0 + } + }, + group=8, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Life and Mana Regeneration Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=21284, + stats={ + [1]="8% increased Life Regeneration rate", + [2]="8% increased Mana Regeneration Rate" + } + }, + [21286]={ + connections={ + [1]={ + id=4128, + orbit=4 + }, + [2]={ + id=45992, + orbit=0 + } + }, + group=467, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=14, + skill=21286, + stats={ + [1]="15% increased Armour" + } + }, + [21291]={ + connections={ + [1]={ + id=59785, + orbit=0 + }, + [2]={ + id=32836, + orbit=-7 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Slow Effect on You", + orbit=2, + orbitIndex=17, + skill=21291, + stats={ + [1]="10% increased Armour", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [21314]={ + connections={ + [1]={ + id=50912, + orbit=-4 + } + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=17, + skill=21314, + stats={ + [1]="10% increased Attack Damage" + } + }, + [21324]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern.png", + connections={ + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Buckler Mastery", + orbit=2, + orbitIndex=7, + skill=21324 + }, + [21327]={ + connections={ + [1]={ + id=56876, + orbit=0 + } + }, + group=319, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Energy Shield if Consumed Power Charge", + orbit=2, + orbitIndex=14, + skill=21327, + stats={ + [1]="20% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [21336]={ + connections={ + [1]={ + id=62984, + orbit=0 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=2, + orbitIndex=19, + skill=21336, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [21349]={ + connections={ + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.png", + isNotable=true, + name="The Quick Fox", + orbit=2, + orbitIndex=4, + skill=21349, + stats={ + [1]="20% increased Deflection Rating while moving" + } + }, + [21374]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=21, + skill=21374, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [21380]={ + connections={ + }, + group=1218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Preemptive Strike", + orbit=7, + orbitIndex=9, + skill=21380, + stats={ + [1]="100% increased Critical Damage Bonus against Enemies that are on Full Life" + } + }, + [21387]={ + connections={ + [1]={ + id=53719, + orbit=0 + }, + [2]={ + id=3988, + orbit=0 + } + }, + group=182, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=21387, + stats={ + [1]="+5 to any Attribute" + } + }, + [21390]={ + connections={ + [1]={ + id=7972, + orbit=0 + } + }, + group=283, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Endurance Charge Duration", + orbit=2, + orbitIndex=12, + skill=21390, + stats={ + [1]="20% increased Endurance Charge Duration" + } + }, + [21404]={ + connections={ + [1]={ + id=42825, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=18, + skill=21404, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [21413]={ + connections={ + [1]={ + id=28408, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Later Rage Loss Start ", + orbit=7, + orbitIndex=19, + skill=21413, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [21438]={ + connections={ + [1]={ + id=1019, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=7, + orbitIndex=7, + skill=21438, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [21453]={ + connections={ + [1]={ + id=10286, + orbit=0 + } + }, + group=220, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png", + isNotable=true, + name="Breakage", + orbit=0, + orbitIndex=0, + skill=21453, + stats={ + [1]="Break 60% increased Armour", + [2]="10% chance to Defend with 200% of Armour" + } + }, + [21468]={ + connections={ + [1]={ + id=39274, + orbit=6 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=3, + orbitIndex=12, + skill=21468, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [21495]={ + connections={ + }, + group=1271, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=14, + skill=21495, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [21519]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=765, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Shared Companion Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=41, + skill=21519, + stats={ + [1]="Companions deal 10% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [21537]={ + connections={ + }, + group=1474, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + isNotable=true, + name="Fervour", + orbit=2, + orbitIndex=16, + skill=21537, + stats={ + [1]="+2 to Maximum Frenzy Charges" + } + }, + [21540]={ + connections={ + [1]={ + id=27658, + orbit=-3 + } + }, + group=836, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=21540, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [21549]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=58, + skill=21549, + stats={ + [1]="20% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [21567]={ + connections={ + [1]={ + id=59710, + orbit=0 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Spell Damage", + orbit=7, + orbitIndex=23, + skill=21567, + stats={ + [1]="12% increased Spell Damage if you have Shapeshifted to Human form Recently" + } + }, + [21568]={ + connections={ + [1]={ + id=26196, + orbit=0 + }, + [2]={ + id=26300, + orbit=-5 + }, + [3]={ + id=41105, + orbit=0 + } + }, + group=290, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=21568, + stats={ + [1]="+5 to any Attribute" + } + }, + [21572]={ + connections={ + [1]={ + id=6660, + orbit=-7 + }, + [2]={ + id=7526, + orbit=0 + } + }, + group=1223, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Damage against Ailments", + orbit=2, + orbitIndex=20, + skill=21572, + stats={ + [1]="12% increased Damage with Hits against Enemies affected by Elemental Ailments" + } + }, + [21606]={ + connections={ + [1]={ + id=2606, + orbit=0 + }, + [2]={ + id=29148, + orbit=0 + } + }, + group=597, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=12, + skill=21606, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [21627]={ + connections={ + [1]={ + id=19796, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=2, + orbitIndex=12, + skill=21627, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [21670]={ + connections={ + [1]={ + id=29358, + orbit=0 + } + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=1, + orbitIndex=7, + skill=21670, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [21684]={ + connections={ + [1]={ + id=1214, + orbit=5 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block and Shield Defences", + orbit=2, + orbitIndex=6, + skill=21684, + stats={ + [1]="4% increased Block chance", + [2]="15% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [21713]={ + connections={ + [1]={ + id=11604, + orbit=0 + }, + [2]={ + id=50588, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=20, + skill=21713, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [21716]={ + connections={ + [1]={ + id=9583, + orbit=-5 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=4, + orbitIndex=9, + skill=21716, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [21721]={ + connections={ + [1]={ + id=15899, + orbit=0 + }, + [2]={ + id=55066, + orbit=0 + }, + [3]={ + id=62194, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=3, + orbitIndex=4, + skill=21721, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [21746]={ + connections={ + [1]={ + id=46782, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=21746, + stats={ + [1]="+5 to any Attribute" + } + }, + [21748]={ + connections={ + [1]={ + id=54725, + orbit=0 + }, + [2]={ + id=6570, + orbit=0 + } + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Impending Doom", + orbit=7, + orbitIndex=6, + skill=21748, + stats={ + [1]="40% faster Curse Activation", + [2]="Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired" + } + }, + [21755]={ + connections={ + [1]={ + id=54127, + orbit=0 + }, + [2]={ + id=48635, + orbit=0 + }, + [3]={ + id=61281, + orbit=0 + }, + [4]={ + id=52274, + orbit=0 + } + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=21755, + stats={ + [1]="+5 to any Attribute" + } + }, + [21779]={ + connections={ + [1]={ + id=57204, + orbit=0 + } + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=19, + skill=21779, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [21784]={ + connections={ + [1]={ + id=50118, + orbit=0 + }, + [2]={ + id=34443, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + isNotable=true, + name="Pack Encouragement", + orbit=7, + orbitIndex=11, + skill=21784, + stats={ + [1]="5% increased Attack Damage for each Minion in your Presence, up to a maximum of 80%" + } + }, + [21788]={ + connections={ + [1]={ + id=8573, + orbit=0 + }, + [2]={ + id=34612, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + orbit=5, + orbitIndex=21, + skill=21788, + stats={ + [1]="12% increased Damage with Bows" + } + }, + [21792]={ + connections={ + [1]={ + id=29899, + orbit=2 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Life and Mana on Kill", + orbit=1, + orbitIndex=0, + skill=21792, + stats={ + [1]="Recover 1% of maximum Life on Kill", + [2]="Recover 1% of maximum Mana on Kill" + } + }, + [21801]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + connections={ + }, + group=1226, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.png", + isOnlyImage=true, + name="Chaos Mastery", + orbit=1, + orbitIndex=10, + skill=21801 + }, + [21809]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=19162, + orbit=-6 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=54, + skill=21809, + stats={ + [1]="5% increased Skill Effect Duration", + [2]="12% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [21861]={ + connections={ + [1]={ + id=65243, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=18, + skill=21861, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [21871]={ + connections={ + [1]={ + id=51847, + orbit=0 + }, + [2]={ + id=37872, + orbit=0 + }, + [3]={ + id=25213, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage with nearby Ally", + orbit=7, + orbitIndex=8, + skill=21871, + stats={ + [1]="16% increased Attack Damage while you have an Ally in your Presence" + } + }, + [21885]={ + connections={ + [1]={ + id=1352, + orbit=0 + } + }, + group=258, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold and Strength", + orbit=7, + orbitIndex=14, + skill=21885, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [21945]={ + connections={ + [1]={ + id=61718, + orbit=0 + }, + [2]={ + id=26572, + orbit=0 + }, + [3]={ + id=39128, + orbit=0 + }, + [4]={ + id=54545, + orbit=0 + } + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Damage and Criticals vs Dazed Enemies", + orbit=0, + orbitIndex=0, + skill=21945, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [21982]={ + connections={ + [1]={ + id=47371, + orbit=0 + } + }, + group=367, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage and Bleeding Chance", + orbit=2, + orbitIndex=18, + skill=21982, + stats={ + [1]="5% chance to inflict Bleeding on Hit", + [2]="Empowered Attacks deal 10% increased Damage" + } + }, + [21984]={ + connections={ + [1]={ + id=61403, + orbit=0 + } + }, + group=1190, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=4, + skill=21984 + }, + [21985]={ + connections={ + [1]={ + id=48925, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Skill Effect Duration", + orbit=7, + orbitIndex=4, + skill=21985, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [22045]={ + connections={ + [1]={ + id=13505, + orbit=3 + } + }, + group=578, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=14, + skill=22045, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [22049]={ + connections={ + [1]={ + id=60505, + orbit=0 + } + }, + group=1059, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + id=28255, + name="Melee and Projectile Damage", + stats={ + [1]="10% increased Melee Damage", + [2]="10% increased Projectile Damage" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22049, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [22057]={ + connections={ + [1]={ + id=30143, + orbit=2 + }, + [2]={ + id=36808, + orbit=4 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Shield Defences", + orbit=7, + orbitIndex=21, + skill=22057, + stats={ + [1]="25% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [22063]={ + connections={ + [1]={ + id=5797, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Freeze Buildup and Cold Damage", + orbit=2, + orbitIndex=22, + skill=22063, + stats={ + [1]="8% increased Cold Damage", + [2]="8% increased Freeze Buildup" + } + }, + [22115]={ + connections={ + [1]={ + id=61263, + orbit=0 + }, + [2]={ + id=59446, + orbit=0 + } + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Intelligence", + orbit=1, + orbitIndex=10, + skill=22115, + stats={ + [1]="+8 to Intelligence" + } + }, + [22133]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=39857, + orbit=0 + } + }, + group=388, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Cooldown", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=4, + skill=22133, + stats={ + [1]="Minions have 25% increased Cooldown Recovery Rate for Command Skills" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [22141]={ + connections={ + [1]={ + id=54521, + orbit=0 + }, + [2]={ + id=51797, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=6, + skill=22141, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [22147]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=18678, + orbit=0 + }, + [2]={ + id=50219, + orbit=0 + }, + [3]={ + id=1579, + orbit=0 + }, + [4]={ + id=27990, + orbit=-4 + }, + [5]={ + id=43128, + orbit=4 + }, + [6]={ + id=54194, + orbit=0 + } + }, + group=359, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Chronomancer", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=22147 + }, + [22152]={ + connections={ + [1]={ + id=10382, + orbit=0 + }, + [2]={ + id=15304, + orbit=0 + } + }, + group=1151, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=10, + skill=22152, + stats={ + [1]="3% increased Cast Speed" + } + }, + [22185]={ + connections={ + [1]={ + id=17796, + orbit=5 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Debuff Expiry Rate", + orbit=3, + orbitIndex=9, + skill=22185, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [22188]={ + connections={ + [1]={ + id=38763, + orbit=-4 + }, + [2]={ + id=21274, + orbit=0 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=7, + orbitIndex=0, + skill=22188, + stats={ + [1]="6% increased Reservation Efficiency of Herald Skills" + } + }, + [22208]={ + connections={ + [1]={ + id=15207, + orbit=0 + } + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Critical Chance", + orbit=7, + orbitIndex=18, + skill=22208, + stats={ + [1]="8% increased Critical Hit Chance for Attacks", + [2]="8% increased Accuracy Rating" + } + }, + [22219]={ + connections={ + [1]={ + id=52351, + orbit=-7 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=16, + skill=22219, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [22221]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57079, + orbit=-7 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=22221, + stats={ + [1]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [22270]={ + connections={ + [1]={ + id=1144, + orbit=0 + }, + [2]={ + id=12471, + orbit=0 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=13, + skill=22270, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [22271]={ + connections={ + [1]={ + id=15083, + orbit=0 + } + }, + group=848, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=22271, + stats={ + [1]="15% increased chance to Shock" + } + }, + [22290]={ + connections={ + [1]={ + id=48821, + orbit=-6 + }, + [2]={ + id=36302, + orbit=0 + } + }, + group=778, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Chance", + orbit=3, + orbitIndex=12, + skill=22290, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [22314]={ + connections={ + [1]={ + id=51184, + orbit=0 + }, + [2]={ + id=51968, + orbit=5 + } + }, + group=745, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=53140, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22314, + stats={ + [1]="8% increased Elemental Damage" + } + }, + [22329]={ + connections={ + [1]={ + id=58526, + orbit=-2 + } + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=7, + orbitIndex=11, + skill=22329, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [22331]={ + connections={ + [1]={ + id=8983, + orbit=0 + }, + [2]={ + id=40200, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Resistances", + orbit=1, + orbitIndex=3, + skill=22331, + stats={ + [1]="Minions have +8% to all Elemental Resistances" + } + }, + [22359]={ + connections={ + [1]={ + id=60692, + orbit=-2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=36, + skill=22359, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [22368]={ + connections={ + [1]={ + id=63182, + orbit=0 + }, + [2]={ + id=29930, + orbit=0 + }, + [3]={ + id=16484, + orbit=0 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=4, + orbitIndex=5, + skill=22368, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [22393]={ + connections={ + [1]={ + id=28458, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=12, + skill=22393, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [22419]={ + connections={ + [1]={ + id=18407, + orbit=0 + }, + [2]={ + id=4739, + orbit=0 + } + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22419, + stats={ + [1]="+5 to any Attribute" + } + }, + [22439]={ + connections={ + [1]={ + id=5936, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=12, + skill=22439, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [22484]={ + connections={ + [1]={ + id=5398, + orbit=-4 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast Speed", + orbit=7, + orbitIndex=18, + skill=22484, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed" + } + }, + [22517]={ + connections={ + [1]={ + id=59644, + orbit=4 + }, + [2]={ + id=32896, + orbit=-4 + } + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=7, + orbitIndex=0, + skill=22517, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [22532]={ + connections={ + [1]={ + id=60488, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + isNotable=true, + name="Fearful Paralysis", + orbit=2, + orbitIndex=1, + skill=22532, + stats={ + [1]="Enemies are Intimidated for 4 seconds when you Immobilise them" + } + }, + [22533]={ + connections={ + [1]={ + id=26663, + orbit=-2 + }, + [2]={ + id=21274, + orbit=0 + } + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=7, + orbitIndex=23, + skill=22533, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [22538]={ + connections={ + [1]={ + id=64659, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=18, + skill=22538, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [22541]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=5, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.png", + isNotable=true, + name="Heat of the Forge", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=22541, + stats={ + [1]="Grants Skill: Fire Spell on Hit" + } + }, + [22556]={ + connections={ + [1]={ + id=11257, + orbit=0 + }, + [2]={ + id=35028, + orbit=7 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Evasion while Surrounded", + orbit=3, + orbitIndex=15, + skill=22556, + stats={ + [1]="30% increased Evasion Rating while Surrounded" + } + }, + [22558]={ + connections={ + [1]={ + id=55933, + orbit=0 + }, + [2]={ + id=20547, + orbit=0 + }, + [3]={ + id=62378, + orbit=0 + } + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=66, + skill=22558, + stats={ + [1]="+5 to any Attribute" + } + }, + [22565]={ + connections={ + [1]={ + id=26648, + orbit=0 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=1, + skill=22565, + stats={ + [1]="10% increased Armour", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [22616]={ + connections={ + [1]={ + id=51052, + orbit=0 + }, + [2]={ + id=17468, + orbit=0 + }, + [3]={ + id=48631, + orbit=0 + }, + [4]={ + id=19122, + orbit=0 + } + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=22616, + stats={ + [1]="+5 to any Attribute" + } + }, + [22626]={ + connections={ + [1]={ + id=45227, + orbit=0 + }, + [2]={ + id=48717, + orbit=0 + } + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png", + isNotable=true, + name="Irreparable", + orbit=7, + orbitIndex=4, + skill=22626, + stats={ + [1]="100% increased Armour Break Duration" + } + }, + [22661]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=30233, + orbit=8 + } + }, + group=1571, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Movement Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=22661, + stats={ + [1]="3% increased Movement Speed" + } + }, + [22682]={ + connections={ + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=3, + orbitIndex=4, + skill=22682, + stats={ + [1]="6% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [22691]={ + connections={ + [1]={ + id=39037, + orbit=-6 + }, + [2]={ + id=61027, + orbit=-9 + } + }, + group=830, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + id=19990, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22691, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [22697]={ + connections={ + [1]={ + id=43250, + orbit=2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.png", + name="Lightning Resistance", + orbit=2, + orbitIndex=10, + skill=22697, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [22710]={ + connections={ + [1]={ + id=45111, + orbit=0 + } + }, + group=1267, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=8, + skill=22710, + stats={ + [1]="20% increased Curse Duration" + } + }, + [22713]={ + connections={ + [1]={ + id=19722, + orbit=0 + }, + [2]={ + id=4959, + orbit=0 + }, + [3]={ + id=19003, + orbit=0 + } + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=7, + orbitIndex=6, + skill=22713, + stats={ + [1]="10% increased Cold Damage" + } + }, + [22783]={ + connections={ + [1]={ + id=18160, + orbit=0 + }, + [2]={ + id=17501, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage", + orbit=7, + orbitIndex=10, + skill=22783, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [22784]={ + connections={ + [1]={ + id=17057, + orbit=7 + }, + [2]={ + id=13515, + orbit=0 + } + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Effect on You", + orbit=2, + orbitIndex=6, + skill=22784, + stats={ + [1]="10% reduced effect of Shock on you" + } + }, + [22795]={ + connections={ + [1]={ + id=28992, + orbit=0 + }, + [2]={ + id=42781, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + id=29915, + name="Melee and Projectile Damage", + stats={ + [1]="10% increased Melee Damage", + [2]="10% increased Projectile Damage" + } + } + }, + orbit=7, + orbitIndex=21, + skill=22795, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [22811]={ + connections={ + [1]={ + id=3170, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.png", + isNotable=true, + name="The Wild Cat", + orbit=2, + orbitIndex=0, + skill=22811, + stats={ + [1]="Gain Deflection Rating equal to 12% of Evasion Rating", + [2]="40% increased Evasion Rating while moving", + [3]="+10 to Dexterity" + } + }, + [22817]={ + connections={ + [1]={ + id=55724, + orbit=0 + }, + [2]={ + id=29065, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Inevitable Rupture", + orbit=3, + orbitIndex=18, + skill=22817, + stats={ + [1]="10% chance for Attack Hits to apply ten Incision" + } + }, + [22821]={ + connections={ + [1]={ + id=3823, + orbit=0 + }, + [2]={ + id=22314, + orbit=0 + } + }, + group=745, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=183, + name="Minion Damage", + stats={ + [1]="Minions deal 10% increased Damage" + } + } + }, + orbit=7, + orbitIndex=0, + skill=22821, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [22851]={ + connections={ + [1]={ + id=50268, + orbit=0 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + name="Cold and Lightning Damage", + orbit=2, + orbitIndex=0, + skill=22851, + stats={ + [1]="8% increased Cold Damage", + [2]="8% increased Lightning Damage" + } + }, + [22864]={ + connections={ + [1]={ + id=57966, + orbit=0 + } + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Tainted Strike", + orbit=3, + orbitIndex=21, + skill=22864, + stats={ + [1]="20% increased Critical Hit Chance for Attacks", + [2]="30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits" + } + }, + [22873]={ + connections={ + [1]={ + id=7777, + orbit=7 + }, + [2]={ + id=64318, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Penetration", + orbit=3, + orbitIndex=4, + skill=22873, + stats={ + [1]="Damage Penetrates 4% of Enemy Elemental Resistances" + } + }, + [22908]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=24, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.png", + isNotable=true, + name="Tribute to Utula", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=22908, + stats={ + [1]="Body Armour grants 30% increased Spirit" + } + }, + [22927]={ + connections={ + [1]={ + id=20582, + orbit=0 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parried Debuff Magnitude and Duration", + orbit=6, + orbitIndex=24, + skill=22927, + stats={ + [1]="6% increased Parried Debuff Magnitude", + [2]="8% increased Parried Debuff Duration" + } + }, + [22928]={ + connections={ + [1]={ + id=27373, + orbit=0 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=69, + skill=22928, + stats={ + [1]="+5 to any Attribute" + } + }, + [22949]={ + connections={ + [1]={ + id=35171, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=3, + orbitIndex=20, + skill=22949, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [22959]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + connections={ + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.png", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=22959 + }, + [22962]={ + connections={ + [1]={ + id=22817, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=7, + orbitIndex=14, + skill=22962, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [22967]={ + connections={ + [1]={ + id=49198, + orbit=-7 + }, + [2]={ + id=38921, + orbit=0 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Vigilance", + orbit=3, + orbitIndex=1, + skill=22967, + stats={ + [1]="12% increased Block chance", + [2]="10 Life gained when you Block", + [3]="+2% to maximum Block chance" + } + }, + [22972]={ + connections={ + [1]={ + id=43238, + orbit=0 + }, + [2]={ + id=50879, + orbit=0 + } + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=7, + orbitIndex=8, + skill=22972, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [22975]={ + connections={ + [1]={ + id=27439, + orbit=0 + }, + [2]={ + id=26725, + orbit=0 + }, + [3]={ + id=51702, + orbit=0 + } + }, + group=306, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22975, + stats={ + [1]="+5 to any Attribute" + } + }, + [22976]={ + connections={ + [1]={ + id=42250, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=6, + orbitIndex=12, + skill=22976, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [23005]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=10072, + orbit=0 + } + }, + group=54, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.png", + isNotable=true, + name="Renly's Training", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=23005, + stats={ + [1]="Gain 35% Base Chance to Block from Equipped Shield instead of the Shield's value" + } + }, + [23013]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=4, + orbitIndex=42, + skill=23013 + }, + [23036]={ + connections={ + [1]={ + id=3339, + orbit=0 + }, + [2]={ + id=59208, + orbit=2 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=15, + skill=23036, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [23039]={ + connections={ + [1]={ + id=64770, + orbit=-5 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Energy Shield Delay and Armour Applies to Elemental Damage", + orbit=3, + orbitIndex=16, + skill=23039, + stats={ + [1]="+3% of Armour also applies to Elemental Damage", + [2]="5% faster start of Energy Shield Recharge" + } + }, + [23040]={ + connections={ + [1]={ + id=38493, + orbit=4 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=7, + orbitIndex=14, + skill=23040, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [23046]={ + connections={ + [1]={ + id=47976, + orbit=5 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=4, + orbitIndex=27, + skill=23046, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [23062]={ + connections={ + [1]={ + id=19122, + orbit=0 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Armour if Consumed Endurance Charge", + orbit=2, + orbitIndex=0, + skill=23062, + stats={ + [1]="20% increased Armour if you've consumed an Endurance Charge Recently" + } + }, + [23078]={ + connections={ + [1]={ + id=47242, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + isNotable=true, + name="Holy Protector", + orbit=3, + orbitIndex=16, + skill=23078, + stats={ + [1]="Minions have 25% increased maximum Life", + [2]="10% increased Block chance" + } + }, + [23091]={ + connections={ + [1]={ + id=45885, + orbit=0 + }, + [2]={ + id=39515, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=10, + skill=23091, + stats={ + [1]="12% increased Fire Damage" + } + }, + [23105]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1447, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=23105 + }, + [23153]={ + connections={ + [1]={ + id=23996, + orbit=0 + }, + [2]={ + id=39298, + orbit=0 + } + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Damage", + orbit=7, + orbitIndex=14, + skill=23153, + stats={ + [1]="15% increased Ballista damage" + } + }, + [23192]={ + connections={ + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=4, + orbitIndex=42, + skill=23192, + stats={ + [1]="5% increased Block chance" + } + }, + [23195]={ + connections={ + [1]={ + id=55375, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.png", + name="Life and Mana Regeneration Rate", + orbit=2, + orbitIndex=1, + skill=23195, + stats={ + [1]="10% increased Life Regeneration rate", + [2]="10% increased Mana Regeneration Rate" + } + }, + [23221]={ + connections={ + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Trick Shot", + orbit=3, + orbitIndex=23, + skill=23221, + stats={ + [1]="Projectiles have 15% chance to Chain an additional time from terrain" + } + }, + [23227]={ + connections={ + }, + group=613, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Initiative", + orbit=4, + orbitIndex=0, + skill=23227, + stats={ + [1]="30% increased Melee Damage when on Full Life", + [2]="16% increased Attack Speed if you haven't Attacked Recently" + } + }, + [23244]={ + connections={ + [1]={ + id=21792, + orbit=2 + }, + [2]={ + id=6912, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + isNotable=true, + name="Bounty Hunter", + orbit=7, + orbitIndex=3, + skill=23244, + stats={ + [1]="Recover 1% of maximum Life on Kill", + [2]="Recover 1% of maximum Mana on Kill", + [3]="25% increased Culling Strike Threshold" + } + }, + [23253]={ + connections={ + [1]={ + id=15625, + orbit=0 + }, + [2]={ + id=22811, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Evasion", + orbit=2, + orbitIndex=6, + skill=23253, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [23259]={ + connections={ + [1]={ + id=22864, + orbit=0 + } + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=2, + orbitIndex=21, + skill=23259, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [23265]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=13289, + orbit=8 + } + }, + flavourText="\"Listen not to his simpering words. He means to languish before you to weaken your resolve! He is duplicitous. An assassin, thriving on deception and lies. His lust for power is what drove his choice!\"\n\nOutrage trembled in Ruzhan's voice at the sentencing.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.png", + isNotable=true, + name="Kelari's Deception", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=38, + skill=23265, + stats={ + [1]="Grants Skill: Kelari's Deception" + } + }, + [23305]={ + connections={ + [1]={ + id=21279, + orbit=-3 + }, + [2]={ + id=51602, + orbit=0 + } + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Use Speed", + orbit=2, + orbitIndex=3, + skill=23305, + stats={ + [1]="Mark Skills have 10% increased Use Speed" + } + }, + [23307]={ + connections={ + [1]={ + id=10100, + orbit=0 + }, + [2]={ + id=59945, + orbit=0 + }, + [3]={ + id=59886, + orbit=0 + } + }, + group=190, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=23307, + stats={ + [1]="+5 to any Attribute" + } + }, + [23331]={ + connections={ + [1]={ + id=2344, + orbit=-2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=1, + orbitIndex=3, + skill=23331, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [23343]={ + connections={ + [1]={ + id=58388, + orbit=3 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=21, + skill=23343, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [23352]={ + ascendancyName="Lich", + connections={ + [1]={ + id=8611, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.png", + isNotable=true, + isSwitchable=true, + name="Rupture the Soul", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.png", + id=390, + name="Rupture the Flesh", + stats={ + [1]="Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Physical Damage" + } + } + }, + orbit=8, + orbitIndex=62, + skill=23352, + stats={ + [1]="Cursed Enemies killed by you, or by Allies in your Presence, have a 33% chance to explode, dealing a quarter of their maximum Life as Chaos damage" + } + }, + [23360]={ + connections={ + [1]={ + id=53566, + orbit=0 + } + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Reduced Movement Penalty and Attack Damage while Moving", + orbit=4, + orbitIndex=33, + skill=23360, + stats={ + [1]="8% increased Attack Damage while moving", + [2]="2% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [23362]={ + connections={ + [1]={ + id=32672, + orbit=0 + }, + [2]={ + id=50403, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Slippery Ice", + orbit=3, + orbitIndex=9, + skill=23362, + stats={ + [1]="25% reduced Effect of Chill on you", + [2]="Unaffected by Chill during Dodge Roll" + } + }, + [23364]={ + connections={ + [1]={ + id=33781, + orbit=2 + }, + [2]={ + id=48614, + orbit=2 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area and Presence", + orbit=0, + orbitIndex=0, + skill=23364, + stats={ + [1]="9% increased Presence Area of Effect", + [2]="3% increased Area of Effect" + } + }, + [23373]={ + connections={ + [1]={ + id=23428, + orbit=0 + }, + [2]={ + id=8493, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=3, + orbitIndex=22, + skill=23373, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [23374]={ + connections={ + [1]={ + id=2500, + orbit=0 + } + }, + group=1487, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=0, + orbitIndex=0, + skill=23374, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [23382]={ + connections={ + [1]={ + id=59093, + orbit=0 + }, + [2]={ + id=7960, + orbit=0 + }, + [3]={ + id=9065, + orbit=0 + }, + [4]={ + id=54297, + orbit=0 + }, + [5]={ + id=26863, + orbit=0 + }, + [6]={ + id=8982, + orbit=0 + } + }, + group=324, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=23382, + stats={ + [1]="+5 to any Attribute" + } + }, + [23415]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=8143, + orbit=9 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Evasion and Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=14, + skill=23415, + stats={ + [1]="15% increased Evasion Rating", + [2]="15% increased maximum Energy Shield" + } + }, + [23416]={ + ascendancyName="Blood Mage", + connections={ + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.png", + isNotable=true, + name="Vitality Siphon", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=64, + skill=23416, + stats={ + [1]="20% of Spell Damage Leeched as Life" + } + }, + [23419]={ + connections={ + [1]={ + id=55930, + orbit=0 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=2, + orbitIndex=20, + skill=23419, + stats={ + [1]="15% increased Glory generation" + } + }, + [23427]={ + connections={ + [1]={ + id=62914, + orbit=5 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Chilled to the Bone", + orbit=4, + orbitIndex=54, + skill=23427, + stats={ + [1]="20% increased Chill Duration on Enemies", + [2]="30% increased Magnitude of Chill you inflict" + } + }, + [23428]={ + connections={ + [1]={ + id=47623, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=3, + orbitIndex=18, + skill=23428, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [23436]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=29197, + orbit=-3 + } + }, + group=244, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=39, + skill=23436, + stats={ + [1]="15% increased Critical Damage Bonus", + [2]="10% increased Archon Buff duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [23450]={ + connections={ + [1]={ + id=558, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=6, + skill=23450, + stats={ + [1]="12% increased Fire Damage" + } + }, + [23455]={ + connections={ + [1]={ + id=49740, + orbit=0 + }, + [2]={ + id=55847, + orbit=0 + } + }, + group=1063, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=23455, + stats={ + [1]="10% increased Cold Damage" + } + }, + [23508]={ + ascendancyName="Deadeye", + connections={ + }, + group=1511, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.png", + isNotable=true, + name="Thrilling Chase", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=23508, + stats={ + [1]="Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled" + } + }, + [23547]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + connections={ + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.png", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=23547 + }, + [23570]={ + connections={ + [1]={ + id=41031, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=18, + skill=23570, + stats={ + [1]="+5 to any Attribute" + } + }, + [23587]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=25434, + orbit=7 + }, + [2]={ + id=29133, + orbit=0 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.png", + isNotable=true, + name="I am the Blizzard...", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=9, + skill=23587, + stats={ + [1]="Gain 10% of Damage as Extra Cold Damage", + [2]="On Freezing Enemies create Chilled Ground" + } + }, + [23608]={ + connections={ + [1]={ + id=61741, + orbit=2 + }, + [2]={ + id=24401, + orbit=-2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=7, + orbitIndex=20, + skill=23608, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [23630]={ + connections={ + [1]={ + id=19794, + orbit=7 + }, + [2]={ + id=17885, + orbit=7 + }, + [3]={ + id=38320, + orbit=0 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Self Immolation", + orbit=4, + orbitIndex=0, + skill=23630, + stats={ + [1]="Ignites you cause are reflected back to you", + [2]="40% reduced Magnitude of Ignite on you" + } + }, + [23650]={ + connections={ + [1]={ + id=43895, + orbit=3 + } + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration on Low Life", + orbit=2, + orbitIndex=12, + skill=23650, + stats={ + [1]="15% increased Life Regeneration Rate while on Low Life" + } + }, + [23667]={ + connections={ + [1]={ + id=25312, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=5, + orbitIndex=40, + skill=23667, + stats={ + [1]="16% increased Totem Life" + } + }, + [23702]={ + connections={ + [1]={ + id=55802, + orbit=0 + }, + [2]={ + id=57196, + orbit=0 + }, + [3]={ + id=63445, + orbit=0 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=3, + orbitIndex=10, + skill=23702, + stats={ + [1]="3% increased Attack Speed" + } + }, + [23708]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=3896, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour while Bleeding", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=12, + skill=23708, + stats={ + [1]="30% increased Armour while Bleeding" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [23710]={ + ascendancyName="Lich", + connections={ + [1]={ + id=58751, + orbit=0 + }, + [2]={ + id=2995, + orbit=5 + }, + [3]={ + id=51142, + orbit=-4 + }, + [4]={ + id=39241, + orbit=-6 + }, + [5]={ + id=33141, + orbit=5 + }, + [6]={ + id=62797, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Necromancer", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=23710 + }, + [23724]={ + connections={ + [1]={ + id=7275, + orbit=0 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Damage", + orbit=7, + orbitIndex=22, + skill=23724, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [23736]={ + connections={ + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + isNotable=true, + name="Spray and Pray", + orbit=4, + orbitIndex=38, + skill=23736, + stats={ + [1]="20% reduced Accuracy Rating while moving", + [2]="50% increased Attack Damage while moving", + [3]="5% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [23738]={ + connections={ + [1]={ + id=34520, + orbit=0 + } + }, + group=970, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + isNotable=true, + name="Madness in the Bones", + orbit=0, + orbitIndex=0, + skill=23738, + stats={ + [1]="Gain 8% of Physical Damage as extra Chaos Damage" + } + }, + [23764]={ + connections={ + }, + group=958, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Alternating Current", + orbit=0, + orbitIndex=0, + skill=23764, + stats={ + [1]="25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", + [2]="20% increased Magnitude of Shock you inflict" + } + }, + [23786]={ + connections={ + [1]={ + id=33391, + orbit=0 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Critical Bleeding Effect", + orbit=2, + orbitIndex=9, + skill=23786, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict with Critical Hits" + } + }, + [23797]={ + connections={ + [1]={ + id=31370, + orbit=0 + } + }, + group=232, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=8, + skill=23797, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Lightning Damage" + } + }, + [23822]={ + connections={ + [1]={ + id=9652, + orbit=0 + } + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Life Recoup", + orbit=2, + orbitIndex=0, + skill=23822, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [23825]={ + connections={ + [1]={ + id=24325, + orbit=7 + }, + [2]={ + id=11572, + orbit=0 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Regeneration Rate", + orbit=7, + orbitIndex=15, + skill=23825, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [23839]={ + connections={ + [1]={ + id=51006, + orbit=-2 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Charges Used", + orbit=2, + orbitIndex=2, + skill=23839, + stats={ + [1]="4% reduced Flask Charges used from Mana Flasks" + } + }, + [23861]={ + connections={ + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage and Stun", + orbit=7, + orbitIndex=8, + skill=23861, + stats={ + [1]="10% increased Stun Buildup", + [2]="10% increased Damage with Two Handed Weapons" + } + }, + [23879]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=23879 + }, + [23880]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=13174, + orbit=3 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=0, + skill=23880, + stats={ + [1]="3% increased maximum Mana" + } + }, + [23888]={ + connections={ + [1]={ + id=7390, + orbit=7 + }, + [2]={ + id=54099, + orbit=0 + } + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=0, + skill=23888, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [23905]={ + connections={ + [1]={ + id=27875, + orbit=0 + } + }, + group=1208, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Effect", + orbit=0, + orbitIndex=0, + skill=23905, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [23915]={ + connections={ + [1]={ + id=41529, + orbit=0 + } + }, + group=1218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=23915, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [23930]={ + connections={ + [1]={ + id=46024, + orbit=0 + }, + [2]={ + id=58295, + orbit=0 + } + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=40, + skill=23930, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [23932]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=8423, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Attack Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=69, + skill=23932, + stats={ + [1]="5% increased Attack Speed with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [23939]={ + connections={ + [1]={ + id=857, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Glazed Flesh", + orbit=7, + orbitIndex=12, + skill=23939, + stats={ + [1]="3% of Damage Taken Recouped as Life, Mana and Energy Shield" + } + }, + [23940]={ + connections={ + [1]={ + id=14342, + orbit=3 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Fortified Aegis", + orbit=7, + orbitIndex=20, + skill=23940, + stats={ + [1]="100% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [23960]={ + aliasPassiveSocket="voices_jewel_slot3__", + connections={ + }, + group=671, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Sinister Jewel Socket", + noRadius=true, + nodeOverlay={ + alloc="BlightedNotableFrameAllocated", + path="BlightedNotableFrameCanAllocate", + unalloc="BlightedNotableFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=23960 + }, + [23961]={ + connections={ + [1]={ + id=8791, + orbit=-2 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Ailment Threshold and Companion Resistance", + orbit=7, + orbitIndex=4, + skill=23961, + stats={ + [1]="8% increased Elemental Ailment Threshold", + [2]="Companions have +12% to all Elemental Resistances" + } + }, + [23993]={ + connections={ + [1]={ + id=42981, + orbit=0 + }, + [2]={ + id=52684, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Physical Damage", + orbit=2, + orbitIndex=12, + skill=23993, + stats={ + [1]="12% increased Physical Damage" + } + }, + [23996]={ + connections={ + [1]={ + id=63828, + orbit=0 + }, + [2]={ + id=57785, + orbit=0 + } + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Damage", + orbit=0, + orbitIndex=0, + skill=23996, + stats={ + [1]="15% increased Ballista damage" + } + }, + [24009]={ + connections={ + [1]={ + id=34433, + orbit=-4 + }, + [2]={ + id=21755, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=4, + orbitIndex=27, + skill=24009, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [24035]={ + connections={ + [1]={ + id=60741, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=2, + orbitIndex=18, + skill=24035, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [24039]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.png", + isNotable=true, + name="Beidat's Hand", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=51, + skill=24039, + stats={ + [1]="Reserves 25% of Life", + [2]="+1 to Maximum Energy Shield per 8 Maximum Life" + } + }, + [24045]={ + connections={ + }, + group=956, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=2, + orbitIndex=9, + skill=24045, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [24060]={ + connections={ + [1]={ + id=3091, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Consumption Chance", + orbit=2, + orbitIndex=4, + skill=24060, + stats={ + [1]="Skills have 5% chance to not remove Elemental Infusions but still count as consuming them" + } + }, + [24062]={ + connections={ + [1]={ + id=54351, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + isNotable=true, + name="Immortal Infamy", + orbit=5, + orbitIndex=21, + skill=24062, + stats={ + [1]="6% increased Life Recovery rate", + [2]="Recover 2% of maximum Life on Kill", + [3]="+10 to Intelligence" + } + }, + [24070]={ + connections={ + [1]={ + id=58397, + orbit=0 + } + }, + group=1354, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=0, + orbitIndex=0, + skill=24070, + stats={ + [1]="+8 to Dexterity" + } + }, + [24087]={ + connections={ + [1]={ + id=13882, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Everlasting Infusions", + orbit=7, + orbitIndex=10, + skill=24087, + stats={ + [1]="Skills have 10% chance to not remove Elemental Infusions but still count as consuming them" + } + }, + [24120]={ + connections={ + [1]={ + id=10495, + orbit=0 + } + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Mental Toughness", + orbit=0, + orbitIndex=0, + skill=24120, + stats={ + [1]="18% increased Mana Regeneration Rate", + [2]="25% increased Mana Cost Efficiency while on Low Mana" + } + }, + [24129]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=24129 + }, + [24135]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=34419, + orbit=0 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=6, + skill=24135, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [24150]={ + connections={ + [1]={ + id=44369, + orbit=-7 + } + }, + group=1226, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=2, + orbitIndex=3, + skill=24150, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [24165]={ + connections={ + [1]={ + id=8908, + orbit=0 + }, + [2]={ + id=25557, + orbit=0 + }, + [3]={ + id=4328, + orbit=-6 + }, + [4]={ + id=6079, + orbit=0 + } + }, + group=1189, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=24165, + stats={ + [1]="+5 to any Attribute" + } + }, + [24178]={ + connections={ + [1]={ + id=32655, + orbit=-9 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage with Companion in Presence", + orbit=2, + orbitIndex=15, + skill=24178, + stats={ + [1]="12% increased Damage while your Companion is in your Presence" + } + }, + [24210]={ + connections={ + [1]={ + id=26932, + orbit=-7 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + name="Frenzy Charge Duration", + orbit=7, + orbitIndex=0, + skill=24210, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [24224]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + connections={ + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + isOnlyImage=true, + name="Axe Mastery", + orbit=0, + orbitIndex=0, + skill=24224 + }, + [24226]={ + ascendancyName="Deadeye", + connections={ + }, + group=1501, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.png", + isNotable=true, + name="Bullseye", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=24226, + stats={ + [1]="Apply 10 Critical Weakness to Enemies when Consuming a Mark on them" + } + }, + [24239]={ + connections={ + [1]={ + id=34136, + orbit=0 + } + }, + group=1060, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=1, + orbitIndex=9, + skill=24239, + stats={ + [1]="Gain 5 Life per enemy killed" + } + }, + [24240]={ + connections={ + [1]={ + id=11764, + orbit=-7 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Time Manipulation", + orbit=0, + orbitIndex=0, + skill=24240, + stats={ + [1]="Debuffs you inflict have 10% increased Slow Magnitude", + [2]="Debuffs on you expire 20% faster" + } + }, + [24256]={ + connections={ + [1]={ + id=63541, + orbit=0 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=15, + skill=24256, + stats={ + [1]="10% increased Evasion Rating", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [24259]={ + connections={ + [1]={ + id=62609, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Attack Speed", + orbit=5, + orbitIndex=32, + skill=24259, + stats={ + [1]="Attacks used by Totems have 4% increased Attack Speed" + } + }, + [24269]={ + connections={ + [1]={ + id=1448, + orbit=-4 + }, + [2]={ + id=42118, + orbit=-5 + } + }, + group=1308, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Evasion and Companion Movement Speed", + orbit=3, + orbitIndex=2, + skill=24269, + stats={ + [1]="10% increased Evasion Rating", + [2]="Companions have 8% increased Movement Speed" + } + }, + [24287]={ + connections={ + [1]={ + id=34015, + orbit=0 + }, + [2]={ + id=14226, + orbit=0 + } + }, + group=1389, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=24287, + stats={ + [1]="+5 to any Attribute" + } + }, + [24295]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=37336, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Frenzy Charge Duration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=20, + skill=24295, + stats={ + [1]="25% increased Frenzy Charge Duration" + } + }, + [24325]={ + connections={ + [1]={ + id=40006, + orbit=7 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Regeneration Rate and Presence", + orbit=7, + orbitIndex=11, + skill=24325, + stats={ + [1]="5% increased Life Regeneration rate", + [2]="10% increased Presence Area of Effect" + } + }, + [24338]={ + connections={ + [1]={ + id=48581, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Damage against Ailments", + orbit=5, + orbitIndex=70, + skill=24338, + stats={ + [1]="12% increased Damage with Hits against Enemies affected by Elemental Ailments" + } + }, + [24339]={ + connections={ + [1]={ + id=58295, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=0, + skill=24339, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [24368]={ + connections={ + [1]={ + id=37302, + orbit=0 + }, + [2]={ + id=40597, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Damage", + orbit=7, + orbitIndex=0, + skill=24368, + stats={ + [1]="15% increased Ballista damage" + } + }, + [24401]={ + connections={ + [1]={ + id=63759, + orbit=0 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=3, + orbitIndex=22, + skill=24401, + stats={ + [1]="10% increased Poison Duration" + } + }, + [24420]={ + connections={ + [1]={ + id=33829, + orbit=0 + }, + [2]={ + id=9442, + orbit=-2 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=7, + orbitIndex=22, + skill=24420, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [24430]={ + connections={ + [1]={ + id=3601, + orbit=0 + }, + [2]={ + id=38707, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=66, + skill=24430, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [24438]={ + connections={ + [1]={ + id=46748, + orbit=0 + }, + [2]={ + id=17745, + orbit=0 + } + }, + group=489, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Hardened Wood", + orbit=0, + orbitIndex=0, + skill=24438, + stats={ + [1]="Totems gain +20% to all Elemental Resistances", + [2]="Totems have 20% additional Physical Damage Reduction" + } + }, + [24475]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=59759, + orbit=-9 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Chaos Resistance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=8, + skill=24475, + stats={ + [1]="+7% to Chaos Resistance" + } + }, + [24477]={ + connections={ + [1]={ + id=17532, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold and Strength", + orbit=2, + orbitIndex=16, + skill=24477, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [24481]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + connections={ + }, + group=1060, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=24481 + }, + [24483]={ + connections={ + [1]={ + id=32660, + orbit=0 + }, + [2]={ + id=62661, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Direct Approach", + orbit=3, + orbitIndex=17, + skill=24483, + stats={ + [1]="35% increased Critical Hit Chance against Enemies that are affected\nby no Elemental Ailments" + } + }, + [24491]={ + connections={ + [1]={ + id=20140, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Invocated Echoes", + orbit=4, + orbitIndex=0, + skill=24491, + stats={ + [1]="Invocated Spells have 40% chance to consume half as much Energy" + } + }, + [24511]={ + connections={ + [1]={ + id=49696, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=7, + orbitIndex=6, + skill=24511, + stats={ + [1]="+3 to all Attributes" + } + }, + [24551]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=24551 + }, + [24570]={ + connections={ + [1]={ + id=28441, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blinded Enemies Critical", + orbit=2, + orbitIndex=19, + skill=24570, + stats={ + [1]="Enemies Blinded by you have 15% reduced Critical Hit Chance" + } + }, + [24630]={ + connections={ + [1]={ + id=63608, + orbit=0 + } + }, + group=97, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Fulmination", + orbit=0, + orbitIndex=0, + skill=24630, + stats={ + [1]="80% increased Flammability Magnitude", + [2]="40% increased Damage with Hits against Ignited Enemies" + } + }, + [24646]={ + connections={ + [1]={ + id=61409, + orbit=0 + } + }, + group=217, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=3, + orbitIndex=18, + skill=24646, + stats={ + [1]="+12 to Strength" + } + }, + [24647]={ + connections={ + [1]={ + id=5702, + orbit=4 + }, + [2]={ + id=43691, + orbit=0 + }, + [3]={ + id=30634, + orbit=4 + } + }, + group=1093, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=42, + skill=24647, + stats={ + [1]="+5 to any Attribute" + } + }, + [24655]={ + connections={ + [1]={ + id=7333, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + isNotable=true, + name="Breath of Fire", + orbit=4, + orbitIndex=30, + skill=24655, + stats={ + [1]="Damage Penetrates 15% Fire Resistance", + [2]="+10 to Strength" + } + }, + [24656]={ + connections={ + [1]={ + id=54152, + orbit=0 + }, + [2]={ + id=15814, + orbit=0 + } + }, + group=1361, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Evasion and Movement Speed while Sprinting", + orbit=0, + orbitIndex=0, + skill=24656, + stats={ + [1]="15% increased Evasion Rating while Sprinting", + [2]="2% increased Movement Speed while Sprinting" + } + }, + [24696]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=4086, + orbit=0 + } + }, + group=441, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Totem Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=24696, + stats={ + [1]="20% increased Totem Damage" + } + }, + [24736]={ + connections={ + [1]={ + id=3191, + orbit=3 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Knight of Chitus", + orbit=4, + orbitIndex=32, + skill=24736, + stats={ + [1]="Gain Deflection Rating equal to 12% of Evasion Rating", + [2]="15% increased Block chance", + [3]="15% increased Parried Debuff Magnitude" + } + }, + [24748]={ + connections={ + [1]={ + id=4716, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=3, + orbitIndex=15, + skill=24748, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [24753]={ + connections={ + [1]={ + id=34747, + orbit=0 + }, + [2]={ + id=56567, + orbit=0 + }, + [3]={ + id=151, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Determined Precision", + orbit=0, + orbitIndex=0, + skill=24753, + stats={ + [1]="30% increased Accuracy Rating at Close Range", + [2]="+10 to Dexterity" + } + }, + [24764]={ + connections={ + [1]={ + id=65226, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Infusing Power", + orbit=7, + orbitIndex=17, + skill=24764, + stats={ + [1]="10% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type" + } + }, + [24766]={ + connections={ + [1]={ + id=11257, + orbit=-3 + }, + [2]={ + id=31566, + orbit=-7 + }, + [3]={ + id=51974, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="Paranoia", + orbit=0, + orbitIndex=0, + skill=24766, + stats={ + [1]="50% increased Surrounded Area of Effect" + } + }, + [24767]={ + connections={ + [1]={ + id=36474, + orbit=-3 + } + }, + group=331, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Focus Energy Shield", + orbit=2, + orbitIndex=8, + skill=24767, + stats={ + [1]="40% increased Energy Shield from Equipped Focus" + } + }, + [24786]={ + connections={ + [1]={ + id=24287, + orbit=0 + }, + [2]={ + id=30657, + orbit=0 + }, + [3]={ + id=4378, + orbit=0 + }, + [4]={ + id=21225, + orbit=0 + }, + [5]={ + id=58848, + orbit=0 + }, + [6]={ + id=12893, + orbit=0 + } + }, + group=1343, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=24786, + stats={ + [1]="+5 to any Attribute" + } + }, + [24801]={ + connections={ + [1]={ + id=40736, + orbit=7 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Attack Damage and Presence Area", + orbit=3, + orbitIndex=14, + skill=24801, + stats={ + [1]="10% increased Presence Area of Effect", + [2]="6% increased Attack Damage" + } + }, + [24807]={ + ascendancyName="Titan", + connections={ + }, + group=69, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.png", + isNotable=true, + name="Stone Skin", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=24807, + stats={ + [1]="50% more Armour from Equipped Body Armour" + } + }, + [24812]={ + connections={ + [1]={ + id=64643, + orbit=0 + } + }, + group=1054, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Power Charge Duration", + orbit=2, + orbitIndex=11, + skill=24812, + stats={ + [1]="20% increased Power Charge Duration" + } + }, + [24813]={ + connections={ + [1]={ + id=20397, + orbit=3 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=7, + orbitIndex=14, + skill=24813, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [24825]={ + connections={ + [1]={ + id=16460, + orbit=-3 + }, + [2]={ + id=29479, + orbit=-3 + }, + [3]={ + id=60738, + orbit=-3 + } + }, + group=1027, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=10, + skill=24825, + stats={ + [1]="+5 to any Attribute" + } + }, + [24843]={ + connections={ + [1]={ + id=1680, + orbit=-7 + }, + [2]={ + id=56860, + orbit=0 + } + }, + group=1213, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Evasion during Parry", + orbit=7, + orbitIndex=20, + skill=24843, + stats={ + [1]="25% increased Evasion Rating while Parrying" + } + }, + [24855]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=39347, + orbit=0 + }, + [2]={ + id=48014, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=4, + orbitIndex=58, + skill=24855 + }, + [24868]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=33736, + orbit=0 + } + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.png", + isNotable=true, + name="Relentless Pursuit", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=72, + skill=24868, + stats={ + [1]="Your speed is unaffected by Slows" + } + }, + [24871]={ + connections={ + [1]={ + id=10602, + orbit=0 + } + }, + group=398, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="Attack Speed", + orbit=4, + orbitIndex=4, + skill=24871, + stats={ + [1]="3% increased Attack Speed with One Handed Weapons" + } + }, + [24880]={ + connections={ + [1]={ + id=38501, + orbit=-7 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=5, + orbitIndex=36, + skill=24880, + stats={ + [1]="3% increased Attack Speed" + } + }, + [24883]={ + connections={ + [1]={ + id=44573, + orbit=0 + } + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Combo", + orbit=2, + orbitIndex=10, + skill=24883, + stats={ + [1]="4% increased Area of Effect for Attacks", + [2]="5% Chance to build an additional Combo on Hit" + } + }, + [24889]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=7, + orbitIndex=2, + skill=24889 + }, + [24922]={ + connections={ + [1]={ + id=18923, + orbit=0 + }, + [2]={ + id=64345, + orbit=0 + }, + [3]={ + id=17077, + orbit=0 + } + }, + group=1111, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=24922, + stats={ + [1]="+5 to any Attribute" + } + }, + [24929]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=192, + icon="", + isOnlyImage=true, + name="Minion Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=19, + skill=24929, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [24948]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1385, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=24948 + }, + [24958]={ + connections={ + [1]={ + id=52464, + orbit=-4 + }, + [2]={ + id=41877, + orbit=6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=24958, + stats={ + [1]="+5 to any Attribute" + } + }, + [24963]={ + connections={ + [1]={ + id=39298, + orbit=0 + }, + [2]={ + id=19224, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=4, + orbitIndex=63, + skill=24963, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [24993]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=54297, + orbit=6 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=5, + skill=24993, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25011]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=25011 + }, + [25014]={ + connections={ + [1]={ + id=50228, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=3, + orbitIndex=6, + skill=25014, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [25026]={ + connections={ + [1]={ + id=3567, + orbit=6 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=20, + skill=25026, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [25029]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern.png", + connections={ + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.png", + isOnlyImage=true, + name="Charms Mastery", + orbit=5, + orbitIndex=51, + skill=25029 + }, + [25031]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=25031 + }, + [25055]={ + connections={ + [1]={ + id=41580, + orbit=3 + } + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage and Movement Speed", + orbit=2, + orbitIndex=8, + skill=25055, + stats={ + [1]="2% increased Movement Speed", + [2]="8% increased Attack Damage" + } + }, + [25058]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48828, + orbit=0 + }, + [2]={ + id=4681, + orbit=0 + } + }, + group=481, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=12, + skill=25058, + stats={ + [1]="2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25070]={ + connections={ + [1]={ + id=32903, + orbit=0 + }, + [2]={ + id=11252, + orbit=0 + }, + [3]={ + id=57821, + orbit=0 + } + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=19, + skill=25070, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [25092]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=34313, + orbit=-6 + } + }, + group=2, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Critical Damage Bonus on You", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=25092, + stats={ + [1]="Hits against you have 12% reduced Critical Damage Bonus" + } + }, + [25100]={ + connections={ + }, + flavourText="The fewer there are, the less you have to share.", + group=1065, + icon="Art/2DArt/SkillIcons/passives/OasisKeystone2.png", + isKeystone=true, + name="Oasis", + orbit=0, + orbitIndex=0, + skill=25100, + stats={ + [1]="Cannot use Charms\n30% more Recovery from Flasks" + } + }, + [25101]={ + connections={ + [1]={ + id=22439, + orbit=5 + }, + [2]={ + id=52199, + orbit=0 + }, + [3]={ + id=44498, + orbit=-5 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Exposure Effect", + orbit=3, + orbitIndex=4, + skill=25101, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [25162]={ + connections={ + [1]={ + id=59785, + orbit=0 + } + }, + group=100, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=10, + skill=25162, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [25170]={ + connections={ + [1]={ + id=30820, + orbit=3 + } + }, + group=1036, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage and Skill Duration", + orbit=2, + orbitIndex=22, + skill=25170, + stats={ + [1]="8% increased Attack Damage", + [2]="8% increased Skill Effect Duration" + } + }, + [25172]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=3704, + orbit=0 + } + }, + group=278, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=25172, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [25211]={ + connections={ + [1]={ + id=11330, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Waning Hindrances", + orbit=3, + orbitIndex=3, + skill=25211, + stats={ + [1]="Debuffs on you expire 25% faster" + } + }, + [25213]={ + connections={ + [1]={ + id=19223, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage with nearby Ally", + orbit=7, + orbitIndex=12, + skill=25213, + stats={ + [1]="16% increased Attack Damage while you have an Ally in your Presence" + } + }, + [25229]={ + connections={ + [1]={ + id=21390, + orbit=0 + } + }, + group=283, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Endurance Charge Duration", + orbit=2, + orbitIndex=20, + skill=25229, + stats={ + [1]="20% increased Endurance Charge Duration" + } + }, + [25239]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=63894, + orbit=-3 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.png", + isNotable=true, + name="Demonic Possession", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=66, + skill=25239, + stats={ + [1]="Grants Skill: Demon Form" + } + }, + [25281]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=995, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=10, + skill=25281 + }, + [25300]={ + connections={ + [1]={ + id=61796, + orbit=0 + } + }, + group=200, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=0, + orbitIndex=0, + skill=25300, + stats={ + [1]="Break 20% increased Armour" + } + }, + [25303]={ + connections={ + }, + group=572, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.png", + name="Minion Fire Resistance", + orbit=0, + orbitIndex=0, + skill=25303, + stats={ + [1]="Minions have +3% to Maximum Fire Resistances", + [2]="Minions have +20% to Fire Resistance" + } + }, + [25304]={ + connections={ + [1]={ + id=61056, + orbit=-2 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=5, + skill=25304, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [25312]={ + connections={ + [1]={ + id=24259, + orbit=0 + }, + [2]={ + id=64405, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=5, + orbitIndex=36, + skill=25312, + stats={ + [1]="15% increased Totem Damage" + } + }, + [25315]={ + connections={ + [1]={ + id=19820, + orbit=0 + } + }, + group=202, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=2, + skill=25315, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Cold Damage" + } + }, + [25337]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34990, + orbit=0 + } + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=19, + skill=25337, + stats={ + [1]="10% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25361]={ + connections={ + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Resolute Reach", + orbit=2, + orbitIndex=10, + skill=25361, + stats={ + [1]="18% increased Area of Effect for Attacks", + [2]="20% reduced Critical Hit Chance" + } + }, + [25362]={ + connections={ + [1]={ + id=23105, + orbit=0 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + isNotable=true, + name="Chakra of Impact", + orbit=2, + orbitIndex=13, + skill=25362, + stats={ + [1]="20% increased Attack Damage", + [2]="Skills deal 8% increased Damage per Combo consumed, up to 40%" + } + }, + [25363]={ + connections={ + [1]={ + id=44098, + orbit=0 + }, + [2]={ + id=1823, + orbit=0 + }, + [3]={ + id=34531, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=7, + orbitIndex=20, + skill=25363, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [25374]={ + connections={ + [1]={ + id=45969, + orbit=6 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=42, + skill=25374, + stats={ + [1]="+5 to any Attribute" + } + }, + [25429]={ + connections={ + [1]={ + id=38103, + orbit=-8 + }, + [2]={ + id=34084, + orbit=0 + } + }, + group=622, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Grounded in the Earth", + orbit=2, + orbitIndex=8, + skill=25429, + stats={ + [1]="16% increased Skill Effect Duration", + [2]="16% increased Stun Threshold" + } + }, + [25434]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Chill Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=11, + skill=25434, + stats={ + [1]="15% increased Magnitude of Chill you inflict" + } + }, + [25438]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=48, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.png", + isNotable=true, + name="Heatproofing", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=25438, + stats={ + [1]="Body Armour grants Unaffected by Damaging Ailments" + } + }, + [25446]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=25446 + }, + [25458]={ + connections={ + [1]={ + id=37568, + orbit=3 + } + }, + group=1238, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.png", + name="Strength and Critical Damage Bonus on You", + orbit=7, + orbitIndex=20, + skill=25458, + stats={ + [1]="Hits against you have 5% reduced Critical Damage Bonus", + [2]="+5 to Strength" + } + }, + [25482]={ + connections={ + [1]={ + id=61472, + orbit=0 + }, + [2]={ + id=51702, + orbit=0 + }, + [3]={ + id=60620, + orbit=0 + } + }, + group=385, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + isNotable=true, + name="Beef", + orbit=0, + orbitIndex=0, + skill=25482, + stats={ + [1]="+25 to Strength" + } + }, + [25503]={ + connections={ + [1]={ + id=27068, + orbit=0 + }, + [2]={ + id=45632, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=16, + skill=25503, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [25513]={ + connections={ + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Overwhelm", + orbit=6, + orbitIndex=45, + skill=25513, + stats={ + [1]="5% reduced Attack Speed", + [2]="20% increased Stun Buildup", + [3]="40% increased Damage with Two Handed Weapons" + } + }, + [25520]={ + connections={ + }, + flavourText="The notes may change, but the song remains the same.", + group=1220, + icon="Art/2DArt/SkillIcons/passives/ResonanceKeystone.png", + isKeystone=true, + name="Resonance", + orbit=0, + orbitIndex=0, + skill=25520, + stats={ + [1]="Gain Power Charges instead of Frenzy Charges\nGain Frenzy Charges instead of Endurance Charges\nGain Endurance Charges instead of Power Charges" + } + }, + [25528]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=3, + orbitIndex=15, + skill=25528 + }, + [25557]={ + connections={ + [1]={ + id=29763, + orbit=0 + }, + [2]={ + id=4059, + orbit=0 + }, + [3]={ + id=26804, + orbit=0 + } + }, + group=1045, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=16, + skill=25557, + stats={ + [1]="+5 to any Attribute" + } + }, + [25565]={ + connections={ + [1]={ + id=722, + orbit=0 + } + }, + group=1401, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=2, + orbitIndex=2, + skill=25565, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [25570]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=44560, + orbit=0 + }, + [2]={ + id=21549, + orbit=0 + }, + [3]={ + id=37694, + orbit=0 + }, + [4]={ + id=64083, + orbit=0 + }, + [5]={ + id=27572, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + name="Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=12, + skill=25570, + stats={ + [1]="12% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25586]={ + connections={ + [1]={ + id=38993, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Critical Damage", + orbit=6, + orbitIndex=35, + skill=25586, + stats={ + [1]="16% increased Critical Damage Bonus with Bows" + } + }, + [25591]={ + connections={ + [1]={ + id=25315, + orbit=0 + }, + [2]={ + id=4527, + orbit=0 + } + }, + group=202, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=8, + skill=25591, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Cold Damage" + } + }, + [25594]={ + connections={ + [1]={ + id=34030, + orbit=0 + } + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Life", + orbit=7, + orbitIndex=0, + skill=25594, + stats={ + [1]="Offerings have 15% increased Maximum Life" + } + }, + [25618]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=38578, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Spell Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=18, + skill=25618, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [25619]={ + connections={ + [1]={ + id=43562, + orbit=3 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Sand in the Eyes", + orbit=2, + orbitIndex=12, + skill=25619, + stats={ + [1]="10% increased Attack Speed", + [2]="15% chance to Blind Enemies on Hit with Attacks" + } + }, + [25620]={ + connections={ + [1]={ + id=9083, + orbit=0 + } + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + isNotable=true, + name="Meat Recycling", + orbit=7, + orbitIndex=14, + skill=25620, + stats={ + [1]="15% chance to not destroy Corpses when Consuming Corpses" + } + }, + [25648]={ + connections={ + [1]={ + id=10824, + orbit=-4 + }, + [2]={ + id=58894, + orbit=5 + }, + [3]={ + id=45736, + orbit=-7 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=8, + skill=25648, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [25653]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=13289, + orbit=0 + } + }, + flavourText="\"Knowing where and when to plunge your knife is more important than the sharpness of your blade. I will not forget my error... and I will be a living example of your wisdom, dear {Sekhema}.\"\n\nKelari accepted Varashta's sentence and committed himself to her.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.png", + isNotable=true, + name="Kelari's Judgment", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=19, + skill=25653, + stats={ + [1]="Grants Skill: Kelari's Judgment" + } + }, + [25678]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49258, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=6, + skill=25678, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25683]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=34207, + orbit=-8 + } + }, + flavourText="\"I stand before you, as your humble servant. Though I was betrayed, I would do it all again, if it would have saved us. But I accept your sentence. I will atone. I pledge myself to you... forevermore.\"\n\nRuzhan accepted his fate at the {barya} ritual site.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.png", + isNotable=true, + name="Ruzhan's Reckoning", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=53, + skill=25683, + stats={ + [1]="Grants Skill: Ruzhan's Reckoning" + } + }, + [25700]={ + connections={ + [1]={ + id=41096, + orbit=4 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Shock Chance", + orbit=4, + orbitIndex=42, + skill=25700, + stats={ + [1]="10% increased chance to Shock", + [2]="8% increased Elemental Damage" + } + }, + [25711]={ + connections={ + [1]={ + id=58038, + orbit=-7 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="Thrill of Battle", + orbit=2, + orbitIndex=5, + skill=25711, + stats={ + [1]="20% increased Attack Speed while Surrounded" + } + }, + [25729]={ + connections={ + [1]={ + id=33093, + orbit=0 + } + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=7, + orbitIndex=12, + skill=25729, + stats={ + [1]="3% increased Cast Speed" + } + }, + [25745]={ + connections={ + [1]={ + id=31890, + orbit=4 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=4, + orbitIndex=30, + skill=25745, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [25753]={ + connections={ + [1]={ + id=63268, + orbit=0 + }, + [2]={ + id=25990, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Blazing Arms", + orbit=7, + orbitIndex=6, + skill=25753, + stats={ + [1]="16% increased Fire Damage", + [2]="30% increased Flammability Magnitude", + [3]="16% increased Attack Damage" + } + }, + [25763]={ + connections={ + [1]={ + id=61170, + orbit=7 + }, + [2]={ + id=62963, + orbit=0 + } + }, + group=682, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Fire Damage", + orbit=2, + orbitIndex=12, + skill=25763, + stats={ + [1]="10% increased Fire Damage" + } + }, + [25779]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=41076, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Darkness", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=34, + skill=25779, + stats={ + [1]="10% increased maximum Darkness" + } + }, + [25781]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.png", + isNotable=true, + name="Sap of Nightmares", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=2, + skill=25781, + stats={ + [1]="Leech recovers based on Chaos Damage as well as Physical Damage" + } + }, + [25807]={ + connections={ + [1]={ + id=53683, + orbit=0 + } + }, + group=901, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=0, + orbitIndex=0, + skill=25807, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [25827]={ + connections={ + [1]={ + id=55241, + orbit=0 + } + }, + group=1011, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=3, + orbitIndex=8, + skill=25827, + stats={ + [1]="4% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [25829]={ + connections={ + [1]={ + id=57791, + orbit=0 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.png", + name="Spell Damage and Cast Speed", + orbit=2, + orbitIndex=7, + skill=25829, + stats={ + [1]="6% increased Spell Damage", + [2]="2% increased Cast Speed" + } + }, + [25851]={ + connections={ + [1]={ + id=52695, + orbit=-6 + }, + [2]={ + id=36270, + orbit=5 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze on Hit", + orbit=6, + orbitIndex=0, + skill=25851, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [25857]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=4, + orbitIndex=68, + skill=25857 + }, + [25885]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=31116, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Damage as Chaos", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=18, + skill=25885, + stats={ + [1]="Gain 4% of Damage as Extra Chaos Damage" + } + }, + [25890]={ + connections={ + [1]={ + id=54378, + orbit=0 + } + }, + group=361, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Recover Mana on consuming Power Charge", + orbit=2, + orbitIndex=5, + skill=25890, + stats={ + [1]="Recover 2% of maximum Mana when you consume a Power Charge" + } + }, + [25893]={ + connections={ + [1]={ + id=51169, + orbit=-2 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=18, + skill=25893, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [25915]={ + connections={ + [1]={ + id=8916, + orbit=2 + } + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage", + orbit=2, + orbitIndex=2, + skill=25915, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [25927]={ + connections={ + [1]={ + id=32847, + orbit=-2 + } + }, + group=535, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Damage", + orbit=0, + orbitIndex=0, + skill=25927, + stats={ + [1]="Minions deal 20% increased Damage with Command Skills" + } + }, + [25934]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + connections={ + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=7, + orbitIndex=12, + skill=25934 + }, + [25935]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=23005, + orbit=0 + } + }, + group=45, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Block Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=25935, + stats={ + [1]="6% increased Block chance" + } + }, + [25971]={ + connections={ + }, + group=1216, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Tenfold Attacks", + orbit=0, + orbitIndex=0, + skill=25971, + stats={ + [1]="4% increased Attack Speed", + [2]="6% increased Attack Speed if you've been Hit Recently", + [3]="+10 to Strength" + } + }, + [25990]={ + connections={ + [1]={ + id=43461, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage and Attack Damage", + orbit=4, + orbitIndex=23, + skill=25990, + stats={ + [1]="8% increased Fire Damage", + [2]="8% increased Attack Damage" + } + }, + [25992]={ + connections={ + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Accuracy Rating", + orbit=6, + orbitIndex=7, + skill=25992, + stats={ + [1]="10% increased Accuracy Rating with Bows" + } + }, + [26034]={ + connections={ + [1]={ + id=45631, + orbit=-5 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=10, + skill=26034, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [26061]={ + connections={ + [1]={ + id=4579, + orbit=2 + } + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Energy Shield as Freeze Threshold", + orbit=2, + orbitIndex=22, + skill=26061, + stats={ + [1]="Gain 15% of maximum Energy Shield as additional Freeze Threshold" + } + }, + [26063]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=28745, + orbit=0 + } + }, + group=73, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=26063, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [26068]={ + connections={ + [1]={ + id=37389, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=3, + orbitIndex=4, + skill=26068, + stats={ + [1]="10% increased Attack Damage" + } + }, + [26070]={ + connections={ + [1]={ + id=35977, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Bolstering Yell", + orbit=2, + orbitIndex=4, + skill=26070, + stats={ + [1]="Empowered Attacks deal 30% increased Damage", + [2]="Warcry Skills have 30% increased Area of Effect" + } + }, + [26085]={ + ascendancyName="Lich", + connections={ + [1]={ + id=20772, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.png", + isNotable=true, + isSwitchable=true, + name="Necromantic Conduit", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.png", + id=41162, + name="Umbral Well", + stats={ + [1]="Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created" + } + } + }, + orbit=9, + orbitIndex=124, + skill=26085, + stats={ + [1]="While you are not on Low Mana, you and Allies in your Presence have Unholy Might", + [2]="Lose 5% of maximum Mana per Second" + } + }, + [26092]={ + connections={ + [1]={ + id=52392, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=3, + orbitIndex=14, + skill=26092, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [26104]={ + connections={ + [1]={ + id=43282, + orbit=5 + }, + [2]={ + id=55672, + orbit=4 + }, + [3]={ + id=32186, + orbit=0 + }, + [4]={ + id=27611, + orbit=0 + }, + [5]={ + id=12005, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png", + isNotable=true, + name="Spirit of the Wyvern", + orbit=4, + orbitIndex=51, + skill=26104, + stats={ + [1]="20% increased Accuracy Rating while Shapeshifted", + [2]="25% increased Elemental Damage while Shapeshifted" + } + }, + [26107]={ + connections={ + [1]={ + id=33713, + orbit=7 + }, + [2]={ + id=56023, + orbit=0 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Kite Runner", + orbit=0, + orbitIndex=0, + skill=26107, + stats={ + [1]="3% increased Movement Speed", + [2]="15% increased Projectile Speed", + [3]="15% increased Projectile Damage" + } + }, + [26135]={ + connections={ + [1]={ + id=2335, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Damage and Projectile Speed", + orbit=3, + orbitIndex=11, + skill=26135, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Projectile Speed for Spell Skills" + } + }, + [26148]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + connections={ + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + isOnlyImage=true, + name="Accuracy Mastery", + orbit=0, + orbitIndex=0, + skill=26148 + }, + [26176]={ + connections={ + [1]={ + id=43650, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Damage", + orbit=2, + orbitIndex=8, + skill=26176, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [26178]={ + aliasPassiveSocket="voices_jewel_slot2", + connections={ + }, + group=672, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Sinister Jewel Socket", + noRadius=true, + nodeOverlay={ + alloc="BlightedNotableFrameAllocated", + path="BlightedNotableFrameCanAllocate", + unalloc="BlightedNotableFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=26178 + }, + [26194]={ + connections={ + [1]={ + id=37872, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=7, + orbitIndex=0, + skill=26194, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [26196]={ + connections={ + [1]={ + id=11741, + orbit=0 + }, + [2]={ + id=39710, + orbit=0 + } + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=26196 + }, + [26211]={ + connections={ + [1]={ + id=24883, + orbit=0 + } + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Combo", + orbit=2, + orbitIndex=18, + skill=26211, + stats={ + [1]="4% increased Area of Effect for Attacks", + [2]="5% Chance to build an additional Combo on Hit" + } + }, + [26228]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=481, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + isNotable=true, + name="Prize of the Hunt", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=26228, + stats={ + [1]="2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", + [2]="+1 to Maximum Frenzy Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [26236]={ + connections={ + [1]={ + id=38069, + orbit=-2 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=20, + skill=26236, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [26268]={ + connections={ + [1]={ + id=22710, + orbit=0 + } + }, + group=1267, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=12, + skill=26268, + stats={ + [1]="20% increased Curse Duration" + } + }, + [26282]={ + ascendancyName="Blood Mage", + connections={ + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.png", + isNotable=true, + name="Blood Barbs", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=66, + skill=26282, + stats={ + [1]="Elemental Damage also Contributes to Bleeding Magnitude", + [2]="Bleeding you inflict on Cursed targets is Aggravated" + } + }, + [26283]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1537, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.png", + isMultipleChoiceOption=true, + name="Choice of Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=26283, + stats={ + [1]="Remnants you create have 50% increased effect", + [2]="Remnants can be collected from 50% further away", + [3]="All Flames of Chayula that you manifest are Blue" + } + }, + [26291]={ + connections={ + [1]={ + id=48935, + orbit=0 + } + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Electrifying Nature", + orbit=4, + orbitIndex=28, + skill=26291, + stats={ + [1]="25% increased Lightning Damage", + [2]="15% increased Shock Duration" + } + }, + [26294]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=41401, + orbit=5 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Movement Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=22, + skill=26294, + stats={ + [1]="2% increased Movement Speed" + } + }, + [26300]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=23436, + orbit=-4 + } + }, + group=244, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=33, + skill=26300, + stats={ + [1]="15% increased Critical Damage Bonus", + [2]="10% increased Archon Buff duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [26308]={ + connections={ + [1]={ + id=27017, + orbit=-9 + } + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.png", + name="Evasion while Moving", + orbit=2, + orbitIndex=10, + skill=26308, + stats={ + [1]="20% increased Evasion Rating while moving" + } + }, + [26319]={ + connections={ + [1]={ + id=30990, + orbit=-7 + } + }, + group=906, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=0, + skill=26319, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [26324]={ + connections={ + [1]={ + id=46023, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=0, + skill=26324, + stats={ + [1]="15% increased Armour" + } + }, + [26331]={ + connections={ + [1]={ + id=3128, + orbit=0 + }, + [2]={ + id=12166, + orbit=0 + } + }, + group=1253, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Harsh Winter", + orbit=7, + orbitIndex=18, + skill=26331, + stats={ + [1]="8% increased Cast Speed with Cold Skills", + [2]="16% increased Skill Effect Duration" + } + }, + [26339]={ + connections={ + [1]={ + id=64405, + orbit=0 + }, + [2]={ + id=11014, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Artifice", + orbit=1, + orbitIndex=0, + skill=26339, + stats={ + [1]="Melee Attack Skills have +1 to maximum number of Summoned Totems", + [2]="20% increased Totem Placement range" + } + }, + [26356]={ + connections={ + [1]={ + id=8556, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Primed to Explode", + orbit=0, + orbitIndex=0, + skill=26356, + stats={ + [1]="Detonator skills have 40% increased Area of Effect", + [2]="Detonator skills have 80% reduced damage" + } + }, + [26363]={ + connections={ + [1]={ + id=49291, + orbit=0 + }, + [2]={ + id=52803, + orbit=0 + } + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charge Generation", + orbit=7, + orbitIndex=3, + skill=26363, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [26383]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=48551, + orbit=8 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.png", + isNotable=true, + name="Sunder the Flesh", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=59, + skill=26383, + stats={ + [1]="Base Critical Hit Chance for Spells is 15%" + } + }, + [26400]={ + connections={ + [1]={ + id=8904, + orbit=0 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=18, + skill=26400, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies further than 6m" + } + }, + [26416]={ + connections={ + [1]={ + id=35792, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=16, + skill=26416, + stats={ + [1]="15% increased Life Recovery from Flasks" + } + }, + [26432]={ + connections={ + [1]={ + id=12890, + orbit=0 + }, + [2]={ + id=60735, + orbit=0 + } + }, + group=1273, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=26432, + stats={ + [1]="+5 to any Attribute" + } + }, + [26437]={ + connections={ + [1]={ + id=51129, + orbit=0 + } + }, + group=183, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=19, + skill=26437, + stats={ + [1]="Break 20% increased Armour" + } + }, + [26447]={ + connections={ + [1]={ + id=12918, + orbit=0 + }, + [2]={ + id=49633, + orbit=0 + } + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Refocus", + orbit=2, + orbitIndex=0, + skill=26447, + stats={ + [1]="20% increased Mana Regeneration Rate", + [2]="20% increased Mana Regeneration Rate while stationary" + } + }, + [26479]={ + connections={ + [1]={ + id=64324, + orbit=4 + }, + [2]={ + id=9040, + orbit=0 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Steadfast Resolve", + orbit=4, + orbitIndex=60, + skill=26479, + stats={ + [1]="You cannot be Light Stunned if you've been Stunned Recently" + } + }, + [26490]={ + connections={ + [1]={ + id=12751, + orbit=0 + } + }, + group=498, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Critical Chance", + orbit=2, + orbitIndex=9, + skill=26490, + stats={ + [1]="10% increased Critical Hit Chance with One Handed Melee Weapons" + } + }, + [26518]={ + connections={ + }, + group=249, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Cold Nature", + orbit=4, + orbitIndex=5, + skill=26518, + stats={ + [1]="25% increased Cold Damage", + [2]="15% increased Chill Duration on Enemies" + } + }, + [26520]={ + connections={ + [1]={ + id=14340, + orbit=0 + }, + [2]={ + id=37190, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=2, + orbitIndex=11, + skill=26520, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [26532]={ + connections={ + [1]={ + id=46023, + orbit=-3 + }, + [2]={ + id=41657, + orbit=3 + }, + [3]={ + id=36629, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=6, + skill=26532, + stats={ + [1]="15% increased Armour" + } + }, + [26556]={ + connections={ + [1]={ + id=58692, + orbit=4 + }, + [2]={ + id=59657, + orbit=-2 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=3, + orbitIndex=19, + skill=26556, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [26563]={ + connections={ + [1]={ + id=12778, + orbit=-4 + }, + [2]={ + id=6161, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Bone Chains", + orbit=4, + orbitIndex=12, + skill=26563, + stats={ + [1]="Physical Spell Critical Hits build Pin" + } + }, + [26565]={ + connections={ + [1]={ + id=40024, + orbit=-2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=3, + orbitIndex=2, + skill=26565, + stats={ + [1]="10% increased Poison Duration" + } + }, + [26568]={ + connections={ + [1]={ + id=59367, + orbit=0 + }, + [2]={ + id=37258, + orbit=0 + } + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You and Attack Speed", + orbit=2, + orbitIndex=12, + skill=26568, + stats={ + [1]="2% increased Attack Speed", + [2]="4% reduced Slowing Potency of Debuffs on You" + } + }, + [26572]={ + connections={ + [1]={ + id=47514, + orbit=0 + } + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Criticals vs Dazed Enemies", + orbit=2, + orbitIndex=12, + skill=26572, + stats={ + [1]="12% increased Critical Hit Chance against Dazed Enemies" + } + }, + [26592]={ + connections={ + [1]={ + id=58894, + orbit=-3 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=3, + orbitIndex=19, + skill=26592, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [26596]={ + connections={ + [1]={ + id=5766, + orbit=5 + }, + [2]={ + id=51416, + orbit=-5 + } + }, + group=1178, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=3, + orbitIndex=19, + skill=26596, + stats={ + [1]="3% increased Cast Speed" + } + }, + [26598]={ + connections={ + [1]={ + id=33366, + orbit=3 + }, + [2]={ + id=19880, + orbit=0 + }, + [3]={ + id=14658, + orbit=0 + }, + [4]={ + id=23915, + orbit=0 + }, + [5]={ + id=52501, + orbit=0 + } + }, + group=1204, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=26598, + stats={ + [1]="+5 to any Attribute" + } + }, + [26614]={ + connections={ + [1]={ + id=44344, + orbit=0 + }, + [2]={ + id=46275, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=4, + orbitIndex=40, + skill=26614, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [26638]={ + ascendancyName="Chronomancer", + connections={ + }, + group=351, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.png", + isNotable=true, + name="Footprints in the Sand", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=26638, + stats={ + [1]="Grants Skill: Temporal Rift" + } + }, + [26648]={ + connections={ + [1]={ + id=24256, + orbit=0 + }, + [2]={ + id=52125, + orbit=0 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=21, + skill=26648, + stats={ + [1]="10% increased Armour", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [26663]={ + connections={ + [1]={ + id=44765, + orbit=0 + } + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=0, + orbitIndex=0, + skill=26663, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [26682]={ + connections={ + [1]={ + id=46819, + orbit=0 + }, + [2]={ + id=56640, + orbit=-3 + } + }, + group=734, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + name="Spell Critical Damage", + orbit=7, + orbitIndex=6, + skill=26682, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [26697]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + connections={ + [1]={ + id=59263, + orbit=0 + }, + [2]={ + id=27290, + orbit=0 + }, + [3]={ + id=46565, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + isOnlyImage=true, + name="Sword Mastery", + orbit=0, + orbitIndex=0, + skill=26697 + }, + [26725]={ + connections={ + [1]={ + id=57703, + orbit=0 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=26725 + }, + [26726]={ + connections={ + [1]={ + id=48103, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + name="Knockback and Stun Buildup", + orbit=2, + orbitIndex=0, + skill=26726, + stats={ + [1]="10% increased Stun Buildup", + [2]="10% increased Knockback Distance" + } + }, + [26739]={ + connections={ + [1]={ + id=43893, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=8, + skill=26739, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [26762]={ + connections={ + [1]={ + id=35380, + orbit=-2 + } + }, + group=1298, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Withered Effect", + orbit=0, + orbitIndex=0, + skill=26762, + stats={ + [1]="10% increased Withered Magnitude" + } + }, + [26772]={ + connections={ + [1]={ + id=24240, + orbit=2 + }, + [2]={ + id=45774, + orbit=3 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect", + orbit=7, + orbitIndex=22, + skill=26772, + stats={ + [1]="Debuffs you inflict have 5% increased Slow Magnitude" + } + }, + [26786]={ + connections={ + [1]={ + id=64352, + orbit=0 + }, + [2]={ + id=48568, + orbit=0 + } + }, + group=957, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=26786, + stats={ + [1]="+5 to any Attribute" + } + }, + [26798]={ + connections={ + [1]={ + id=9638, + orbit=-7 + } + }, + group=468, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Skill Speed", + orbit=0, + orbitIndex=0, + skill=26798, + stats={ + [1]="3% increased Skill Speed" + } + }, + [26804]={ + connections={ + [1]={ + id=55405, + orbit=0 + }, + [2]={ + id=59909, + orbit=0 + } + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Corpses", + orbit=7, + orbitIndex=2, + skill=26804, + stats={ + [1]="15% increased Damage if you have Consumed a Corpse Recently" + } + }, + [26830]={ + connections={ + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=5, + orbitIndex=42, + skill=26830, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [26863]={ + connections={ + [1]={ + id=25890, + orbit=0 + } + }, + group=361, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Recover Mana on consuming Power Charge", + orbit=2, + orbitIndex=21, + skill=26863, + stats={ + [1]="Recover 2% of maximum Mana when you consume a Power Charge" + } + }, + [26885]={ + connections={ + [1]={ + id=59775, + orbit=-4 + } + }, + group=1266, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=4, + orbitIndex=60, + skill=26885, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [26895]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + }, + group=496, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=0, + orbitIndex=0, + skill=26895 + }, + [26905]={ + connections={ + [1]={ + id=8821, + orbit=0 + } + }, + group=870, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=3, + orbitIndex=2, + skill=26905, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [26926]={ + connections={ + [1]={ + id=39416, + orbit=0 + }, + [2]={ + id=45333, + orbit=-7 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.png", + isNotable=true, + name="Archon of Undeath", + orbit=3, + orbitIndex=21, + skill=26926, + stats={ + [1]="15% chance to gain Archon of Undeath when you use a Command skill" + } + }, + [26931]={ + connections={ + [1]={ + id=48198, + orbit=5 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=3, + orbitIndex=10, + skill=26931, + stats={ + [1]="Gain 3 Life per enemy killed" + } + }, + [26932]={ + connections={ + [1]={ + id=34543, + orbit=-2 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=6, + skill=26932, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [26945]={ + connections={ + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Critical Chance", + orbit=2, + orbitIndex=17, + skill=26945, + stats={ + [1]="Minions have 20% increased Critical Hit Chance" + } + }, + [26952]={ + connections={ + [1]={ + id=59661, + orbit=0 + }, + [2]={ + id=31626, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=7, + orbitIndex=20, + skill=26952, + stats={ + [1]="20% increased Flammability Magnitude" + } + }, + [26969]={ + connections={ + [1]={ + id=16861, + orbit=2 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=4, + orbitIndex=69, + skill=26969, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [27009]={ + connections={ + [1]={ + id=30459, + orbit=0 + } + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + isNotable=true, + name="Lust for Sacrifice", + orbit=7, + orbitIndex=6, + skill=27009, + stats={ + [1]="50% increased Minion Damage while you have at least two different active Offerings" + } + }, + [27017]={ + connections={ + [1]={ + id=21349, + orbit=0 + } + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.png", + name="Evasion while Moving", + orbit=2, + orbitIndex=22, + skill=27017, + stats={ + [1]="20% increased Evasion Rating while moving" + } + }, + [27048]={ + connections={ + [1]={ + id=47375, + orbit=8 + } + }, + group=1475, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=27048, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [27068]={ + connections={ + [1]={ + id=35831, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=14, + skill=27068, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [27082]={ + connections={ + [1]={ + id=3446, + orbit=0 + }, + [2]={ + id=24646, + orbit=0 + } + }, + group=191, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=27082, + stats={ + [1]="+5 to any Attribute" + } + }, + [27095]={ + connections={ + [1]={ + id=14890, + orbit=-4 + }, + [2]={ + id=48658, + orbit=0 + } + }, + group=1089, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=7, + skill=27095, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [27096]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=33423, + orbit=0 + }, + [2]={ + id=13691, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Rustle of the Leaves", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=16, + skill=27096, + stats={ + [1]="40% increased Totem Placement speed", + [2]="Spells Cast by Totems have 6% increased Cast Speed", + [3]="Attacks used by Totems have 6% increased Attack Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [27108]={ + connections={ + [1]={ + id=47796, + orbit=0 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Mass Hysteria", + orbit=4, + orbitIndex=36, + skill=27108, + stats={ + [1]="Allies in your Presence have 6% increased Attack Speed", + [2]="6% increased Attack Speed" + } + }, + [27176]={ + connections={ + }, + group=1054, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="The Power Within", + orbit=0, + orbitIndex=0, + skill=27176, + stats={ + [1]="20% increased Critical Damage Bonus if you've gained a Power Charge Recently", + [2]="+1 to Maximum Power Charges" + } + }, + [27186]={ + connections={ + [1]={ + id=62963, + orbit=0 + } + }, + group=682, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Ignite Effect on You", + orbit=2, + orbitIndex=0, + skill=27186, + stats={ + [1]="10% reduced Magnitude of Ignite on you" + } + }, + [27216]={ + connections={ + [1]={ + id=30546, + orbit=-7 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Energy Shield Delay", + orbit=7, + orbitIndex=4, + skill=27216, + stats={ + [1]="10% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [27234]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=903, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=27234 + }, + [27262]={ + connections={ + [1]={ + id=49110, + orbit=7 + } + }, + group=1121, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance and Effect", + orbit=0, + orbitIndex=0, + skill=27262, + stats={ + [1]="6% increased chance to inflict Ailments", + [2]="6% increased Magnitude of Damaging Ailments you inflict" + } + }, + [27274]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=1063, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=1, + orbitIndex=2, + skill=27274 + }, + [27290]={ + connections={ + [1]={ + id=38564, + orbit=0 + } + }, + group=528, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + isNotable=true, + name="Heavy Blade", + orbit=0, + orbitIndex=0, + skill=27290, + stats={ + [1]="25% increased Damage with Swords" + } + }, + [27296]={ + connections={ + [1]={ + id=59777, + orbit=0 + }, + [2]={ + id=11275, + orbit=-9 + }, + [3]={ + id=18684, + orbit=0 + }, + [4]={ + id=21670, + orbit=0 + } + }, + group=136, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=27296, + stats={ + [1]="+5 to any Attribute" + } + }, + [27303]={ + connections={ + [1]={ + id=43142, + orbit=0 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Vulgar Methods", + orbit=7, + orbitIndex=16, + skill=27303, + stats={ + [1]="10% reduced maximum Mana", + [2]="+10 to Strength", + [3]="30% increased Critical Hit Chance" + } + }, + [27307]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=27307 + }, + [27373]={ + connections={ + [1]={ + id=53405, + orbit=-6 + }, + [2]={ + id=51369, + orbit=-6 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=51, + skill=27373, + stats={ + [1]="+5 to any Attribute" + } + }, + [27388]={ + connections={ + [1]={ + id=28578, + orbit=0 + }, + [2]={ + id=24551, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Aspiring Genius", + orbit=7, + orbitIndex=23, + skill=27388, + stats={ + [1]="20% increased Mana Regeneration Rate", + [2]="10% chance to Gain Arcane Surge when you deal a Critical Hit" + } + }, + [27405]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=30781, + orbit=0 + } + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=58, + skill=27405, + stats={ + [1]="6% increased Cooldown Recovery Rate" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [27417]={ + connections={ + [1]={ + id=64295, + orbit=0 + }, + [2]={ + id=37616, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + isNotable=true, + name="Destructive Apparatus", + orbit=6, + orbitIndex=54, + skill=27417, + stats={ + [1]="25% increased Trap Damage" + } + }, + [27418]={ + ascendancyName="Titan", + connections={ + [1]={ + id=30115, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Strength", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=48, + skill=27418, + stats={ + [1]="4% increased Strength" + } + }, + [27422]={ + connections={ + [1]={ + id=2021, + orbit=5 + } + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=7, + orbitIndex=21, + skill=27422, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [27434]={ + connections={ + [1]={ + id=15984, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Archon of the Storm", + orbit=3, + orbitIndex=21, + skill=27434, + stats={ + [1]="Gain Elemental Archon after spending 100% of your Maximum Mana" + } + }, + [27439]={ + connections={ + [1]={ + id=21982, + orbit=0 + } + }, + group=327, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=27439, + stats={ + [1]="+5 to any Attribute" + } + }, + [27491]={ + connections={ + [1]={ + id=3471, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Heavy Buffer", + orbit=4, + orbitIndex=24, + skill=27491, + stats={ + [1]="40% increased maximum Energy Shield", + [2]="5% of Damage taken bypasses Energy Shield" + } + }, + [27492]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + connections={ + }, + group=827, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=27492 + }, + [27493]={ + connections={ + [1]={ + id=17118, + orbit=0 + } + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=24, + skill=27493, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [27501]={ + connections={ + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=4, + orbitIndex=44, + skill=27501, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [27513]={ + connections={ + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + isNotable=true, + name="Material Solidification", + orbit=7, + orbitIndex=4, + skill=27513, + stats={ + [1]="Gain 8% of Damage as Extra Physical Damage", + [2]="15% increased effect of Fully Broken Armour" + } + }, + [27540]={ + connections={ + [1]={ + id=62973, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Power Counted", + orbit=3, + orbitIndex=23, + skill=27540, + stats={ + [1]="10% increased total Power counted by Warcries" + } + }, + [27572]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage.png", + name="Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=14, + skill=27572, + stats={ + [1]="20% increased Chaos Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [27581]={ + connections={ + [1]={ + id=50510, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=4, + orbitIndex=12, + skill=27581, + stats={ + [1]="5% increased Block chance" + } + }, + [27611]={ + connections={ + [1]={ + id=30546, + orbit=7 + }, + [2]={ + id=28489, + orbit=8 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Elemental Damage", + orbit=7, + orbitIndex=18, + skill=27611, + stats={ + [1]="12% increased Elemental Damage while Shapeshifted" + } + }, + [27626]={ + connections={ + [1]={ + id=15628, + orbit=0 + } + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Touch the Arcane", + orbit=5, + orbitIndex=54, + skill=27626, + stats={ + [1]="40% increased effect of Arcane Surge on you" + } + }, + [27638]={ + connections={ + [1]={ + id=38010, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=7, + orbitIndex=3, + skill=27638, + stats={ + [1]="15% increased Glory generation" + } + }, + [27658]={ + connections={ + [1]={ + id=13542, + orbit=-3 + } + }, + group=842, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=27658, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [27662]={ + connections={ + }, + group=1011, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=2, + orbitIndex=14, + skill=27662, + stats={ + [1]="6% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [27667]={ + ascendancyName="Blood Mage", + connections={ + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.png", + isNotable=true, + name="Whispers of the Flesh", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=8, + skill=27667, + stats={ + [1]="Targets Cursed by you have 100% reduced Life Regeneration Rate", + [2]="Targets Cursed by you have at least 15% of Life Reserved" + } + }, + [27671]={ + connections={ + [1]={ + id=32681, + orbit=0 + } + }, + group=1146, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png", + name="Energy Shield Delay", + orbit=7, + orbitIndex=23, + skill=27671, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [27674]={ + connections={ + [1]={ + id=44082, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=10, + skill=27674, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [27686]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=12876, + orbit=0 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Energy Shield Recharge Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=10, + skill=27686, + stats={ + [1]="20% increased Energy Shield Recharge Rate" + } + }, + [27687]={ + connections={ + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Greatest Defence", + orbit=3, + orbitIndex=4, + skill=27687, + stats={ + [1]="4% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield" + } + }, + [27705]={ + connections={ + [1]={ + id=48773, + orbit=0 + }, + [2]={ + id=2582, + orbit=0 + }, + [3]={ + id=65212, + orbit=0 + }, + [4]={ + id=39495, + orbit=0 + }, + [5]={ + id=3543, + orbit=0 + }, + [6]={ + id=20787, + orbit=0 + } + }, + group=1454, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=27705, + stats={ + [1]="+5 to any Attribute" + } + }, + [27726]={ + connections={ + [1]={ + id=7721, + orbit=-4 + } + }, + group=595, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=8, + skill=27726, + stats={ + [1]="15% increased Armour" + } + }, + [27733]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + [1]={ + id=44005, + orbit=0 + }, + [2]={ + id=2999, + orbit=0 + } + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=4, + orbitIndex=30, + skill=27733 + }, + [27740]={ + connections={ + [1]={ + id=35792, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=2, + orbitIndex=6, + skill=27740, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [27761]={ + connections={ + [1]={ + id=5826, + orbit=0 + } + }, + group=1069, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Counterstancing", + orbit=0, + orbitIndex=0, + skill=27761, + stats={ + [1]="Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack", + [2]="Successfully Parrying a Projectile Hit grants 40% increased Damage to your next Melee Attack" + } + }, + [27773]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.png", + isNotable=true, + name="The Mórrigan's Guidance", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=16, + skill=27773, + stats={ + [1]="Gain a Vivid Wisp when Vivid Stampede ends", + [2]="Stags deal 20% more damage per leap", + [3]="Stags have 20% more Shock Magnitude per leap" + } + }, + [27785]={ + connections={ + [1]={ + id=63863, + orbit=0 + } + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=7, + orbitIndex=10, + skill=27785, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [27834]={ + connections={ + [1]={ + id=63659, + orbit=0 + }, + [2]={ + id=34449, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Critical Chance", + orbit=4, + orbitIndex=41, + skill=27834, + stats={ + [1]="10% increased Critical Hit Chance with Traps" + } + }, + [27853]={ + connections={ + [1]={ + id=52576, + orbit=0 + }, + [2]={ + id=3365, + orbit=0 + }, + [3]={ + id=58109, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Damage vs Immobilised and Buildup", + orbit=7, + orbitIndex=13, + skill=27853, + stats={ + [1]="10% increased Damage against Immobilised Enemies", + [2]="8% increased Immobilisation buildup" + } + }, + [27859]={ + connections={ + [1]={ + id=38694, + orbit=0 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=7, + orbitIndex=12, + skill=27859, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [27875]={ + connections={ + [1]={ + id=32123, + orbit=0 + } + }, + group=1221, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="General Electric", + orbit=0, + orbitIndex=0, + skill=27875, + stats={ + [1]="40% increased chance to Shock", + [2]="5% increased Attack and Cast Speed with Lightning Skills" + } + }, + [27900]={ + connections={ + [1]={ + id=54640, + orbit=5 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + orbit=7, + orbitIndex=5, + skill=27900, + stats={ + [1]="4% increased Skill Effect Duration", + [2]="8% increased Physical Damage" + } + }, + [27910]={ + connections={ + [1]={ + id=64056, + orbit=0 + }, + [2]={ + id=53938, + orbit=0 + } + }, + group=1075, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=1, + orbitIndex=0, + skill=27910, + stats={ + [1]="10% increased Attack Damage" + } + }, + [27950]={ + connections={ + [1]={ + id=26324, + orbit=0 + }, + [2]={ + id=52462, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Polished Iron", + orbit=2, + orbitIndex=0, + skill=27950, + stats={ + [1]="25% increased Armour", + [2]="Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items" + } + }, + [27980]={ + connections={ + [1]={ + id=270, + orbit=-2 + }, + [2]={ + id=28981, + orbit=2 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=2, + orbitIndex=12, + skill=27980, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [27990]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=49049, + orbit=-3 + } + }, + group=387, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Slow Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=27990, + stats={ + [1]="Debuffs you inflict have 6% increased Slow Magnitude" + } + }, + [27992]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connections={ + }, + group=634, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=27992 + }, + [27999]={ + connections={ + [1]={ + id=45777, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Physical Damage and Ailment Chance", + orbit=1, + orbitIndex=2, + skill=27999, + stats={ + [1]="8% increased chance to inflict Ailments", + [2]="8% increased Physical Damage" + } + }, + [28002]={ + connections={ + [1]={ + id=32194, + orbit=0 + }, + [2]={ + id=20499, + orbit=0 + }, + [3]={ + id=42452, + orbit=0 + }, + [4]={ + id=2955, + orbit=0 + }, + [5]={ + id=2653, + orbit=0 + }, + [6]={ + id=49547, + orbit=0 + }, + [7]={ + id=18441, + orbit=0 + } + }, + group=417, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=28002, + stats={ + [1]="+5 to any Attribute" + } + }, + [28021]={ + connections={ + [1]={ + id=9782, + orbit=0 + } + }, + group=1181, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=28021, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [28022]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=62523, + orbit=8 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=33, + skill=28022, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [28038]={ + connections={ + [1]={ + id=56488, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=20, + skill=28038, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [28044]={ + connections={ + [1]={ + id=28835, + orbit=0 + }, + [2]={ + id=178, + orbit=0 + }, + [3]={ + id=6988, + orbit=0 + } + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + isNotable=true, + name="Coming Calamity", + orbit=3, + orbitIndex=12, + skill=28044, + stats={ + [1]="40% increased Cold Damage while affected by Herald of Ice", + [2]="40% increased Fire Damage while affected by Herald of Ash", + [3]="40% increased Lightning Damage while affected by Herald of Thunder" + } + }, + [28050]={ + connections={ + [1]={ + id=63888, + orbit=0 + }, + [2]={ + id=53539, + orbit=0 + } + }, + group=1051, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=24, + skill=28050, + stats={ + [1]="+5 to any Attribute" + } + }, + [28061]={ + connections={ + [1]={ + id=35878, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=7, + orbitIndex=8, + skill=28061, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [28086]={ + connections={ + [1]={ + id=57088, + orbit=-6 + }, + [2]={ + id=144, + orbit=0 + } + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=14, + skill=28086, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [28092]={ + connections={ + [1]={ + id=17061, + orbit=7 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Delay", + orbit=7, + orbitIndex=8, + skill=28092, + stats={ + [1]="Archon recovery period expires 10% faster" + } + }, + [28101]={ + connections={ + [1]={ + id=57571, + orbit=0 + }, + [2]={ + id=43867, + orbit=-7 + } + }, + group=1476, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=2, + orbitIndex=12, + skill=28101, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [28106]={ + connections={ + [1]={ + id=3775, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charges", + orbit=2, + orbitIndex=8, + skill=28106, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [28142]={ + connections={ + [1]={ + id=17702, + orbit=0 + }, + [2]={ + id=44684, + orbit=0 + }, + [3]={ + id=46961, + orbit=0 + } + }, + group=1165, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Attack Speed and Companion Attack Speed", + orbit=0, + orbitIndex=0, + skill=28142, + stats={ + [1]="2% increased Attack Speed", + [2]="Companions have 6% increased Attack Speed" + } + }, + [28153]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=63002, + orbit=9 + } + }, + group=342, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.png", + isNotable=true, + name="Phased Form", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=28153, + stats={ + [1]="Take 30% less Damage", + [2]="4 seconds after being Damaged by an Enemy Hit, take Damage equal to 30% of that Hit's Damage" + } + }, + [28175]={ + connections={ + [1]={ + id=64471, + orbit=0 + }, + [2]={ + id=21716, + orbit=0 + }, + [3]={ + id=48026, + orbit=0 + } + }, + group=477, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=28175, + stats={ + [1]="+5 to any Attribute" + } + }, + [28199]={ + connections={ + [1]={ + id=46431, + orbit=0 + } + }, + group=1263, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Immobilisation Buildup", + orbit=0, + orbitIndex=0, + skill=28199, + stats={ + [1]="20% increased Hazard Immobilisation buildup" + } + }, + [28201]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=56174, + orbit=0 + }, + [2]={ + id=10636, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Block Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=21, + skill=28201, + stats={ + [1]="5% increased Block chance", + [2]="15% increased Armour while stationary" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [28214]={ + connections={ + [1]={ + id=1973, + orbit=0 + }, + [2]={ + id=58295, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flasks", + orbit=2, + orbitIndex=4, + skill=28214, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [28223]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6100, + orbit=3 + } + }, + group=166, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=35, + skill=28223, + stats={ + [1]="20% increased Critical Damage Bonus" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [28229]={ + connections={ + [1]={ + id=50485, + orbit=0 + } + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Area", + orbit=2, + orbitIndex=0, + skill=28229, + stats={ + [1]="10% increased Area of Effect of Curses" + } + }, + [28254]={ + ascendancyName="Spirit Walker", + connectionArt="CharacterPlanned", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.png", + isFreeAllocate=true, + isNotable=true, + name="Sacred Unity", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=5, + skill=28254, + stats={ + [1]="Bear Spirit gains Embrace of the Wild", + [2]="Vivid Stags leap towards enemies", + [3]="Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground" + }, + unlockConstraint={ + nodes={ + [1]=41401, + [2]=62743, + [3]=46070 + } + } + }, + [28258]={ + connections={ + [1]={ + id=36976, + orbit=0 + }, + [2]={ + id=59064, + orbit=0 + }, + [3]={ + id=36927, + orbit=2 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Effect", + orbit=0, + orbitIndex=0, + skill=28258, + stats={ + [1]="10% increased Effect of your Mark Skills" + } + }, + [28267]={ + connections={ + [1]={ + id=2672, + orbit=0 + }, + [2]={ + id=35085, + orbit=0 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Desensitisation", + orbit=3, + orbitIndex=4, + skill=28267, + stats={ + [1]="25% increased Critical Damage Bonus", + [2]="Hits against you have 25% reduced Critical Damage Bonus" + } + }, + [28268]={ + connections={ + [1]={ + id=36630, + orbit=0 + }, + [2]={ + id=20837, + orbit=0 + } + }, + group=1042, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=1, + orbitIndex=6, + skill=28268, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision" + } + }, + [28304]={ + connections={ + [1]={ + id=37258, + orbit=0 + }, + [2]={ + id=2491, + orbit=0 + } + }, + group=412, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=28304, + stats={ + [1]="+5 to any Attribute" + } + }, + [28329]={ + connections={ + [1]={ + id=36723, + orbit=3 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.png", + isNotable=true, + name="Pressure Points", + orbit=3, + orbitIndex=21, + skill=28329, + stats={ + [1]="35% increased Stun Buildup", + [2]="35% increased Freeze Buildup" + } + }, + [28361]={ + connections={ + }, + group=792, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=7, + orbitIndex=16, + skill=28361, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [28370]={ + connections={ + [1]={ + id=7628, + orbit=0 + }, + [2]={ + id=11916, + orbit=-6 + }, + [3]={ + id=37450, + orbit=-6 + } + }, + group=785, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=39, + skill=28370, + stats={ + [1]="+5 to any Attribute" + } + }, + [28371]={ + connections={ + [1]={ + id=60560, + orbit=-3 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage vs Full Life", + orbit=7, + orbitIndex=16, + skill=28371, + stats={ + [1]="20% increased Damage with Hits against Enemies that are on Full Life" + } + }, + [28408]={ + connections={ + [1]={ + id=65042, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Invigorating Hate", + orbit=3, + orbitIndex=22, + skill=28408, + stats={ + [1]="Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed" + } + }, + [28414]={ + connections={ + [1]={ + id=47853, + orbit=0 + } + }, + group=1428, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Attack Damage and Companion Damage as Chaos", + orbit=0, + orbitIndex=0, + skill=28414, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Chaos Damage" + } + }, + [28431]={ + ascendancyName="Lich", + connections={ + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.png", + isNotable=true, + name="Eternal Life", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=40, + skill=28431, + stats={ + [1]="Your Life cannot change while you have Energy Shield" + } + }, + [28432]={ + connections={ + [1]={ + id=20416, + orbit=0 + }, + [2]={ + id=23062, + orbit=0 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Armour if Consumed Endurance Charge", + orbit=2, + orbitIndex=8, + skill=28432, + stats={ + [1]="20% increased Armour if you've consumed an Endurance Charge Recently" + } + }, + [28441]={ + connections={ + [1]={ + id=10011, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Frantic Swings", + orbit=7, + orbitIndex=15, + skill=28441, + stats={ + [1]="Enemies Blinded by you have 50% reduced Critical Hit Chance" + } + }, + [28446]={ + connections={ + [1]={ + id=12430, + orbit=0 + }, + [2]={ + id=50084, + orbit=0 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isSwitchable=true, + name="Attack Area", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + id=50612, + name="Spell and Attack Damage", + stats={ + [1]="10% increased Spell Damage", + [2]="10% increased Attack Damage" + } + } + }, + orbit=2, + orbitIndex=9, + skill=28446, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [28458]={ + connections={ + [1]={ + id=38972, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=10, + skill=28458, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [28464]={ + connections={ + [1]={ + id=8908, + orbit=0 + } + }, + group=1124, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Deflection and Energy Shield Delay", + orbit=0, + orbitIndex=0, + skill=28464, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [28476]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern.png", + connections={ + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=28476 + }, + [28482]={ + connections={ + [1]={ + id=19846, + orbit=0 + } + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Total Incineration", + orbit=7, + orbitIndex=1, + skill=28482, + stats={ + [1]="10% increased Ignite Duration on Enemies", + [2]="25% increased Damage with Hits against Ignited Enemies" + } + }, + [28489]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=27216, + orbit=8 + }, + [2]={ + id=56890, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Skill Effect Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=69, + skill=28489, + stats={ + [1]="Shapeshift Skills have 15% increased Skill Effect Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [28492]={ + connections={ + [1]={ + id=54099, + orbit=0 + } + }, + flavourText="Why should I dodge blows that I do not fear?", + group=725, + icon="Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", + isKeystone=true, + name="Iron Reflexes", + orbit=0, + orbitIndex=0, + skill=28492, + stats={ + [1]="Converts all Evasion Rating to Armour" + } + }, + [28510]={ + connections={ + [1]={ + id=45969, + orbit=-5 + }, + [2]={ + id=10247, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=56, + skill=28510, + stats={ + [1]="+5 to any Attribute" + } + }, + [28516]={ + connections={ + [1]={ + id=7542, + orbit=2 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area of Effect", + orbit=2, + orbitIndex=8, + skill=28516, + stats={ + [1]="6% increased Area of Effect" + } + }, + [28542]={ + connections={ + [1]={ + id=62785, + orbit=7 + } + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + isNotable=true, + name="The Molten One's Gift", + orbit=1, + orbitIndex=5, + skill=28542, + stats={ + [1]="+10% to Fire Resistance", + [2]="15% increased effect of Fully Broken Armour", + [3]="Fully Broken Armour you inflict also increases Fire Damage Taken from Hits" + } + }, + [28556]={ + connections={ + }, + group=887, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=12, + skill=28556, + stats={ + [1]="+5 to any Attribute" + } + }, + [28564]={ + connections={ + [1]={ + id=8460, + orbit=0 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=2, + orbitIndex=8, + skill=28564, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [28573]={ + connections={ + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Revive Speed", + orbit=7, + orbitIndex=6, + skill=28573, + stats={ + [1]="Minions Revive 5% faster" + } + }, + [28578]={ + connections={ + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration and Critical Chance", + orbit=7, + orbitIndex=2, + skill=28578, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Critical Hit Chance" + } + }, + [28589]={ + connections={ + [1]={ + id=30300, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour if Hit", + orbit=3, + orbitIndex=23, + skill=28589, + stats={ + [1]="20% increased Armour if you have been Hit Recently" + } + }, + [28613]={ + connections={ + [1]={ + id=39598, + orbit=0 + }, + [2]={ + id=30553, + orbit=0 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Roaring Cries", + orbit=2, + orbitIndex=2, + skill=28613, + stats={ + [1]="Warcries have a minimum of 10 Power" + } + }, + [28623]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + connections={ + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=0, + orbitIndex=0, + skill=28623 + }, + [28625]={ + connections={ + [1]={ + id=32135, + orbit=5 + }, + [2]={ + id=35848, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Recovery", + orbit=7, + orbitIndex=0, + skill=28625, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [28638]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + connections={ + [1]={ + id=37514, + orbit=0 + }, + [2]={ + id=2113, + orbit=0 + } + }, + group=1464, + icon="Art/2DArt/SkillIcons/passives/StaffMasterySymbol.png", + isOnlyImage=true, + name="Quarterstaff Mastery", + orbit=0, + orbitIndex=0, + skill=28638 + }, + [28680]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=28680 + }, + [28693]={ + connections={ + [1]={ + id=49280, + orbit=7 + } + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=1, + skill=28693, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [28718]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=651, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=28718 + }, + [28745]={ + ascendancyName="Shaman", + connections={ + }, + group=72, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.png", + isNotable=true, + name="Bringer of the Apocalypse", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=28745, + stats={ + [1]="Grants Skill: Apocalypse" + } + }, + [28770]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=479, + orbit=-7 + } + }, + group=336, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Elemental Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=28770, + stats={ + [1]="12% increased Elemental Damage while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [28774]={ + connections={ + [1]={ + id=2999, + orbit=0 + }, + [2]={ + id=10295, + orbit=0 + } + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=6, + orbitIndex=26, + skill=28774, + stats={ + [1]="3% increased Cast Speed" + } + }, + [28797]={ + connections={ + [1]={ + id=632, + orbit=0 + } + }, + group=1468, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Speed", + orbit=6, + orbitIndex=65, + skill=28797, + stats={ + [1]="3% increased Attack Speed with Daggers" + } + }, + [28800]={ + connections={ + [1]={ + id=55308, + orbit=0 + } + }, + group=418, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + name="Projectile Damage", + orbit=0, + orbitIndex=0, + skill=28800, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [28823]={ + connections={ + [1]={ + id=21111, + orbit=4 + }, + [2]={ + id=59303, + orbit=5 + } + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Activation Chance", + orbit=7, + orbitIndex=23, + skill=28823, + stats={ + [1]="10% chance when a Charm is used to use another Charm without consuming Charges" + } + }, + [28835]={ + connections={ + [1]={ + id=56847, + orbit=0 + }, + [2]={ + id=60480, + orbit=0 + }, + [3]={ + id=8157, + orbit=0 + } + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=0, + orbitIndex=0, + skill=28835, + stats={ + [1]="12% increased Damage while affected by a Herald" + } + }, + [28839]={ + connections={ + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=16, + skill=28839, + stats={ + [1]="3% increased Cast Speed" + } + }, + [28859]={ + connections={ + [1]={ + id=45382, + orbit=0 + } + }, + group=1429, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Ailment Chance and Elemental Damage", + orbit=4, + orbitIndex=15, + skill=28859, + stats={ + [1]="10% increased Elemental Damage", + [2]="6% increased chance to inflict Ailments" + } + }, + [28860]={ + connections={ + [1]={ + id=56104, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=7, + orbitIndex=18, + skill=28860, + stats={ + [1]="Break 20% increased Armour" + } + }, + [28862]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + connections={ + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=28862 + }, + [28863]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=28863 + }, + [28892]={ + connections={ + [1]={ + id=13845, + orbit=7 + }, + [2]={ + id=65042, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Primal Rage", + orbit=3, + orbitIndex=2, + skill=28892, + stats={ + [1]="+12 to maximum Rage while Shapeshifted" + } + }, + [28903]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + connections={ + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.png", + isOnlyImage=true, + name="Poison Mastery", + orbit=0, + orbitIndex=0, + skill=28903 + }, + [28950]={ + connections={ + [1]={ + id=63469, + orbit=0 + }, + [2]={ + id=10156, + orbit=0 + }, + [3]={ + id=19873, + orbit=9 + }, + [4]={ + id=44948, + orbit=0 + }, + [5]={ + id=41838, + orbit=-8 + } + }, + group=642, + icon="Art/2DArt/SkillIcons/passives/bodysoul.png", + isNotable=true, + isSwitchable=true, + name="Devoted Protector", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + id=7130, + name="Bastion of the Forest", + stats={ + [1]="15% increased Armour", + [2]="+15% of Armour also applies to Elemental Damage", + [3]="10% faster start of Energy Shield Recharge", + [4]="+5 to Strength and Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=28950, + stats={ + [1]="15% increased Armour", + [2]="+15% of Armour also applies to Elemental Damage", + [3]="10% faster start of Energy Shield Recharge", + [4]="+5 to Strength and Intelligence" + } + }, + [28963]={ + connections={ + [1]={ + id=23105, + orbit=0 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + isNotable=true, + name="Chakra of Rhythm", + orbit=2, + orbitIndex=1, + skill=28963, + stats={ + [1]="6% increased Attack Speed", + [2]="20% Chance to build an additional Combo on Hit" + } + }, + [28975]={ + connections={ + [1]={ + id=26905, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Pure Power", + orbit=6, + orbitIndex=0, + skill=28975, + stats={ + [1]="10% more Maximum Lightning Damage" + } + }, + [28976]={ + connections={ + [1]={ + id=23374, + orbit=0 + }, + [2]={ + id=29458, + orbit=0 + } + }, + group=1481, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=0, + orbitIndex=0, + skill=28976, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [28981]={ + connections={ + [1]={ + id=34871, + orbit=-2 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=2, + orbitIndex=18, + skill=28981, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [28982]={ + connections={ + [1]={ + id=31295, + orbit=0 + }, + [2]={ + id=55190, + orbit=0 + }, + [3]={ + id=32845, + orbit=0 + }, + [4]={ + id=45226, + orbit=0 + } + }, + group=99, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=28982, + stats={ + [1]="+5 to any Attribute" + } + }, + [28992]={ + connections={ + [1]={ + id=62628, + orbit=0 + }, + [2]={ + id=43923, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/Hunter.png", + isNotable=true, + isSwitchable=true, + name="Honed Instincts", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/LethalAssault.png", + id=32062, + name="Primal Instinct", + stats={ + [1]="8% increased Attack Speed", + [2]="6% increased Area of Effect", + [3]="+10 to Dexterity" + } + } + }, + orbit=4, + orbitIndex=21, + skill=28992, + stats={ + [1]="8% increased Projectile Speed", + [2]="8% increased Attack Speed", + [3]="+10 to Dexterity" + } + }, + [29009]={ + connections={ + [1]={ + id=59362, + orbit=0 + } + }, + group=773, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=29009, + stats={ + [1]="+5 to any Attribute" + } + }, + [29041]={ + connections={ + [1]={ + id=31388, + orbit=0 + }, + [2]={ + id=52298, + orbit=0 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=12, + skill=29041, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [29049]={ + connections={ + [1]={ + id=56893, + orbit=3 + } + }, + group=1262, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Duration", + orbit=2, + orbitIndex=10, + skill=29049, + stats={ + [1]="10% increased Charm Effect Duration" + } + }, + [29065]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + connections={ + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.png", + isOnlyImage=true, + name="Bleeding Mastery", + orbit=1, + orbitIndex=7, + skill=29065 + }, + [29074]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.png", + isNotable=true, + name="Overwhelming Toxicity", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=36, + skill=29074, + stats={ + [1]="Double the number of your Poisons that targets can be affected by at the same time", + [2]="50% less Poison Duration" + } + }, + [29098]={ + connections={ + [1]={ + id=43588, + orbit=0 + }, + [2]={ + id=10727, + orbit=-2 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=2, + orbitIndex=8, + skill=29098, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [29126]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=32353, + orbit=-7 + } + }, + group=336, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Elemental Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=14, + skill=29126, + stats={ + [1]="12% increased Elemental Damage while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [29133]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=64031, + orbit=2 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=9, + skill=29133, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [29148]={ + connections={ + [1]={ + id=34840, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=29148, + stats={ + [1]="+5 to any Attribute" + } + }, + [29162]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=15044, + orbit=0 + } + }, + group=329, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Spirit", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=29162, + stats={ + [1]="8% increased Spirit" + } + }, + [29197]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11428, + orbit=-7 + } + }, + group=244, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=15, + skill=29197, + stats={ + [1]="15% increased Critical Damage Bonus", + [2]="10% increased Archon Buff duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [29240]={ + connections={ + [1]={ + id=55668, + orbit=0 + }, + [2]={ + id=10881, + orbit=0 + }, + [3]={ + id=31977, + orbit=0 + }, + [4]={ + id=57513, + orbit=0 + } + }, + group=1035, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=29240, + stats={ + [1]="+5 to any Attribute" + } + }, + [29246]={ + connections={ + [1]={ + id=22927, + orbit=0 + }, + [2]={ + id=35043, + orbit=0 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parried Debuff Magnitude", + orbit=6, + orbitIndex=27, + skill=29246, + stats={ + [1]="10% increased Parried Debuff Magnitude" + } + }, + [29270]={ + connections={ + [1]={ + id=7251, + orbit=-2 + } + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=20, + skill=29270, + stats={ + [1]="10% increased Attack Damage" + } + }, + [29285]={ + connections={ + [1]={ + id=9745, + orbit=0 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png", + name="Movement Speed", + orbit=7, + orbitIndex=19, + skill=29285, + stats={ + [1]="2% increased Movement Speed" + } + }, + [29288]={ + connections={ + [1]={ + id=36759, + orbit=0 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Deadly Invocations", + orbit=3, + orbitIndex=1, + skill=29288, + stats={ + [1]="Invocation Spells have 50% increased Critical Damage Bonus" + } + }, + [29306]={ + connections={ + [1]={ + id=17668, + orbit=0 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + isNotable=true, + name="Chakra of Thought", + orbit=1, + orbitIndex=1, + skill=29306, + stats={ + [1]="8% of Damage is taken from Mana before Life", + [2]="15% increased Attack Speed while not on Low Mana" + } + }, + [29320]={ + connections={ + [1]={ + id=1680, + orbit=7 + }, + [2]={ + id=56860, + orbit=0 + } + }, + group=1213, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Stun Threshold during Parry", + orbit=7, + orbitIndex=8, + skill=29320, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [29323]={ + ascendancyName="Titan", + connections={ + [1]={ + id=24807, + orbit=4 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Armour", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=53, + skill=29323, + stats={ + [1]="20% increased Armour" + } + }, + [29328]={ + connections={ + [1]={ + id=43201, + orbit=0 + } + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance", + orbit=4, + orbitIndex=61, + skill=29328, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [29358]={ + connections={ + [1]={ + id=917, + orbit=-7 + } + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=7, + skill=29358, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [29361]={ + connections={ + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=7, + skill=29361, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [29369]={ + connections={ + [1]={ + id=11337, + orbit=5 + }, + [2]={ + id=41669, + orbit=-4 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Chill Magnitude", + orbit=4, + orbitIndex=42, + skill=29369, + stats={ + [1]="15% increased Magnitude of Chill you inflict" + } + }, + [29372]={ + connections={ + [1]={ + id=7720, + orbit=0 + }, + [2]={ + id=63268, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Sudden Infuriation", + orbit=5, + orbitIndex=60, + skill=29372, + stats={ + [1]="4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" + } + }, + [29391]={ + connections={ + [1]={ + id=29009, + orbit=-3 + }, + [2]={ + id=5314, + orbit=3 + }, + [3]={ + id=50715, + orbit=3 + }, + [4]={ + id=61354, + orbit=0 + }, + [5]={ + id=29800, + orbit=-3 + } + }, + group=753, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infused Spell Damage", + orbit=2, + orbitIndex=6, + skill=29391, + stats={ + [1]="12% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [29398]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=18849, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Chill Duration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=2, + skill=29398, + stats={ + [1]="25% increased Chill Duration on Enemies" + } + }, + [29399]={ + connections={ + [1]={ + id=23888, + orbit=7 + }, + [2]={ + id=51446, + orbit=-7 + } + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=20, + skill=29399, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [29402]={ + connections={ + [1]={ + id=4046, + orbit=0 + }, + [2]={ + id=54282, + orbit=0 + }, + [3]={ + id=38270, + orbit=0 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Electrocute Buildup", + orbit=7, + orbitIndex=3, + skill=29402, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [29408]={ + connections={ + [1]={ + id=31888, + orbit=0 + } + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana Cost Efficiency", + orbit=2, + orbitIndex=8, + skill=29408, + stats={ + [1]="8% increased Mana Cost Efficiency" + } + }, + [29432]={ + connections={ + [1]={ + id=4061, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=48, + skill=29432, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [29447]={ + connections={ + [1]={ + id=11786, + orbit=0 + } + }, + group=328, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=2, + orbitIndex=11, + skill=29447, + stats={ + [1]="10% increased Armour", + [2]="+5% of Armour also applies to Elemental Damage" + } + }, + [29458]={ + connections={ + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=7, + orbitIndex=14, + skill=29458, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [29479]={ + connections={ + [1]={ + id=50469, + orbit=0 + } + }, + group=1027, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=18, + skill=29479, + stats={ + [1]="+5 to any Attribute" + } + }, + [29502]={ + connections={ + [1]={ + id=36302, + orbit=4 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=20, + skill=29502, + stats={ + [1]="3% increased Cast Speed" + } + }, + [29514]={ + connections={ + [1]={ + id=39431, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Cluster Bombs", + orbit=3, + orbitIndex=3, + skill=29514, + stats={ + [1]="50% increased Grenade Detonation Time", + [2]="Grenade Skills Fire an additional Projectile" + } + }, + [29517]={ + connections={ + [1]={ + id=32701, + orbit=0 + }, + [2]={ + id=37695, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=24, + skill=29517, + stats={ + [1]="+5 to any Attribute" + } + }, + [29527]={ + connections={ + [1]={ + id=61800, + orbit=0 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="First Approach", + orbit=7, + orbitIndex=8, + skill=29527, + stats={ + [1]="40% increased Critical Hit Chance against Enemies that are on Full Life", + [2]="Cannot be Blinded while on Full Life", + [3]="80% increased Damage with Hits against Enemies that are on Full Life" + } + }, + [29582]={ + connections={ + [1]={ + id=35987, + orbit=0 + } + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isSwitchable=true, + name="Accuracy", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + id=5083, + name="Stun Threshold during Parry", + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + } + }, + orbit=2, + orbitIndex=14, + skill=29582, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [29611]={ + connections={ + [1]={ + id=41768, + orbit=0 + }, + [2]={ + id=61393, + orbit=0 + }, + [3]={ + id=28201, + orbit=0 + } + }, + group=130, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=29611, + stats={ + [1]="+5 to any Attribute" + } + }, + [29652]={ + connections={ + [1]={ + id=15180, + orbit=0 + }, + [2]={ + id=6008, + orbit=0 + }, + [3]={ + id=32194, + orbit=0 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=2, + orbitIndex=11, + skill=29652, + stats={ + [1]="10% increased Spell Damage" + } + }, + [29663]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Movement Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=6, + skill=29663, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [29695]={ + connections={ + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + id=31204, + name="Mana Regeneration", + stats={ + [1]="10% increased Mana Regeneration Rate" + } + } + }, + orbit=2, + orbitIndex=7, + skill=29695, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [29762]={ + connections={ + [1]={ + id=8460, + orbit=0 + }, + [2]={ + id=40328, + orbit=-2 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Guttural Roar", + orbit=3, + orbitIndex=1, + skill=29762, + stats={ + [1]="25% increased Warcry Speed", + [2]="Warcries Debilitate Enemies", + [3]="Warcry Skills have 25% increased Area of Effect" + } + }, + [29763]={ + connections={ + [1]={ + id=39423, + orbit=0 + } + }, + group=1149, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=29763, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [29788]={ + connections={ + [1]={ + id=46060, + orbit=-2 + } + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=7, + orbitIndex=4, + skill=29788, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [29800]={ + connections={ + [1]={ + id=50383, + orbit=0 + } + }, + group=753, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Shocking Limit", + orbit=7, + orbitIndex=15, + skill=29800, + stats={ + [1]="+1 to maximum Lightning Infusions" + } + }, + [29843]={ + connections={ + [1]={ + id=35987, + orbit=0 + } + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion and Reduced Movement Penalty", + orbit=7, + orbitIndex=19, + skill=29843, + stats={ + [1]="10% increased Evasion Rating", + [2]="2% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [29871]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=24226, + orbit=0 + } + }, + group=1504, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Mark Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=29871, + stats={ + [1]="12% increased Effect of your Mark Skills" + } + }, + [29881]={ + connections={ + [1]={ + id=25446, + orbit=0 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png", + isNotable=true, + name="Surging Beast", + orbit=1, + orbitIndex=8, + skill=29881, + stats={ + [1]="Gain Arcane Surge when you Shapeshift to Human form after\nbeing Shapeshifted for at least 8 seconds" + } + }, + [29899]={ + connections={ + [1]={ + id=19001, + orbit=0 + }, + [2]={ + id=6912, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + isNotable=true, + name="Finish Them", + orbit=7, + orbitIndex=21, + skill=29899, + stats={ + [1]="40% increased Culling Strike Threshold against Immobilised Enemies" + } + }, + [29914]={ + connections={ + [1]={ + id=46931, + orbit=0 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Armour and Evasion while Surrounded", + orbit=3, + orbitIndex=7, + skill=29914, + stats={ + [1]="20% increased Armour while Surrounded", + [2]="20% increased Evasion Rating while Surrounded" + } + }, + [29930]={ + connections={ + [1]={ + id=16938, + orbit=3 + }, + [2]={ + id=47088, + orbit=0 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage and Companion Life", + orbit=2, + orbitIndex=0, + skill=29930, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="Companions have 12% increased maximum Life" + } + }, + [29941]={ + connections={ + [1]={ + id=60829, + orbit=0 + }, + [2]={ + id=57517, + orbit=0 + } + }, + group=1042, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=3, + orbitIndex=17, + skill=29941, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [29959]={ + connections={ + [1]={ + id=6891, + orbit=3 + }, + [2]={ + id=60362, + orbit=-3 + } + }, + group=1451, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=14, + skill=29959, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [29985]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=61113, + orbit=0 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=14, + skill=29985, + stats={ + [1]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [29990]={ + connections={ + [1]={ + id=36217, + orbit=0 + }, + [2]={ + id=47477, + orbit=-9 + }, + [3]={ + id=30808, + orbit=0 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=7, + orbitIndex=8, + skill=29990, + stats={ + [1]="5% chance to gain Volatility on Kill" + } + }, + [29993]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=1, + orbitIndex=8, + skill=29993 + }, + [30007]={ + connections={ + [1]={ + id=3188, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + orbit=1, + orbitIndex=7, + skill=30007, + stats={ + [1]="16% increased Thorns damage" + } + }, + [30040]={ + connections={ + [1]={ + id=56016, + orbit=0 + } + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=1, + orbitIndex=7, + skill=30040, + stats={ + [1]="Break 20% increased Armour" + } + }, + [30047]={ + connections={ + [1]={ + id=21280, + orbit=0 + }, + [2]={ + id=18451, + orbit=0 + }, + [3]={ + id=45650, + orbit=0 + } + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30047, + stats={ + [1]="+5 to any Attribute" + } + }, + [30061]={ + connections={ + [1]={ + id=31908, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=2, + orbitIndex=4, + skill=30061, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [30071]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=27667, + orbit=-9 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Curse Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=4, + skill=30071, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [30077]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=30077 + }, + [30082]={ + connections={ + [1]={ + id=43155, + orbit=0 + } + }, + group=932, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=0, + orbitIndex=0, + skill=30082, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [30102]={ + connections={ + [1]={ + id=43944, + orbit=0 + }, + [2]={ + id=53177, + orbit=0 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=2, + orbitIndex=23, + skill=30102, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [30115]={ + ascendancyName="Titan", + connections={ + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.png", + isNotable=true, + name="Hulking Form", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=7, + orbitIndex=16, + skill=30115, + stats={ + [1]="50% increased effect of Small Passive Skills" + } + }, + [30117]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=26383, + orbit=5 + }, + [2]={ + id=8415, + orbit=-5 + } + }, + group=900, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Spell Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30117, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [30123]={ + connections={ + [1]={ + id=6923, + orbit=0 + }, + [2]={ + id=26092, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=3, + orbitIndex=12, + skill=30123, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [30132]={ + connections={ + [1]={ + id=58416, + orbit=0 + }, + [2]={ + id=49130, + orbit=0 + } + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + isNotable=true, + name="Wrapped Quiver", + orbit=7, + orbitIndex=15, + skill=30132, + stats={ + [1]="20% increased bonuses gained from Equipped Quiver" + } + }, + [30136]={ + connections={ + [1]={ + id=22626, + orbit=0 + } + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Damage vs Armour Broken Enemies", + orbit=3, + orbitIndex=7, + skill=30136, + stats={ + [1]="20% increased Damage against Enemies with Fully Broken Armour" + } + }, + [30141]={ + connections={ + [1]={ + id=55190, + orbit=0 + } + }, + group=120, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30141, + stats={ + [1]="+5 to any Attribute" + } + }, + [30143]={ + connections={ + [1]={ + id=34201, + orbit=9 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=7, + orbitIndex=0, + skill=30143, + stats={ + [1]="5% increased Block chance" + } + }, + [30151]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=32637, + orbit=0 + } + }, + group=378, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Armour and Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30151, + stats={ + [1]="15% increased Armour and Evasion Rating" + } + }, + [30197]={ + connections={ + [1]={ + id=52415, + orbit=0 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Attack Speed with Companion in Presence", + orbit=2, + orbitIndex=2, + skill=30197, + stats={ + [1]="4% increased Attack Speed while your Companion is in your Presence" + } + }, + [30210]={ + connections={ + [1]={ + id=64650, + orbit=0 + } + }, + group=1138, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Evasion Rating", + orbit=2, + orbitIndex=6, + skill=30210, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [30219]={ + connections={ + [1]={ + id=45177, + orbit=-2 + } + }, + group=589, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=1, + orbitIndex=10, + skill=30219, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [30233]={ + ascendancyName="Ritualist", + connections={ + }, + group=1570, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.png", + isNotable=true, + name="As the Whispers Demand", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30233, + stats={ + [1]="Grants Skill: Ritual Sacrifice" + } + }, + [30252]={ + connections={ + [1]={ + id=20049, + orbit=4 + }, + [2]={ + id=48135, + orbit=-4 + } + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Effect", + orbit=7, + orbitIndex=18, + skill=30252, + stats={ + [1]="Charms applied to you have 10% increased Effect" + } + }, + [30258]={ + connections={ + [1]={ + id=40105, + orbit=0 + } + }, + group=225, + icon="Art/2DArt/SkillIcons/passives/minionstr.png", + name="Attack Speed and Minion Attack Speed", + orbit=2, + orbitIndex=9, + skill=30258, + stats={ + [1]="3% increased Attack Speed", + [2]="Minions have 3% increased Attack Speed" + } + }, + [30265]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=580, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png", + name="Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30265, + stats={ + [1]="20% increased maximum Energy Shield" + } + }, + [30300]={ + connections={ + [1]={ + id=12565, + orbit=0 + }, + [2]={ + id=1200, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + orbit=2, + orbitIndex=2, + skill=30300, + stats={ + [1]="16% increased Thorns damage" + } + }, + [30334]={ + connections={ + [1]={ + id=9324, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Duration", + orbit=3, + orbitIndex=0, + skill=30334, + stats={ + [1]="8% increased Ignite Duration on Enemies" + } + }, + [30341]={ + connections={ + [1]={ + id=1995, + orbit=0 + }, + [2]={ + id=37946, + orbit=0 + } + }, + group=1155, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + isNotable=true, + name="Master Fletching", + orbit=7, + orbitIndex=0, + skill=30341, + stats={ + [1]="20% increased bonuses gained from Equipped Quiver" + } + }, + [30346]={ + connections={ + [1]={ + id=44871, + orbit=0 + }, + [2]={ + id=29695, + orbit=-5 + }, + [3]={ + id=34006, + orbit=6 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=7, + orbitIndex=13, + skill=30346, + stats={ + [1]="+10 to maximum Energy Shield" + } + }, + [30371]={ + connections={ + [1]={ + id=27687, + orbit=-4 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Damage", + orbit=3, + orbitIndex=1, + skill=30371, + stats={ + [1]="Attack Skills deal 10% increased Damage while holding a Shield" + } + }, + [30372]={ + connections={ + [1]={ + id=42065, + orbit=0 + } + }, + group=1224, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=23, + skill=30372, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [30390]={ + connections={ + [1]={ + id=33978, + orbit=3 + } + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=3, + orbitIndex=18, + skill=30390, + stats={ + [1]="5% increased Block chance" + } + }, + [30392]={ + connections={ + [1]={ + id=28106, + orbit=0 + }, + [2]={ + id=41016, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Succour", + orbit=2, + orbitIndex=3, + skill=30392, + stats={ + [1]="30% increased Life Regeneration rate during Effect of any Life Flask" + } + }, + [30393]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + [1]={ + id=58894, + orbit=0 + }, + [2]={ + id=15825, + orbit=0 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=30393 + }, + [30395]={ + connections={ + [1]={ + id=9221, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png", + isNotable=true, + name="Howling Beast", + orbit=1, + orbitIndex=2, + skill=30395, + stats={ + [1]="Warcries inflict 3 Critical Weakness on Enemies" + } + }, + [30408]={ + connections={ + [1]={ + id=17906, + orbit=0 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/Trap.png", + isNotable=true, + name="Efficient Contraptions", + orbit=7, + orbitIndex=16, + skill=30408, + stats={ + [1]="Hazards have 15% chance to rearm after they are triggered" + } + }, + [30456]={ + connections={ + [1]={ + id=38044, + orbit=-5 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="High Alert", + orbit=0, + orbitIndex=0, + skill=30456, + stats={ + [1]="50% increased Evasion Rating when on Full Life", + [2]="25% increased Stun Threshold while on Full Life" + } + }, + [30457]={ + connections={ + [1]={ + id=54416, + orbit=4 + } + }, + group=153, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=12, + skill=30457, + stats={ + [1]="15% increased Armour" + } + }, + [30459]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=1, + orbitIndex=3, + skill=30459 + }, + [30463]={ + connections={ + [1]={ + id=58971, + orbit=-7 + }, + [2]={ + id=9968, + orbit=-6 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=2, + orbitIndex=3, + skill=30463, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [30523]={ + connections={ + [1]={ + id=35492, + orbit=0 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Dead can Dance", + orbit=5, + orbitIndex=61, + skill=30523, + stats={ + [1]="Minions have 25% increased maximum Life", + [2]="Minions have 25% increased Evasion Rating" + } + }, + [30539]={ + connections={ + [1]={ + id=25620, + orbit=0 + } + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Corpses", + orbit=7, + orbitIndex=18, + skill=30539, + stats={ + [1]="5% chance to not destroy Corpses when Consuming Corpses" + } + }, + [30546]={ + connections={ + [1]={ + id=12005, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png", + isNotable=true, + name="Electrified Claw", + orbit=7, + orbitIndex=23, + skill=30546, + stats={ + [1]="Gain 8% of Damage as Extra Lightning Damage while Shapeshifted" + } + }, + [30553]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=152, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=30553 + }, + [30554]={ + connections={ + [1]={ + id=29611, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=7, + orbitIndex=20, + skill=30554, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [30555]={ + connections={ + [1]={ + id=53960, + orbit=3 + } + }, + group=902, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30555, + stats={ + [1]="+5 to any Attribute" + } + }, + [30562]={ + connections={ + [1]={ + id=11032, + orbit=0 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Inner Faith", + orbit=2, + orbitIndex=18, + skill=30562, + stats={ + [1]="20% increased Evasion Rating", + [2]="20% increased maximum Energy Shield", + [3]="25% reduced effect of Curses on you" + } + }, + [30615]={ + connections={ + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Critical Damage when consuming a Power Charge", + orbit=2, + orbitIndex=13, + skill=30615, + stats={ + [1]="20% increased Critical Damage Bonus if you've consumed a Power Charge Recently" + } + }, + [30634]={ + connections={ + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=6, + skill=30634, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [30657]={ + connections={ + [1]={ + id=38463, + orbit=0 + }, + [2]={ + id=6842, + orbit=0 + }, + [3]={ + id=59064, + orbit=0 + }, + [4]={ + id=58848, + orbit=0 + }, + [5]={ + id=32891, + orbit=0 + } + }, + group=1299, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30657, + stats={ + [1]="+5 to any Attribute" + } + }, + [30662]={ + connections={ + [1]={ + id=26291, + orbit=0 + } + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=4, + orbitIndex=32, + skill=30662, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [30695]={ + connections={ + [1]={ + id=13783, + orbit=0 + }, + [2]={ + id=19808, + orbit=0 + }, + [3]={ + id=56472, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png", + isNotable=true, + isSwitchable=true, + name="Vile Wounds", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/eagleeye.png", + id=53849, + name="Eagle Eye", + stats={ + [1]="+30 to Accuracy Rating", + [2]="10% increased Accuracy Rating" + } + } + }, + orbit=2, + orbitIndex=14, + skill=30695, + stats={ + [1]="33% increased Damage with Hits against Enemies affected by Ailments" + } + }, + [30701]={ + connections={ + }, + group=418, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + name="Reduced Projectile Speed", + orbit=2, + orbitIndex=8, + skill=30701, + stats={ + [1]="6% reduced Projectile Speed" + } + }, + [30704]={ + connections={ + [1]={ + id=22045, + orbit=0 + } + }, + group=578, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration and Damage", + orbit=2, + orbitIndex=6, + skill=30704, + stats={ + [1]="5% increased Damage", + [2]="Regenerate 0.1% of maximum Life per second" + } + }, + [30720]={ + connections={ + [1]={ + id=20119, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + isNotable=true, + name="Entropic Incarnation", + orbit=2, + orbitIndex=2, + skill=30720, + stats={ + [1]="Minions have +13% to Chaos Resistance", + [2]="Minions gain 10% of Physical Damage as Chaos Damage" + } + }, + [30736]={ + connections={ + [1]={ + id=52180, + orbit=-2 + } + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=13, + skill=30736, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [30748]={ + connections={ + [1]={ + id=21801, + orbit=0 + } + }, + group=1226, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + isNotable=true, + name="Controlled Chaos", + orbit=7, + orbitIndex=0, + skill=30748, + stats={ + [1]="Maximum Volatility is 30" + } + }, + [30780]={ + connections={ + [1]={ + id=17112, + orbit=-2 + }, + [2]={ + id=5410, + orbit=-2 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Area and Damage", + orbit=2, + orbitIndex=15, + skill=30780, + stats={ + [1]="4% increased Area of Effect of Ancestrally Boosted Attacks", + [2]="Ancestrally Boosted Attacks deal 8% increased Damage" + } + }, + [30781]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=63772, + orbit=0 + } + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Movement Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=18, + skill=30781, + stats={ + [1]="3% increased Movement Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [30808]={ + connections={ + [1]={ + id=14267, + orbit=0 + }, + [2]={ + id=28101, + orbit=-4 + }, + [3]={ + id=28859, + orbit=0 + } + }, + group=1453, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30808, + stats={ + [1]="+5 to any Attribute" + } + }, + [30820]={ + connections={ + [1]={ + id=26786, + orbit=0 + } + }, + group=1036, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage and Skill Duration", + orbit=7, + orbitIndex=16, + skill=30820, + stats={ + [1]="8% increased Attack Damage", + [2]="8% increased Skill Effect Duration" + } + }, + [30829]={ + connections={ + [1]={ + id=56999, + orbit=0 + } + }, + group=969, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=0, + skill=30829, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [30834]={ + connections={ + [1]={ + id=50216, + orbit=0 + }, + [2]={ + id=57967, + orbit=0 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=2, + skill=30834, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [30839]={ + connections={ + [1]={ + id=35671, + orbit=-3 + } + }, + group=1303, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Dexterity", + orbit=3, + orbitIndex=17, + skill=30839, + stats={ + [1]="2% increased Attack Speed", + [2]="+5 to Dexterity" + } + }, + [30871]={ + connections={ + [1]={ + id=12208, + orbit=0 + } + }, + group=1207, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=9, + skill=30871, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [30896]={ + connections={ + [1]={ + id=49172, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.png", + name="Channelling Speed", + orbit=2, + orbitIndex=13, + skill=30896, + stats={ + [1]="3% increased Skill Speed with Channelling Skills" + } + }, + [30904]={ + ascendancyName="Oracle", + connections={ + }, + group=22, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.png", + isNotable=true, + name="Harmony Within", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30904, + stats={ + [1]="Hit damage is taken from Mana before Life if your current Mana is higher than your current Life", + [2]="15% less maximum Life", + [3]="15% less maximum Mana" + } + }, + [30905]={ + connections={ + [1]={ + id=8697, + orbit=5 + }, + [2]={ + id=34201, + orbit=6 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=4, + orbitIndex=21, + skill=30905, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [30910]={ + connections={ + [1]={ + id=59647, + orbit=-7 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=2, + orbitIndex=13, + skill=30910, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [30959]={ + connections={ + [1]={ + id=31778, + orbit=2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=14, + skill=30959, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [30973]={ + connections={ + [1]={ + id=49320, + orbit=0 + } + }, + group=1444, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Critical Chance", + orbit=6, + orbitIndex=34, + skill=30973, + stats={ + [1]="10% increased Critical Hit Chance with Daggers" + } + }, + [30979]={ + connections={ + [1]={ + id=46358, + orbit=0 + }, + [2]={ + id=44733, + orbit=0 + }, + [3]={ + id=12610, + orbit=0 + } + }, + group=579, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=30979, + stats={ + [1]="+5 to any Attribute" + } + }, + [30985]={ + connections={ + [1]={ + id=12324, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Chance", + orbit=2, + orbitIndex=10, + skill=30985, + stats={ + [1]="5% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type" + } + }, + [30990]={ + connections={ + [1]={ + id=58939, + orbit=0 + } + }, + group=906, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=16, + skill=30990, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [30996]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=53762, + orbit=0 + }, + [2]={ + id=18146, + orbit=0 + } + }, + group=513, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.png", + isNotable=true, + name="Gem Studded", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=30996, + stats={ + [1]="For each colour of Socketed Support Gem that is most numerous, gain:\nRed: Hits against you have no Critical Damage Bonus\nBlue: Skills have 30% less cost\nGreen: 40% less Movement Speed Penalty from using Skills while Moving" + } + }, + [31010]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Energy Shield Delay", + orbit=4, + orbitIndex=23, + skill=31010, + stats={ + [1]="10% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [31017]={ + connections={ + [1]={ + id=26339, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=3, + orbitIndex=0, + skill=31017, + stats={ + [1]="15% increased Totem Damage" + } + }, + [31037]={ + connections={ + [1]={ + id=34866, + orbit=0 + } + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Effect", + orbit=2, + orbitIndex=22, + skill=31037, + stats={ + [1]="Remnants you create have 10% increased effect" + } + }, + [31039]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=31039 + }, + [31055]={ + connections={ + [1]={ + id=18969, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Speed", + orbit=2, + orbitIndex=19, + skill=31055, + stats={ + [1]="3% increased Attack Speed with Bows" + } + }, + [31112]={ + connections={ + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Critical Strike", + orbit=7, + orbitIndex=2, + skill=31112, + stats={ + [1]="10% increased Ballista Critical Hit Chance" + } + }, + [31116]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.png", + isNotable=true, + name="Grasp of the Void", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=24, + skill=31116, + stats={ + [1]="Grants Skill: Void Illusion" + } + }, + [31129]={ + connections={ + [1]={ + id=37971, + orbit=0 + } + }, + group=1496, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Lifelong Friend", + orbit=0, + orbitIndex=0, + skill=31129, + stats={ + [1]="Minions Revive 35% faster if all your Minions are Companions" + } + }, + [31159]={ + connections={ + [1]={ + id=46017, + orbit=0 + } + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration while Stationary", + orbit=7, + orbitIndex=20, + skill=31159, + stats={ + [1]="15% increased Life Regeneration Rate while stationary" + } + }, + [31172]={ + connections={ + }, + group=1303, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Falcon Technique", + orbit=5, + orbitIndex=51, + skill=31172, + stats={ + [1]="1% increased Attack Speed per 25 Dexterity" + } + }, + [31175]={ + connections={ + [1]={ + id=20119, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Grip of Evil", + orbit=2, + orbitIndex=22, + skill=31175, + stats={ + [1]="Minions have 40% increased Critical Damage Bonus" + } + }, + [31189]={ + connections={ + [1]={ + id=28863, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + isNotable=true, + name="Unexpected Finesse", + orbit=4, + orbitIndex=12, + skill=31189, + stats={ + [1]="20% increased Attack Damage", + [2]="30% increased Accuracy Rating while moving" + } + }, + [31223]={ + ascendancyName="Blood Mage", + connections={ + }, + group=976, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.png", + isNotable=true, + name="Crimson Power", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=31223, + stats={ + [1]="Gain additional maximum Life equal to 100% of the Item Energy Shield on Equipped Body Armour" + } + }, + [31238]={ + connections={ + [1]={ + id=48552, + orbit=0 + }, + [2]={ + id=45918, + orbit=0 + }, + [3]={ + id=10452, + orbit=0 + } + }, + group=447, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=31238, + stats={ + [1]="+5 to any Attribute" + } + }, + [31273]={ + connections={ + [1]={ + id=17372, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=2, + orbitIndex=4, + skill=31273, + stats={ + [1]="10% increased Melee Damage" + } + }, + [31284]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + [1]={ + id=21380, + orbit=0 + } + }, + group=1218, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=1, + orbitIndex=3, + skill=31284 + }, + [31286]={ + connections={ + [1]={ + id=16140, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical", + orbit=3, + orbitIndex=14, + skill=31286, + stats={ + [1]="10% increased Physical Damage" + } + }, + [31290]={ + connections={ + [1]={ + id=32474, + orbit=0 + }, + [2]={ + id=60332, + orbit=0 + }, + [3]={ + id=32764, + orbit=0 + }, + [4]={ + id=37609, + orbit=0 + } + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=22, + skill=31290, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [31292]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + connections={ + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + isOnlyImage=true, + name="Mace Mastery", + orbit=0, + orbitIndex=0, + skill=31292 + }, + [31295]={ + connections={ + [1]={ + id=9352, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=3, + orbitIndex=21, + skill=31295, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [31326]={ + connections={ + [1]={ + id=44092, + orbit=0 + }, + [2]={ + id=11505, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Slow Burn", + orbit=2, + orbitIndex=18, + skill=31326, + stats={ + [1]="20% increased Ignite Magnitude", + [2]="20% increased Ignite Duration on Enemies" + } + }, + [31345]={ + connections={ + [1]={ + id=55400, + orbit=0 + } + }, + group=1224, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=11, + skill=31345, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [31364]={ + connections={ + }, + group=1391, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Primal Protection", + orbit=0, + orbitIndex=0, + skill=31364, + stats={ + [1]="40% increased Charm Effect Duration", + [2]="40% increased Charm Charges gained" + } + }, + [31366]={ + connections={ + [1]={ + id=57518, + orbit=4 + }, + [2]={ + id=3843, + orbit=-4 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Stun Buildup", + orbit=2, + orbitIndex=5, + skill=31366, + stats={ + [1]="Parry has 20% increased Stun Buildup" + } + }, + [31370]={ + connections={ + [1]={ + id=32448, + orbit=0 + } + }, + group=232, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=20, + skill=31370, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Lightning Damage" + } + }, + [31373]={ + connections={ + [1]={ + id=50561, + orbit=0 + }, + [2]={ + id=47173, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Vocal Empowerment", + orbit=4, + orbitIndex=63, + skill=31373, + stats={ + [1]="Warcries Empower an additional Attack" + } + }, + [31388]={ + connections={ + [1]={ + id=51394, + orbit=0 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=7, + skill=31388, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [31409]={ + connections={ + [1]={ + id=50437, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=2, + orbitIndex=3, + skill=31409, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [31419]={ + connections={ + [1]={ + id=35787, + orbit=3 + }, + [2]={ + id=53405, + orbit=4 + } + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=7, + orbitIndex=9, + skill=31419, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [31433]={ + connections={ + [1]={ + id=21495, + orbit=-4 + }, + [2]={ + id=5348, + orbit=0 + } + }, + group=1271, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + isNotable=true, + name="Catalysis", + orbit=2, + orbitIndex=8, + skill=31433, + stats={ + [1]="20% increased Elemental Damage with Attacks", + [2]="5% of Physical Damage from Hits taken as Damage of a Random Element" + } + }, + [31449]={ + connections={ + [1]={ + id=9444, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Critical Chance", + orbit=5, + orbitIndex=40, + skill=31449, + stats={ + [1]="10% increased Critical Hit Chance with Quarterstaves" + } + }, + [31517]={ + connections={ + [1]={ + id=11722, + orbit=0 + }, + [2]={ + id=46034, + orbit=0 + } + }, + group=998, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Seal Generation Frequency", + orbit=2, + orbitIndex=4, + skill=31517, + stats={ + [1]="Sealed Skills have 10% increased Seal gain frequency" + } + }, + [31545]={ + connections={ + [1]={ + id=8171, + orbit=0 + }, + [2]={ + id=3446, + orbit=0 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Attack Damage and Presence Area", + orbit=7, + orbitIndex=2, + skill=31545, + stats={ + [1]="10% increased Presence Area of Effect", + [2]="6% increased Attack Damage" + } + }, + [31554]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49929, + orbit=0 + } + }, + group=137, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=6, + skill=31554, + stats={ + [1]="15% increased Skill Effect Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [31566]={ + connections={ + [1]={ + id=7049, + orbit=0 + }, + [2]={ + id=54818, + orbit=9 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Armour while Surrounded", + orbit=3, + orbitIndex=23, + skill=31566, + stats={ + [1]="30% increased Armour while Surrounded" + } + }, + [31609]={ + connections={ + [1]={ + id=36163, + orbit=-4 + } + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Shield Defences", + orbit=3, + orbitIndex=0, + skill=31609, + stats={ + [1]="25% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [31626]={ + connections={ + [1]={ + id=50516, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Flammability Magnitude", + orbit=7, + orbitIndex=23, + skill=31626, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="4% increased Area of Effect for Attacks" + } + }, + [31630]={ + connections={ + [1]={ + id=64474, + orbit=0 + } + }, + group=1153, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=7, + skill=31630, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [31644]={ + connections={ + [1]={ + id=14739, + orbit=0 + }, + [2]={ + id=34058, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=23, + skill=31644, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [31647]={ + connections={ + [1]={ + id=23305, + orbit=0 + } + }, + group=1377, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=3, + orbitIndex=12, + skill=31647, + stats={ + [1]="+8 to Dexterity" + } + }, + [31650]={ + connections={ + [1]={ + id=16051, + orbit=0 + }, + [2]={ + id=31017, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=5, + orbitIndex=0, + skill=31650, + stats={ + [1]="15% increased Totem Damage" + } + }, + [31673]={ + connections={ + [1]={ + id=48649, + orbit=0 + } + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Energy Shield Delay while Shapeshifted", + orbit=2, + orbitIndex=14, + skill=31673, + stats={ + [1]="10% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [31692]={ + connections={ + [1]={ + id=46197, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=3, + skill=31692, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [31697]={ + connections={ + [1]={ + id=51303, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Duration", + orbit=2, + orbitIndex=4, + skill=31697, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [31724]={ + connections={ + [1]={ + id=2074, + orbit=0 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Iron Slippers", + orbit=2, + orbitIndex=0, + skill=31724, + stats={ + [1]="+2 to Armour per 1 Item Energy Shield on Equipped Boots", + [2]="12% reduced Slowing Potency of Debuffs on You" + } + }, + [31745]={ + connections={ + }, + group=984, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Lockdown", + orbit=4, + orbitIndex=48, + skill=31745, + stats={ + [1]="40% increased Attack Damage against Maimed Enemies", + [2]="Enemies are Maimed for 4 seconds after becoming Unpinned" + } + }, + [31746]={ + connections={ + [1]={ + id=32845, + orbit=4 + }, + [2]={ + id=41012, + orbit=-4 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Penetration", + orbit=4, + orbitIndex=24, + skill=31746, + stats={ + [1]="Damage Penetrates 8% Fire Resistance" + } + }, + [31757]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=137, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=9, + skill=31757, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [31763]={ + connections={ + [1]={ + id=43155, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Critical Chance", + orbit=4, + orbitIndex=27, + skill=31763, + stats={ + [1]="10% increased Critical Hit Chance with Crossbows" + } + }, + [31765]={ + connections={ + [1]={ + id=59538, + orbit=0 + }, + [2]={ + id=722, + orbit=0 + }, + [3]={ + id=41886, + orbit=0 + }, + [4]={ + id=61421, + orbit=0 + } + }, + group=1417, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=31765, + stats={ + [1]="+5 to any Attribute" + } + }, + [31773]={ + connections={ + [1]={ + id=55011, + orbit=0 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Resurging Archon", + orbit=7, + orbitIndex=1, + skill=31773, + stats={ + [1]="Archon recovery period expires 25% faster" + } + }, + [31778]={ + connections={ + [1]={ + id=2344, + orbit=-2 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=10, + skill=31778, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [31779]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + connections={ + }, + group=210, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + isOnlyImage=true, + name="Power Charge Mastery", + orbit=0, + orbitIndex=0, + skill=31779 + }, + [31805]={ + connections={ + [1]={ + id=44461, + orbit=-3 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=3, + orbitIndex=15, + skill=31805, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [31825]={ + connections={ + [1]={ + id=16142, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Attack Cold Damage", + orbit=7, + orbitIndex=6, + skill=31825, + stats={ + [1]="12% increased Attack Cold Damage" + } + }, + [31826]={ + connections={ + [1]={ + id=24889, + orbit=0 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Long Distance Relationship", + orbit=3, + orbitIndex=21, + skill=31826, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="Minions have 15% increased Area of Effect" + } + }, + [31848]={ + connections={ + [1]={ + id=40117, + orbit=7 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns Ignore Armour", + orbit=7, + orbitIndex=0, + skill=31848, + stats={ + [1]="Thorns Damage has 25% chance to ignore Enemy Armour" + } + }, + [31855]={ + connections={ + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=7, + skill=31855, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [31888]={ + connections={ + [1]={ + id=34300, + orbit=0 + } + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana Cost Efficiency", + orbit=2, + orbitIndex=4, + skill=31888, + stats={ + [1]="8% increased Mana Cost Efficiency" + } + }, + [31890]={ + connections={ + [1]={ + id=38827, + orbit=7 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=3, + orbitIndex=5, + skill=31890, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [31898]={ + connections={ + [1]={ + id=3921, + orbit=0 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=7, + orbitIndex=7, + skill=31898, + stats={ + [1]="6% increased Reservation Efficiency of Herald Skills" + } + }, + [31903]={ + connections={ + [1]={ + id=37612, + orbit=0 + }, + [2]={ + id=56605, + orbit=0 + }, + [3]={ + id=38010, + orbit=0 + } + }, + group=499, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=31903, + stats={ + [1]="+5 to any Attribute" + } + }, + [31908]={ + connections={ + [1]={ + id=5594, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=2, + orbitIndex=8, + skill=31908, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [31918]={ + connections={ + [1]={ + id=4534, + orbit=-3 + }, + [2]={ + id=60323, + orbit=-9 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Pierce Chance", + orbit=7, + orbitIndex=15, + skill=31918, + stats={ + [1]="15% chance to Pierce an Enemy" + } + }, + [31925]={ + connections={ + [1]={ + id=38596, + orbit=3 + } + }, + group=332, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + isNotable=true, + name="Warding Fetish", + orbit=0, + orbitIndex=0, + skill=31925, + stats={ + [1]="30% increased Damage per Curse on you", + [2]="30% reduced effect of Curses on you", + [3]="60% increased Energy Shield from Equipped Focus" + } + }, + [31928]={ + connections={ + [1]={ + id=50574, + orbit=0 + }, + [2]={ + id=15443, + orbit=0 + } + }, + group=1052, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Life Recoup", + orbit=2, + orbitIndex=12, + skill=31928, + stats={ + [1]="6% of Physical Damage taken Recouped as Life" + } + }, + [31943]={ + connections={ + [1]={ + id=8382, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=12, + skill=31943, + stats={ + [1]="4% faster start of Energy Shield Recharge", + [2]="8% increased Elemental Damage" + } + }, + [31950]={ + connections={ + [1]={ + id=58329, + orbit=0 + }, + [2]={ + id=8569, + orbit=0 + }, + [3]={ + id=21080, + orbit=0 + }, + [4]={ + id=7405, + orbit=0 + } + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=31950, + stats={ + [1]="+5 to any Attribute" + } + }, + [31955]={ + connections={ + [1]={ + id=37641, + orbit=0 + } + }, + group=275, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + isNotable=true, + name="Voll's Protection", + orbit=3, + orbitIndex=16, + skill=31955, + stats={ + [1]="+15% of Armour also applies to Elemental Damage", + [2]="10% faster start of Energy Shield Recharge", + [3]="10% increased Block chance", + [4]="Gain 10 Energy Shield when you Block", + [5]="Recover 10 Life when you Block" + } + }, + [31977]={ + connections={ + [1]={ + id=4828, + orbit=0 + }, + [2]={ + id=10314, + orbit=6 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=5, + orbitIndex=36, + skill=31977, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [31991]={ + connections={ + [1]={ + id=36070, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=7, + orbitIndex=15, + skill=31991, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [32009]={ + connections={ + [1]={ + id=36814, + orbit=0 + } + }, + group=856, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=2, + skill=32009, + stats={ + [1]="20% increased Curse Duration" + } + }, + [32016]={ + connections={ + [1]={ + id=5766, + orbit=-6 + }, + [2]={ + id=49984, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=7, + orbitIndex=19, + skill=32016, + stats={ + [1]="12% increased Spell Damage while wielding a Melee Weapon" + } + }, + [32040]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=32040 + }, + [32054]={ + connections={ + [1]={ + id=62153, + orbit=0 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Damage", + orbit=3, + orbitIndex=15, + skill=32054, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [32071]={ + connections={ + [1]={ + id=15427, + orbit=0 + }, + [2]={ + id=49111, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Primal Growth", + orbit=3, + orbitIndex=2, + skill=32071, + stats={ + [1]="15% increased Area of Effect if you've Killed Recently", + [2]="8% increased Area of Effect for Attacks" + } + }, + [32078]={ + connections={ + [1]={ + id=16940, + orbit=0 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge Spell Damage", + orbit=7, + orbitIndex=21, + skill=32078, + stats={ + [1]="15% increased Spell Damage while you have Arcane Surge" + } + }, + [32096]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=32096 + }, + [32123]={ + connections={ + [1]={ + id=54678, + orbit=0 + } + }, + group=1221, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=3, + orbitIndex=4, + skill=32123, + stats={ + [1]="15% increased chance to Shock" + } + }, + [32128]={ + connections={ + [1]={ + id=18101, + orbit=7 + }, + [2]={ + id=15801, + orbit=0 + } + }, + group=605, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Flow of Time", + orbit=0, + orbitIndex=0, + skill=32128, + stats={ + [1]="Buffs on you expire 10% slower", + [2]="20% increased speed of Recoup Effects" + } + }, + [32135]={ + connections={ + [1]={ + id=12322, + orbit=5 + }, + [2]={ + id=16484, + orbit=-9 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Charges Gained", + orbit=4, + orbitIndex=12, + skill=32135, + stats={ + [1]="10% increased Flask Charges gained" + } + }, + [32148]={ + connections={ + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Rattling Ball", + orbit=2, + orbitIndex=2, + skill=32148, + stats={ + [1]="25% increased Damage with Flails" + } + }, + [32151]={ + connections={ + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + isNotable=true, + name="Crystalline Resistance", + orbit=4, + orbitIndex=60, + skill=32151, + stats={ + [1]="+1% to all Maximum Elemental Resistances if you have at\nleast 5 Red, Green and Blue Support Gems Socketed" + } + }, + [32155]={ + connections={ + [1]={ + id=25700, + orbit=4 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Shock Chance", + orbit=7, + orbitIndex=16, + skill=32155, + stats={ + [1]="10% increased chance to Shock", + [2]="8% increased Elemental Damage" + } + }, + [32183]={ + connections={ + [1]={ + id=28371, + orbit=4 + } + }, + group=1332, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=32183, + stats={ + [1]="+5 to any Attribute" + } + }, + [32185]={ + connections={ + [1]={ + id=17118, + orbit=0 + } + }, + group=1019, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png", + name="Attack Damage and Companion Damage as Cold", + orbit=0, + orbitIndex=0, + skill=32185, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Cold Damage" + } + }, + [32186]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Accuracy Rating", + orbit=4, + orbitIndex=43, + skill=32186, + stats={ + [1]="10% increased Accuracy Rating while Shapeshifted" + } + }, + [32194]={ + connections={ + [1]={ + id=55933, + orbit=0 + }, + [2]={ + id=36478, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=60, + skill=32194, + stats={ + [1]="+5 to any Attribute" + } + }, + [32233]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=2, + orbitIndex=21, + skill=32233 + }, + [32239]={ + connections={ + [1]={ + id=9009, + orbit=-3 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=3, + orbitIndex=1, + skill=32239, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [32241]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=1214, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=32241 + }, + [32258]={ + connections={ + [1]={ + id=19644, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=8, + skill=32258, + stats={ + [1]="Minions have 12% increased maximum Life" + } + }, + [32271]={ + connections={ + [1]={ + id=54311, + orbit=-2 + } + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=7, + orbitIndex=15, + skill=32271, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [32274]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connections={ + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=32274 + }, + [32278]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=501, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=7, + orbitIndex=11, + skill=32278 + }, + [32301]={ + connections={ + [1]={ + id=50277, + orbit=0 + } + }, + group=1309, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Frazzled", + orbit=0, + orbitIndex=0, + skill=32301, + stats={ + [1]="15% increased Mana Regeneration Rate", + [2]="30% increased Magnitude of Shock you inflict" + } + }, + [32309]={ + connections={ + [1]={ + id=59070, + orbit=2 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration", + orbit=3, + orbitIndex=16, + skill=32309, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [32319]={ + connections={ + [1]={ + id=33542, + orbit=0 + } + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Surpassing Arrow Chance", + orbit=7, + orbitIndex=20, + skill=32319, + stats={ + [1]="+10% Surpassing chance to fire an additional Arrow" + } + }, + [32349]={ + connections={ + [1]={ + id=3446, + orbit=0 + } + }, + flavourText="The Titans did not vanish from this world. Their might lives on - in you.", + group=208, + icon="Art/2DArt/SkillIcons/passives/GiantBloodKeystone.png", + isKeystone=true, + name="Giant's Blood", + orbit=0, + orbitIndex=0, + skill=32349, + stats={ + [1]="You can wield Two-Handed Axes, Maces and Swords in one hand\nTriple Attribute requirements of Martial Weapons\nInherent Life granted by Strength is halved" + } + }, + [32353]={ + connections={ + [1]={ + id=41180, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Swift Claw", + orbit=3, + orbitIndex=23, + skill=32353, + stats={ + [1]="10% increased Skill Speed while Shapeshifted" + } + }, + [32354]={ + connections={ + [1]={ + id=6626, + orbit=-2 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Defiance", + orbit=0, + orbitIndex=0, + skill=32354, + stats={ + [1]="20% increased Armour and Evasion Rating", + [2]="80% increased Armour and Evasion Rating when on Low Life" + } + }, + [32364]={ + connections={ + [1]={ + id=32858, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=2, + orbitIndex=7, + skill=32364, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [32399]={ + connections={ + [1]={ + id=46857, + orbit=-7 + } + }, + group=1246, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=0, + orbitIndex=0, + skill=32399, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Cost Efficiency" + } + }, + [32404]={ + connections={ + [1]={ + id=15618, + orbit=6 + }, + [2]={ + id=5501, + orbit=0 + }, + [3]={ + id=22290, + orbit=-6 + } + }, + group=778, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Chance", + orbit=2, + orbitIndex=18, + skill=32404, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [32416]={ + connections={ + [1]={ + id=27726, + orbit=-3 + } + }, + group=595, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Sturdy Metal", + orbit=2, + orbitIndex=16, + skill=32416, + stats={ + [1]="80% increased Armour from Equipped Body Armour" + } + }, + [32427]={ + connections={ + [1]={ + id=4456, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=18, + skill=32427, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [32436]={ + connections={ + [1]={ + id=5332, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=2, + orbitIndex=14, + skill=32436, + stats={ + [1]="+8 to Intelligence" + } + }, + [32438]={ + connections={ + [1]={ + id=55149, + orbit=4 + } + }, + group=1277, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=32438, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [32442]={ + connections={ + [1]={ + id=2361, + orbit=0 + } + }, + group=1471, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Stun and Knockback", + orbit=0, + orbitIndex=0, + skill=32442, + stats={ + [1]="20% increased Knockback Distance", + [2]="20% increased Stun Buildup with Quarterstaves" + } + }, + [32448]={ + connections={ + }, + group=232, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Shockproof", + orbit=2, + orbitIndex=2, + skill=32448, + stats={ + [1]="10% increased Armour", + [2]="+30% of Armour also applies to Lightning Damage", + [3]="30% reduced effect of Shock on you" + } + }, + [32474]={ + connections={ + [1]={ + id=29611, + orbit=0 + }, + [2]={ + id=47931, + orbit=0 + }, + [3]={ + id=55888, + orbit=0 + }, + [4]={ + id=36025, + orbit=-9 + }, + [5]={ + id=61942, + orbit=0 + } + }, + group=143, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=32474, + stats={ + [1]="+5 to any Attribute" + } + }, + [32507]={ + connections={ + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + isNotable=true, + name="Cut to the Bone", + orbit=0, + orbitIndex=0, + skill=32507, + stats={ + [1]="Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt", + [2]="20% increased Magnitude of Impales inflicted with Spells", + [3]="20% increased Physical Damage" + } + }, + [32509]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=32509 + }, + [32523]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + [1]={ + id=1546, + orbit=0 + } + }, + group=631, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=32523 + }, + [32534]={ + ascendancyName="Titan", + connections={ + [1]={ + id=35453, + orbit=0 + }, + [2]={ + id=19424, + orbit=0 + }, + [3]={ + id=13715, + orbit=0 + }, + [4]={ + id=51690, + orbit=0 + }, + [5]={ + id=29323, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Titan", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=96, + skill=32534 + }, + [32543]={ + connections={ + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Unhindered", + orbit=0, + orbitIndex=0, + skill=32543, + stats={ + [1]="20% reduced Slowing Potency of Debuffs on You", + [2]="6% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [32545]={ + connections={ + [1]={ + id=61196, + orbit=4 + } + }, + group=983, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + name="Skill Speed", + orbit=2, + orbitIndex=2, + skill=32545, + stats={ + [1]="3% increased Skill Speed" + } + }, + [32549]={ + connections={ + [1]={ + id=29098, + orbit=-2 + }, + [2]={ + id=32474, + orbit=3 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=2, + orbitIndex=14, + skill=32549, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [32555]={ + connections={ + [1]={ + id=9535, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=7, + orbitIndex=22, + skill=32555, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [32559]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=46535, + orbit=0 + } + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=32559, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [32560]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=16249, + orbit=0 + } + }, + group=300, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Presence Area", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=32560, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [32561]={ + connections={ + [1]={ + id=51825, + orbit=0 + } + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=3, + orbitIndex=15, + skill=32561, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [32564]={ + connections={ + [1]={ + id=37519, + orbit=0 + }, + [2]={ + id=39207, + orbit=0 + }, + [3]={ + id=2864, + orbit=0 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Movement Speed and Slow Effect on You", + orbit=0, + orbitIndex=0, + skill=32564, + stats={ + [1]="1% increased Movement Speed", + [2]="4% reduced Slowing Potency of Debuffs on You" + } + }, + [32597]={ + connections={ + [1]={ + id=12777, + orbit=0 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=3, + skill=32597, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [32599]={ + connections={ + [1]={ + id=28516, + orbit=2 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area of Effect", + orbit=2, + orbitIndex=12, + skill=32599, + stats={ + [1]="6% increased Area of Effect" + } + }, + [32600]={ + connections={ + [1]={ + id=6304, + orbit=0 + }, + [2]={ + id=20303, + orbit=-7 + } + }, + group=381, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=12, + skill=32600, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [32637]={ + ascendancyName="Tactician", + connections={ + }, + group=377, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.png", + isNotable=true, + name="Stay Light, Use Cover", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=32637, + stats={ + [1]="Defend with 200% of Armour", + [2]="Enemies have an Accuracy Penalty against you based on Distance", + [3]="Maximum Chance to Evade is 50%", + [4]="Maximum Physical Damage Reduction is 50%" + } + }, + [32655]={ + connections={ + [1]={ + id=33514, + orbit=0 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Hunting Companion", + orbit=7, + orbitIndex=18, + skill=32655, + stats={ + [1]="20% increased Culling Strike Threshold", + [2]="Culling Strike against Beasts while your Companion is in your Presence" + } + }, + [32660]={ + connections={ + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=21, + skill=32660, + stats={ + [1]="10% increased Critical Hit Chance if you have Killed Recently" + } + }, + [32664]={ + connections={ + }, + group=1146, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png", + isNotable=true, + name="Chakra of Breathing", + orbit=0, + orbitIndex=0, + skill=32664, + stats={ + [1]="20% faster start of Energy Shield Recharge when not on Full Life", + [2]="20% increased Evasion Rating while you have Energy Shield" + } + }, + [32672]={ + connections={ + [1]={ + id=4031, + orbit=0 + }, + [2]={ + id=9928, + orbit=0 + } + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze and Chill Resistance", + orbit=3, + orbitIndex=12, + skill=32672, + stats={ + [1]="5% reduced Effect of Chill on you", + [2]="10% increased Freeze Threshold" + } + }, + [32681]={ + connections={ + [1]={ + id=32664, + orbit=0 + }, + [2]={ + id=38668, + orbit=0 + } + }, + group=1146, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png", + name="Evasion and Energy Shield Delay", + orbit=7, + orbitIndex=15, + skill=32681, + stats={ + [1]="12% increased Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [32683]={ + connections={ + [1]={ + id=53149, + orbit=0 + }, + [2]={ + id=54413, + orbit=0 + } + }, + group=1023, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Essence of the Mountain", + orbit=4, + orbitIndex=30, + skill=32683, + stats={ + [1]="Gain 5% of Damage as Extra Cold Damage", + [2]="20% increased Freeze Buildup" + } + }, + [32699]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=7793, + orbit=0 + }, + [2]={ + id=23880, + orbit=0 + }, + [3]={ + id=24135, + orbit=0 + }, + [4]={ + id=39470, + orbit=4 + }, + [5]={ + id=64379, + orbit=-9 + }, + [6]={ + id=63484, + orbit=-9 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Infernalist", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=32699 + }, + [32701]={ + connections={ + [1]={ + id=21746, + orbit=0 + }, + [2]={ + id=26598, + orbit=0 + }, + [3]={ + id=22115, + orbit=0 + }, + [4]={ + id=43877, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=18, + skill=32701, + stats={ + [1]="+5 to any Attribute" + } + }, + [32705]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + flavourText="\"You knew the twisted plan these fools devised. As Tale-woman, you are their compass in the sandstorm. Yet... you did not act. And now we mourn these honoured dead. You must pay.\"\n\nVarashta condemned Navira to the ritual of the {barya}, sentenced to serve as a Djinn.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.png", + isNotable=true, + name="Barya of Navira", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=0, + skill=32705, + stats={ + [1]="Grants Skill: Navira, the Last Mirage" + } + }, + [32721]={ + connections={ + [1]={ + id=10011, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Distracted Target", + orbit=7, + orbitIndex=11, + skill=32721, + stats={ + [1]="30% increased Critical Hit Chance against Blinded Enemies" + } + }, + [32727]={ + connections={ + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Armour Break", + orbit=2, + orbitIndex=23, + skill=32727, + stats={ + [1]="Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt" + } + }, + [32745]={ + connections={ + [1]={ + id=50104, + orbit=0 + }, + [2]={ + id=61179, + orbit=0 + } + }, + group=488, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=0, + orbitIndex=0, + skill=32745, + stats={ + [1]="10% increased Physical Damage" + } + }, + [32763]={ + connections={ + }, + group=1473, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=6, + skill=32763 + }, + [32764]={ + connections={ + [1]={ + id=21213, + orbit=0 + }, + [2]={ + id=37609, + orbit=0 + } + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=16, + skill=32764, + stats={ + [1]="+8% of Armour also applies to Elemental Damage" + } + }, + [32768]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=8107, + orbit=0 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=17, + skill=32768, + stats={ + [1]="20% increased Glory generation" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [32771]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=34817, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Darkness", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=55, + skill=32771, + stats={ + [1]="10% increased maximum Darkness" + } + }, + [32777]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=15, + skill=32777 + }, + [32799]={ + connections={ + [1]={ + id=23961, + orbit=0 + }, + [2]={ + id=32096, + orbit=0 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Captivating Companionship", + orbit=3, + orbitIndex=1, + skill=32799, + stats={ + [1]="5% of Damage from Hits is taken from your Damageable Companion's Life before you", + [2]="20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [32813]={ + connections={ + [1]={ + id=59600, + orbit=-7 + }, + [2]={ + id=35809, + orbit=0 + } + }, + group=1205, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=12, + skill=32813, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [32818]={ + connections={ + [1]={ + id=48135, + orbit=4 + } + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=7, + orbitIndex=6, + skill=32818, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [32836]={ + connections={ + [1]={ + id=675, + orbit=3 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Slow Effect on You", + orbit=2, + orbitIndex=21, + skill=32836, + stats={ + [1]="10% increased Armour", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [32845]={ + connections={ + [1]={ + id=64819, + orbit=4 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage", + orbit=5, + orbitIndex=36, + skill=32845, + stats={ + [1]="10% increased Fire Damage" + } + }, + [32847]={ + connections={ + }, + group=516, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Damage", + orbit=0, + orbitIndex=0, + skill=32847, + stats={ + [1]="Minions deal 20% increased Damage with Command Skills" + } + }, + [32856]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=58747, + orbit=0 + }, + [2]={ + id=3605, + orbit=9 + } + }, + group=405, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=32856, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [32858]={ + connections={ + [1]={ + id=1073, + orbit=0 + }, + [2]={ + id=1205, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Dread Engineer's Concoction", + orbit=3, + orbitIndex=9, + skill=32858, + stats={ + [1]="35% increased Magnitude of Ignite against Poisoned enemies" + } + }, + [32859]={ + connections={ + [1]={ + id=15114, + orbit=-4 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=3, + orbitIndex=9, + skill=32859, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [32885]={ + connections={ + [1]={ + id=6689, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=4, + orbitIndex=33, + skill=32885, + stats={ + [1]="5% increased Block chance" + } + }, + [32891]={ + connections={ + [1]={ + id=331, + orbit=-2 + }, + [2]={ + id=22329, + orbit=-7 + } + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection and Evasion", + orbit=7, + orbitIndex=7, + skill=32891, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [32896]={ + connections={ + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=7, + orbitIndex=9, + skill=32896, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [32903]={ + connections={ + [1]={ + id=25361, + orbit=0 + } + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=15, + skill=32903, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [32905]={ + ascendancyName="Oracle", + connections={ + }, + group=23, + icon="Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.png", + isNotable=true, + name="Entwined Realities", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=20, + skill=32905, + stats={ + [1]="Non-Keystone Passive Skills in Medium Radius of allocated Keystone Passive Skills can be allocated without being connected to your tree" + } + }, + [32923]={ + connections={ + [1]={ + id=58215, + orbit=4 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Arcane Surge Effect and Life Regeneration", + orbit=7, + orbitIndex=0, + skill=32923, + stats={ + [1]="5% increased Life Regeneration rate", + [2]="10% increased effect of Arcane Surge on you" + } + }, + [32932]={ + connections={ + [1]={ + id=14205, + orbit=0 + }, + [2]={ + id=63268, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Ichlotl's Inferno", + orbit=7, + orbitIndex=21, + skill=32932, + stats={ + [1]="Every Rage also grants 1% increased Fire Damage" + } + }, + [32943]={ + connections={ + [1]={ + id=16938, + orbit=0 + }, + [2]={ + id=29930, + orbit=0 + }, + [3]={ + id=16484, + orbit=0 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=4, + orbitIndex=67, + skill=32943, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [32951]={ + connections={ + [1]={ + id=39280, + orbit=0 + }, + [2]={ + id=41522, + orbit=0 + } + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Preservation", + orbit=3, + orbitIndex=17, + skill=32951, + stats={ + [1]="25% increased Skill Effect Duration" + } + }, + [32952]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=365, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.png", + isMultipleChoiceOption=true, + name="Bolstering Implants", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=32952, + stats={ + [1]="+2 to Level of all Skills with a Strength requirement" + } + }, + [32964]={ + connections={ + [1]={ + id=34617, + orbit=5 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=3, + skill=32964, + stats={ + [1]="+6% of Armour also applies to Elemental Damage", + [2]="3% faster start of Energy Shield Recharge" + } + }, + [32976]={ + connections={ + [1]={ + id=14428, + orbit=0 + }, + [2]={ + id=38776, + orbit=0 + }, + [3]={ + id=34202, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + isNotable=true, + name="Gem Enthusiast", + orbit=4, + orbitIndex=48, + skill=32976, + stats={ + [1]="5% increased Maximum Life if you have at least 10 Red Support Gems Socketed", + [2]="5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed", + [3]="5% increased Movement Speed if you have at least 10 Green Support Gems Socketed" + } + }, + [33037]={ + connections={ + [1]={ + id=47683, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Chaining Projectiles", + orbit=3, + orbitIndex=2, + skill=33037, + stats={ + [1]="Projectiles have 5% chance to Chain an additional time from terrain" + } + }, + [33045]={ + connections={ + [1]={ + id=62303, + orbit=-4 + } + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Ailment Threshold and Slow Effect on You", + orbit=4, + orbitIndex=65, + skill=33045, + stats={ + [1]="10% increased Elemental Ailment Threshold", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [33053]={ + connections={ + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=22, + skill=33053, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [33059]={ + connections={ + [1]={ + id=2841, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Back in Action", + orbit=2, + orbitIndex=12, + skill=33059, + stats={ + [1]="80% increased Stun Recovery" + } + }, + [33080]={ + connections={ + [1]={ + id=43254, + orbit=0 + } + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Debuff Magnitude", + orbit=2, + orbitIndex=18, + skill=33080, + stats={ + [1]="10% increased Parried Debuff Magnitude" + } + }, + [33093]={ + connections={ + [1]={ + id=30077, + orbit=0 + } + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Effervescent", + orbit=7, + orbitIndex=6, + skill=33093, + stats={ + [1]="4% increased Cast Speed for each different Spell you've Cast in the last eight seconds" + } + }, + [33099]={ + connections={ + [1]={ + id=25029, + orbit=0 + } + }, + group=1268, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Hunter's Talisman", + orbit=4, + orbitIndex=27, + skill=33099, + stats={ + [1]="+1 Charm Slot" + } + }, + [33112]={ + connections={ + [1]={ + id=10881, + orbit=-7 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Focus Energy Shield", + orbit=3, + orbitIndex=12, + skill=33112, + stats={ + [1]="40% increased Energy Shield from Equipped Focus" + } + }, + [33137]={ + connections={ + [1]={ + id=36894, + orbit=0 + }, + [2]={ + id=17330, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Damage", + orbit=2, + orbitIndex=17, + skill=33137, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [33141]={ + ascendancyName="Lich", + connections={ + [1]={ + id=33570, + orbit=4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=30732, + name="Life", + stats={ + [1]="3% increased maximum Life" + } + } + }, + orbit=9, + orbitIndex=9, + skill=33141, + stats={ + [1]="3% increased maximum Life" + } + }, + [33180]={ + connections={ + [1]={ + id=46989, + orbit=0 + }, + [2]={ + id=60269, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=7, + orbitIndex=15, + skill=33180, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [33203]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=55033, + orbit=-8 + }, + [2]={ + id=38707, + orbit=6 + } + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Stun Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=27, + skill=33203, + stats={ + [1]="25% increased Stun Threshold while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [33209]={ + connections={ + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast and Attack Speed", + orbit=4, + orbitIndex=2, + skill=33209, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed", + [2]="Attacks used by Totems have 4% increased Attack Speed" + } + }, + [33216]={ + connections={ + }, + group=729, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Deep Wounds", + orbit=2, + orbitIndex=10, + skill=33216, + stats={ + [1]="Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + } + }, + [33221]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + [1]={ + id=26331, + orbit=0 + }, + [2]={ + id=19722, + orbit=0 + }, + [3]={ + id=4959, + orbit=0 + } + }, + group=1252, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=33221 + }, + [33225]={ + connections={ + }, + group=924, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.png", + name="Minion Fire Resistance", + orbit=0, + orbitIndex=0, + skill=33225, + stats={ + [1]="Minions have +3% to Maximum Fire Resistances", + [2]="Minions have +20% to Fire Resistance" + } + }, + [33229]={ + connections={ + [1]={ + id=64996, + orbit=0 + }, + [2]={ + id=6161, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Haemorrhaging Cuts", + orbit=4, + orbitIndex=60, + skill=33229, + stats={ + [1]="Enemies you inflict Bleeding on cannot Regenerate Life" + } + }, + [33240]={ + connections={ + [1]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Lord of Horrors", + orbit=5, + orbitIndex=71, + skill=33240, + stats={ + [1]="12% increased Reservation Efficiency of Minion Skills" + } + }, + [33242]={ + connections={ + [1]={ + id=15838, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Ailment Chance", + orbit=5, + orbitIndex=2, + skill=33242, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [33244]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + connections={ + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + isOnlyImage=true, + name="Rage Mastery", + orbit=0, + orbitIndex=0, + skill=33244 + }, + [33245]={ + connections={ + [1]={ + id=9151, + orbit=0 + }, + [2]={ + id=31918, + orbit=-7 + }, + [3]={ + id=45331, + orbit=7 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=1, + orbitIndex=3, + skill=33245, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [33254]={ + connections={ + }, + group=760, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=2, + orbitIndex=1, + skill=33254, + stats={ + [1]="10% increased Spell Damage" + } + }, + [33340]={ + connections={ + [1]={ + id=51267, + orbit=0 + } + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=7, + orbitIndex=15, + skill=33340, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [33345]={ + connections={ + [1]={ + id=61923, + orbit=0 + }, + [2]={ + id=10131, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=4, + orbitIndex=14, + skill=33345, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [33348]={ + connections={ + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=7, + skill=33348, + stats={ + [1]="25% increased Presence Area of Effect" + } + }, + [33366]={ + connections={ + [1]={ + id=10944, + orbit=-3 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=14, + skill=33366, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [33369]={ + connections={ + }, + flavourText="My ancestral pact was sealed. Forevermore, I would gain sustenance\nonly from the ravaged flesh of my enemies.", + group=681, + icon="Art/2DArt/SkillIcons/passives/vaalpact.png", + isKeystone=true, + name="Vaal Pact", + orbit=0, + orbitIndex=0, + skill=33369, + stats={ + [1]="50% more amount of Life Leeched\nLeech Life 67% less quickly\nCannot Recover Life other than from Leech\nLife Leech effects are not removed when Unreserved Life is Filled" + } + }, + [33391]={ + connections={ + [1]={ + id=56330, + orbit=0 + }, + [2]={ + id=49661, + orbit=0 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Critical Bleeding Effect", + orbit=3, + orbitIndex=5, + skill=33391, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict with Critical Hits" + } + }, + [33393]={ + connections={ + [1]={ + id=41747, + orbit=-3 + } + }, + group=142, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Damage", + orbit=5, + orbitIndex=15, + skill=33393, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [33397]={ + connections={ + [1]={ + id=39594, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=2, + orbitIndex=21, + skill=33397, + stats={ + [1]="12% increased Fire Damage" + } + }, + [33400]={ + connections={ + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Reverberating Parry", + orbit=0, + orbitIndex=0, + skill=33400, + stats={ + [1]="15% increased Parried Debuff Magnitude", + [2]="20% increased Parry Hit Area of Effect" + } + }, + [33402]={ + connections={ + [1]={ + id=58125, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=4, + orbitIndex=54, + skill=33402, + stats={ + [1]="5% increased Block chance" + } + }, + [33404]={ + connections={ + [1]={ + id=57821, + orbit=0 + } + }, + flavourText="Burn the spirit to vitalise the flesh.", + group=1323, + icon="Art/2DArt/SkillIcons/passives/EternalYouth.png", + isKeystone=true, + name="Eternal Youth", + orbit=0, + orbitIndex=0, + skill=33404, + stats={ + [1]="Life Recharges instead of Energy Shield\n50% less Life Recovery from Flasks" + } + }, + [33408]={ + connections={ + }, + group=119, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Life Leech", + orbit=0, + orbitIndex=0, + skill=33408, + stats={ + [1]="10% increased amount of Life Leeched while Shapeshifted" + } + }, + [33415]={ + connections={ + [1]={ + id=31763, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Critical Chance", + orbit=4, + orbitIndex=31, + skill=33415, + stats={ + [1]="10% increased Critical Hit Chance with Crossbows" + } + }, + [33423]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=65192, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=13, + skill=33423, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed", + [2]="Attacks used by Totems have 4% increased Attack Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [33445]={ + connections={ + [1]={ + id=30143, + orbit=-2 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=7, + orbitIndex=3, + skill=33445, + stats={ + [1]="5% increased Block chance" + } + }, + [33452]={ + connections={ + [1]={ + id=23192, + orbit=-6 + }, + [2]={ + id=52796, + orbit=9 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=5, + orbitIndex=54, + skill=33452, + stats={ + [1]="5% increased Block chance" + } + }, + [33463]={ + connections={ + [1]={ + id=41877, + orbit=6 + }, + [2]={ + id=31286, + orbit=0 + }, + [3]={ + id=45304, + orbit=0 + } + }, + group=1330, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=33463, + stats={ + [1]="+5 to any Attribute" + } + }, + [33514]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=33514 + }, + [33518]={ + connections={ + [1]={ + id=63579, + orbit=6 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Slow Effect on You", + orbit=4, + orbitIndex=34, + skill=33518, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [33542]={ + connections={ + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Quick Fingers", + orbit=0, + orbitIndex=0, + skill=33542, + stats={ + [1]="+24% Surpassing chance to fire an additional Arrow" + } + }, + [33556]={ + connections={ + [1]={ + id=55473, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=2, + skill=33556, + stats={ + [1]="8% increased Melee Damage" + } + }, + [33562]={ + connections={ + [1]={ + id=27216, + orbit=0 + }, + [2]={ + id=27611, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Damage", + orbit=0, + orbitIndex=0, + skill=33562, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [33570]={ + ascendancyName="Lich", + connections={ + [1]={ + id=36696, + orbit=5 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.png", + isNotable=true, + name="Soulless Form", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=20, + skill=33570, + stats={ + [1]="10% of Damage taken bypasses Energy Shield", + [2]="No inherent Mana Regeneration", + [3]="Regenerate Mana equal to 6% of maximum Life per second" + } + }, + [33585]={ + connections={ + [1]={ + id=24889, + orbit=0 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Unspoken Bond", + orbit=3, + orbitIndex=7, + skill=33585, + stats={ + [1]="Companions have +30% to Chaos Resistance", + [2]="Companions have +30% to all Elemental Resistances" + } + }, + [33590]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=131, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=33590 + }, + [33596]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connections={ + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=33596 + }, + [33601]={ + connections={ + [1]={ + id=35708, + orbit=-2 + }, + [2]={ + id=2863, + orbit=0 + } + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=2, + orbitIndex=20, + skill=33601, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [33604]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=33604 + }, + [33612]={ + connections={ + [1]={ + id=8983, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=1, + orbitIndex=8, + skill=33612, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [33618]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + [1]={ + id=39990, + orbit=0 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=2, + orbitIndex=10, + skill=33618 + }, + [33639]={ + connections={ + [1]={ + id=8782, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infused Spell Damage", + orbit=2, + orbitIndex=16, + skill=33639, + stats={ + [1]="12% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [33713]={ + connections={ + [1]={ + id=57462, + orbit=-2 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed", + orbit=2, + orbitIndex=17, + skill=33713, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [33722]={ + connections={ + [1]={ + id=4140, + orbit=0 + }, + [2]={ + id=55048, + orbit=0 + }, + [3]={ + id=27980, + orbit=0 + }, + [4]={ + id=61811, + orbit=0 + } + }, + group=187, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=33722, + stats={ + [1]="+5 to any Attribute" + } + }, + [33729]={ + connections={ + [1]={ + id=45712, + orbit=4 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Flammability Magnitude", + orbit=4, + orbitIndex=66, + skill=33729, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="8% increased Elemental Damage" + } + }, + [33730]={ + connections={ + [1]={ + id=60809, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + isNotable=true, + name="Focused Channel", + orbit=7, + orbitIndex=5, + skill=33730, + stats={ + [1]="Channelling Skills deal 25% increased Damage", + [2]="50% increased Stun Threshold while Channelling" + } + }, + [33736]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=61991, + orbit=0 + } + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=86, + skill=33736, + stats={ + [1]="4% increased Skill Speed" + } + }, + [33751]={ + connections={ + [1]={ + id=12451, + orbit=7 + } + }, + group=1085, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=7, + orbitIndex=18, + skill=33751, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [33781]={ + connections={ + [1]={ + id=65493, + orbit=2 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area and Presence", + orbit=7, + orbitIndex=13, + skill=33781, + stats={ + [1]="15% reduced Presence Area of Effect", + [2]="6% increased Area of Effect" + } + }, + [33812]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=38769, + orbit=0 + }, + [2]={ + id=18585, + orbit=5 + }, + [3]={ + id=25935, + orbit=5 + }, + [4]={ + id=1994, + orbit=4 + }, + [5]={ + id=39365, + orbit=3 + } + }, + group=51, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Brute", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=48, + skill=33812 + }, + [33815]={ + connections={ + [1]={ + id=35644, + orbit=6 + } + }, + group=1125, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=2, + orbitIndex=5, + skill=33815, + stats={ + [1]="10% increased Poison Duration" + } + }, + [33823]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1117, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=33823 + }, + [33824]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=42253, + orbit=0 + } + }, + group=63, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Defences", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=33824, + stats={ + [1]="10% increased Armour, Evasion and Energy Shield" + } + }, + [33829]={ + connections={ + [1]={ + id=18737, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=7, + orbitIndex=2, + skill=33829, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [33830]={ + connections={ + [1]={ + id=35031, + orbit=-2 + } + }, + group=1479, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.png", + name="Life Regeneration", + orbit=2, + orbitIndex=5, + skill=33830, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [33838]={ + connections={ + [1]={ + id=46182, + orbit=-4 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance and Duration", + orbit=7, + orbitIndex=15, + skill=33838, + stats={ + [1]="6% increased chance to inflict Ailments", + [2]="6% increased Duration of Damaging Ailments on Enemies" + } + }, + [33848]={ + connections={ + [1]={ + id=47677, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed", + orbit=4, + orbitIndex=51, + skill=33848, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [33866]={ + connections={ + [1]={ + id=49220, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=33866, + stats={ + [1]="8% increased Attack Damage" + } + }, + [33887]={ + connections={ + [1]={ + id=61432, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Full Salvo", + orbit=4, + orbitIndex=7, + skill=33887, + stats={ + [1]="25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds" + } + }, + [33922]={ + connections={ + [1]={ + id=6950, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Stripped Defences", + orbit=2, + orbitIndex=6, + skill=33922, + stats={ + [1]="Exposure you inflict lowers Resistances by an additional 5%" + } + }, + [33939]={ + connections={ + [1]={ + id=62034, + orbit=0 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/coldresist.png", + name="Armour Applies to Cold Damage Hits", + orbit=3, + orbitIndex=2, + skill=33939, + stats={ + [1]="+15% of Armour also applies to Cold Damage" + } + }, + [33946]={ + connections={ + [1]={ + id=34074, + orbit=0 + }, + [2]={ + id=57227, + orbit=0 + } + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=7, + orbitIndex=9, + skill=33946, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [33964]={ + connections={ + [1]={ + id=64295, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Critical Chance", + orbit=4, + orbitIndex=49, + skill=33964, + stats={ + [1]="10% increased Critical Hit Chance with Traps" + } + }, + [33974]={ + connections={ + [1]={ + id=31189, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=18, + skill=33974, + stats={ + [1]="8% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [33978]={ + connections={ + [1]={ + id=31609, + orbit=7 + }, + [2]={ + id=62581, + orbit=0 + } + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Unstoppable Barrier", + orbit=7, + orbitIndex=21, + skill=33978, + stats={ + [1]="10% increased Block chance", + [2]="15% reduced Slowing Potency of Debuffs on You" + } + }, + [33979]={ + connections={ + }, + flavourText="To me, brave companions! Feel my radiance flow through you!", + group=1126, + icon="Art/2DArt/SkillIcons/passives/KeystoneConduit.png", + isKeystone=true, + name="Conduit", + orbit=0, + orbitIndex=0, + skill=33979, + stats={ + [1]="If you would gain a Charge, Allies in your Presence gain that Charge instead" + } + }, + [34006]={ + connections={ + [1]={ + id=15408, + orbit=3 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=2, + orbitIndex=19, + skill=34006, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [34015]={ + connections={ + [1]={ + id=22927, + orbit=0 + }, + [2]={ + id=59083, + orbit=0 + }, + [3]={ + id=14882, + orbit=0 + }, + [4]={ + id=10472, + orbit=0 + } + }, + group=1419, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=34015, + stats={ + [1]="+5 to any Attribute" + } + }, + [34030]={ + connections={ + [1]={ + id=47441, + orbit=0 + }, + [2]={ + id=13634, + orbit=0 + }, + [3]={ + id=42614, + orbit=0 + } + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Life", + orbit=0, + orbitIndex=0, + skill=34030, + stats={ + [1]="Offerings have 15% increased Maximum Life" + } + }, + [34058]={ + connections={ + [1]={ + id=59376, + orbit=-6 + }, + [2]={ + id=4456, + orbit=0 + } + }, + group=700, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=34058, + stats={ + [1]="+5 to any Attribute" + } + }, + [34061]={ + connections={ + [1]={ + id=52442, + orbit=5 + }, + [2]={ + id=38057, + orbit=0 + } + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=5, + orbitIndex=55, + skill=34061, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [34074]={ + connections={ + [1]={ + id=23259, + orbit=4 + } + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=2, + orbitIndex=13, + skill=34074, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [34076]={ + connections={ + [1]={ + id=37244, + orbit=3 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block Recovery", + orbit=7, + orbitIndex=12, + skill=34076, + stats={ + [1]="25% increased Block Recovery" + } + }, + [34081]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=19370, + orbit=9 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=7, + skill=34081, + stats={ + [1]="8% increased Area of Effect" + } + }, + [34084]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + }, + group=622, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=1, + orbitIndex=4, + skill=34084 + }, + [34090]={ + connections={ + [1]={ + id=14655, + orbit=7 + }, + [2]={ + id=64870, + orbit=-7 + } + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Fire Damage", + orbit=7, + orbitIndex=0, + skill=34090, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Fire Damage" + } + }, + [34096]={ + connections={ + [1]={ + id=58096, + orbit=0 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=3, + orbitIndex=23, + skill=34096, + stats={ + [1]="12% increased Spell Damage" + } + }, + [34136]={ + connections={ + [1]={ + id=29479, + orbit=-5 + } + }, + group=1027, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=1, + skill=34136, + stats={ + [1]="+5 to any Attribute" + } + }, + [34143]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=36408, + orbit=0 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=66, + skill=34143, + stats={ + [1]="16% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [34168]={ + connections={ + [1]={ + id=16123, + orbit=0 + }, + [2]={ + id=4157, + orbit=0 + }, + [3]={ + id=55088, + orbit=0 + } + }, + group=977, + icon="Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.png", + isNotable=true, + name="Crashing Wave", + orbit=7, + orbitIndex=22, + skill=34168, + stats={ + [1]="25% increased Damage if you've dealt a Critical Hit in the past 8 seconds" + } + }, + [34181]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=45422, + orbit=0 + } + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=6, + skill=34181, + stats={ + [1]="+3 to Maximum Rage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [34187]={ + connections={ + [1]={ + id=7128, + orbit=-5 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=4, + orbitIndex=60, + skill=34187, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [34199]={ + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Critical Damage", + orbit=4, + orbitIndex=55, + skill=34199, + stats={ + [1]="Minions have 15% increased Critical Damage Bonus" + } + }, + [34201]={ + connections={ + [1]={ + id=24922, + orbit=0 + }, + [2]={ + id=46882, + orbit=0 + }, + [3]={ + id=17316, + orbit=0 + } + }, + group=1145, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=34201, + stats={ + [1]="+5 to any Attribute" + } + }, + [34202]={ + connections={ + [1]={ + id=49285, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=3, + orbitIndex=18, + skill=34202, + stats={ + [1]="+8 to Strength" + } + }, + [34207]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + flavourText="\"You have forsaken your duty to my {akhara}. Yes... we do not abide weakness. But we also do not abide madness in the fervour of battle! Your slain {dekhara} will have their justice. You must pay.\"\n\nVarashta condemned Ruzhan to the ritual of the {barya}, sentenced to serve as a Djinn.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.png", + isNotable=true, + name="Barya of Ruzhan", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=57, + skill=34207, + stats={ + [1]="Grants Skill: Ruzhan, the Blazing Sword" + } + }, + [34210]={ + connections={ + [1]={ + id=54811, + orbit=0 + }, + [2]={ + id=64939, + orbit=0 + } + }, + group=400, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=0, + orbitIndex=0, + skill=34210, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [34233]={ + connections={ + [1]={ + id=16123, + orbit=0 + }, + [2]={ + id=32545, + orbit=0 + } + }, + group=983, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + isNotable=true, + name="Flow State", + orbit=2, + orbitIndex=22, + skill=34233, + stats={ + [1]="5% increased Skill Speed", + [2]="15% increased Mana Regeneration Rate" + } + }, + [34248]={ + connections={ + [1]={ + id=37327, + orbit=7 + } + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=20, + skill=34248, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [34290]={ + connections={ + [1]={ + id=57832, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=2, + orbitIndex=4, + skill=34290, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [34300]={ + connections={ + [1]={ + id=45481, + orbit=0 + }, + [2]={ + id=13862, + orbit=0 + } + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Conservative Casting", + orbit=2, + orbitIndex=22, + skill=34300, + stats={ + [1]="20% increased Mana Regeneration Rate", + [2]="15% increased Mana Cost Efficiency" + } + }, + [34305]={ + connections={ + [1]={ + id=31545, + orbit=0 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation and Attack Damage", + orbit=7, + orbitIndex=6, + skill=34305, + stats={ + [1]="5% increased Attack Damage", + [2]="8% increased Glory generation" + } + }, + [34308]={ + connections={ + [1]={ + id=37414, + orbit=0 + }, + [2]={ + id=10245, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + isNotable=true, + name="Personal Touch", + orbit=3, + orbitIndex=19, + skill=34308, + stats={ + [1]="20% increased Attack Damage", + [2]="12% increased Immobilisation buildup" + } + }, + [34313]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=378, + orbit=-8 + } + }, + group=12, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.png", + isNotable=true, + name="The Lesser Harm", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=34313, + stats={ + [1]="Enemy Critical Hit Chance against you is Unlucky", + [2]="Damage of Enemies Hitting you is Unlucky" + } + }, + [34316]={ + connections={ + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + isNotable=true, + name="One with the River", + orbit=6, + orbitIndex=3, + skill=34316, + stats={ + [1]="10% chance to Daze on Hit", + [2]="30% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff", + [3]="30% increased Freeze Buildup with Quarterstaves", + [4]="30% increased Stun Buildup with Quarterstaves" + } + }, + [34317]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=34317 + }, + [34324]={ + connections={ + [1]={ + id=56838, + orbit=-5 + }, + [2]={ + id=52445, + orbit=0 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Spectral Ward", + orbit=4, + orbitIndex=0, + skill=34324, + stats={ + [1]="+1 to Maximum Energy Shield per 12 Item Evasion on Equipped Body Armour" + } + }, + [34327]={ + connections={ + [1]={ + id=32078, + orbit=0 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge Spell Damage", + orbit=7, + orbitIndex=17, + skill=34327, + stats={ + [1]="15% increased Spell Damage while you have Arcane Surge" + } + }, + [34340]={ + connections={ + [1]={ + id=17294, + orbit=0 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Mass Rejuvenation", + orbit=4, + orbitIndex=48, + skill=34340, + stats={ + [1]="Allies in your Presence Regenerate 1% of your Maximum Life per second", + [2]="Regenerate 0.5% of maximum Life per second" + } + }, + [34367]={ + connections={ + [1]={ + id=48774, + orbit=3 + } + }, + group=810, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=34367, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [34375]={ + connections={ + [1]={ + id=48745, + orbit=-2 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Defences", + orbit=2, + orbitIndex=8, + skill=34375, + stats={ + [1]="25% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [34401]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + connections={ + }, + group=1393, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Blind Mastery", + orbit=0, + orbitIndex=0, + skill=34401 + }, + [34412]={ + connections={ + [1]={ + id=25915, + orbit=0 + } + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage", + orbit=2, + orbitIndex=7, + skill=34412, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [34415]={ + connections={ + [1]={ + id=55422, + orbit=4 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=4, + orbitIndex=61, + skill=34415, + stats={ + [1]="12% increased Physical Damage" + } + }, + [34419]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.png", + isNotable=true, + name="Grinning Immolation", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=12, + skill=34419, + stats={ + [1]="Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second", + [2]="50% more Critical Damage Bonus" + } + }, + [34425]={ + connections={ + [1]={ + id=47021, + orbit=2 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + isNotable=true, + name="Precise Volatility", + orbit=2, + orbitIndex=20, + skill=34425, + stats={ + [1]="Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded" + } + }, + [34433]={ + connections={ + [1]={ + id=32354, + orbit=7 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=9, + skill=34433, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [34443]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=34443 + }, + [34449]={ + connections={ + [1]={ + id=37688, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Critical Chance", + orbit=4, + orbitIndex=36, + skill=34449, + stats={ + [1]="10% increased Critical Hit Chance with Traps" + } + }, + [34473]={ + connections={ + [1]={ + id=42361, + orbit=0 + } + }, + group=1266, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Spaghettification", + orbit=2, + orbitIndex=8, + skill=34473, + stats={ + [1]="3% increased Movement Speed", + [2]="29% increased Chaos Damage", + [3]="+13 to all Attributes", + [4]="-7% to Chaos Resistance", + [5]="23% reduced Light Radius" + } + }, + [34478]={ + connections={ + [1]={ + id=43064, + orbit=0 + }, + [2]={ + id=56701, + orbit=0 + } + }, + group=1402, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.png", + isNotable=true, + name="Bond of the Viper", + orbit=0, + orbitIndex=0, + skill=34478, + stats={ + [1]="16% increased Skill Effect Duration", + [2]="Companions have a 40% chance to Poison on Hit" + } + }, + [34487]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=34487 + }, + [34490]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=18972, + orbit=0 + } + }, + group=155, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Aftershock Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=0, + skill=34490, + stats={ + [1]="10% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [34493]={ + connections={ + [1]={ + id=65328, + orbit=0 + }, + [2]={ + id=54964, + orbit=0 + }, + [3]={ + id=49593, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + name="Sentinels", + orbit=2, + orbitIndex=9, + skill=34493, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [34497]={ + connections={ + }, + flavourText="Skip a beat, hold your breath. Too slow a poison, only death.", + group=1321, + icon="Art/2DArt/SkillIcons/passives/HeartstopperKeystone.png", + isKeystone=true, + name="Heartstopper", + orbit=0, + orbitIndex=0, + skill=34497, + stats={ + [1]="Take 50% less Damage over Time if you've started taking Damage over Time in the past second\nTake 50% more Damage over Time if you haven't started taking Damage over Time in the past second" + } + }, + [34501]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=6935, + orbit=0 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Armour and Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=25, + skill=34501, + stats={ + [1]="15% increased Armour and Evasion Rating" + } + }, + [34520]={ + connections={ + [1]={ + id=55575, + orbit=0 + }, + [2]={ + id=14548, + orbit=4 + }, + [3]={ + id=63545, + orbit=-4 + } + }, + group=970, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=7, + orbitIndex=15, + skill=34520, + stats={ + [1]="10% increased Physical Damage" + } + }, + [34531]={ + connections={ + [1]={ + id=3471, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Hallowed", + orbit=7, + orbitIndex=4, + skill=34531, + stats={ + [1]="Gain additional Ailment Threshold equal to 20% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 20% of maximum Energy Shield" + } + }, + [34541]={ + connections={ + [1]={ + id=63762, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + isNotable=true, + name="Energising Deflection", + orbit=1, + orbitIndex=3, + skill=34541, + stats={ + [1]="12% faster start of Energy Shield Recharge", + [2]="6% increased Deflection Rating" + } + }, + [34543]={ + connections={ + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.png", + isNotable=true, + name="The Frenzied Bear", + orbit=0, + orbitIndex=0, + skill=34543, + stats={ + [1]="30% increased Damage if you've consumed a Frenzy Charge Recently", + [2]="10% increased Skill Speed if you've consumed a Frenzy Charge Recently", + [3]="+10 to Strength" + } + }, + [34552]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=34552 + }, + [34553]={ + connections={ + [1]={ + id=1220, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Emboldening Lead", + orbit=7, + orbitIndex=20, + skill=34553, + stats={ + [1]="Minions deal 30% increased Damage if you've Hit Recently" + } + }, + [34612]={ + connections={ + [1]={ + id=60764, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + orbit=5, + orbitIndex=16, + skill=34612, + stats={ + [1]="12% increased Damage with Bows" + } + }, + [34617]={ + connections={ + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + isNotable=true, + name="Conall the Hunted", + orbit=3, + orbitIndex=23, + skill=34617, + stats={ + [1]="+15% of Armour also applies to Elemental Damage", + [2]="5% faster start of Energy Shield Recharge", + [3]="Immune to Bleeding while Shapeshifted", + [4]="Immune to Maim while Shapeshifted" + } + }, + [34621]={ + connections={ + [1]={ + id=38541, + orbit=0 + } + }, + group=1182, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=34621, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [34623]={ + connections={ + [1]={ + id=14769, + orbit=0 + }, + [2]={ + id=14262, + orbit=0 + } + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.png", + name="Charge Duration and Dexterity", + orbit=2, + orbitIndex=2, + skill=34623, + stats={ + [1]="10% increased Endurance, Frenzy and Power Charge Duration", + [2]="+5 to Dexterity" + } + }, + [34626]={ + connections={ + [1]={ + id=61142, + orbit=0 + }, + [2]={ + id=4527, + orbit=0 + } + }, + group=207, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=4, + skill=34626, + stats={ + [1]="Recover 2% of maximum Life for each Endurance Charge consumed" + } + }, + [34671]={ + connections={ + [1]={ + id=24477, + orbit=0 + }, + [2]={ + id=48418, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold and Strength", + orbit=2, + orbitIndex=10, + skill=34671, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [34702]={ + connections={ + [1]={ + id=55664, + orbit=-4 + }, + [2]={ + id=63246, + orbit=-4 + }, + [3]={ + id=16568, + orbit=-7 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=5, + orbitIndex=6, + skill=34702, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [34717]={ + connections={ + [1]={ + id=24120, + orbit=4 + } + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration while not on Low Mana", + orbit=3, + orbitIndex=20, + skill=34717, + stats={ + [1]="16% increased Mana Regeneration Rate while not on Low Mana" + } + }, + [34747]={ + connections={ + [1]={ + id=6274, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=23, + skill=34747, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [34769]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=52115, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration Rate", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=18, + skill=34769, + stats={ + [1]="25% increased Life Regeneration rate" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [34782]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=155, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=7, + orbitIndex=0, + skill=34782 + }, + [34785]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=58574, + orbit=-9 + }, + [2]={ + id=42017, + orbit=0 + }, + [3]={ + id=17058, + orbit=9 + } + }, + group=1558, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.png", + isNotable=true, + name="Unfurled Finger", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=34785, + stats={ + [1]="+1 Ring Slot" + } + }, + [34813]={ + connections={ + [1]={ + id=7218, + orbit=0 + }, + [2]={ + id=62505, + orbit=0 + }, + [3]={ + id=472, + orbit=0 + }, + [4]={ + id=2847, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=4, + orbitIndex=60, + skill=34813, + stats={ + [1]="+3 to all Attributes" + } + }, + [34817]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.png", + isNotable=true, + name="Deepening Shadows", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=64, + skill=34817, + stats={ + [1]="1% increased maximum Darkness per 1% Chaos Resistance" + } + }, + [34818]={ + connections={ + [1]={ + id=43250, + orbit=2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.png", + name="Fire Resistance", + orbit=1, + orbitIndex=1, + skill=34818, + stats={ + [1]="+5% to Fire Resistance" + } + }, + [34840]={ + connections={ + [1]={ + id=1433, + orbit=0 + }, + [2]={ + id=27674, + orbit=0 + }, + [3]={ + id=48618, + orbit=0 + } + }, + group=538, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=34840, + stats={ + [1]="+5 to any Attribute" + } + }, + [34845]={ + connections={ + [1]={ + id=60273, + orbit=0 + } + }, + group=1259, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Area", + orbit=0, + orbitIndex=0, + skill=34845, + stats={ + [1]="10% increased Hazard Area of Effect" + } + }, + [34853]={ + connections={ + [1]={ + id=25458, + orbit=-2 + }, + [2]={ + id=43044, + orbit=0 + } + }, + group=1238, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.png", + name="Strength and Critical Damage Bonus on You", + orbit=2, + orbitIndex=0, + skill=34853, + stats={ + [1]="Hits against you have 5% reduced Critical Damage Bonus", + [2]="+5 to Strength" + } + }, + [34866]={ + connections={ + [1]={ + id=40985, + orbit=0 + } + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Effect", + orbit=2, + orbitIndex=2, + skill=34866, + stats={ + [1]="Remnants you create have 10% increased effect" + } + }, + [34871]={ + connections={ + [1]={ + id=52764, + orbit=2 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=7, + orbitIndex=22, + skill=34871, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [34882]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=11641, + orbit=0 + } + }, + group=428, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Skill Gem Quality", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=34882, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [34892]={ + connections={ + [1]={ + id=12066, + orbit=0 + } + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Aura Magnitude", + orbit=3, + orbitIndex=11, + skill=34892, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [34898]={ + connections={ + [1]={ + id=38463, + orbit=0 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Debuff Expiry", + orbit=5, + orbitIndex=31, + skill=34898, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [34908]={ + connections={ + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Staunch Deflection", + orbit=3, + orbitIndex=23, + skill=34908, + stats={ + [1]="Deflected Hits cannot inflict Maim on you", + [2]="Deflected Hits cannot inflict Bleeding on you" + } + }, + [34912]={ + connections={ + [1]={ + id=4664, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Damage", + orbit=6, + orbitIndex=45, + skill=34912, + stats={ + [1]="10% increased Trap Damage" + } + }, + [34927]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=34927 + }, + [34940]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + isNotable=true, + name="Meditative Focus", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=6, + skill=34940, + stats={ + [1]="60% increased Stun Threshold while Channelling", + [2]="30% of Damage taken Recouped as Life while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [34968]={ + connections={ + [1]={ + id=64637, + orbit=0 + } + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=7, + orbitIndex=10, + skill=34968, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [34984]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=34984 + }, + [34990]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6088, + orbit=0 + } + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=20, + skill=34990, + stats={ + [1]="10% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35011]={ + connections={ + [1]={ + id=10305, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Attack Damage with Ally", + orbit=2, + orbitIndex=18, + skill=35011, + stats={ + [1]="16% increased Attack Damage while you have an Ally in your Presence" + } + }, + [35015]={ + connections={ + [1]={ + id=6655, + orbit=0 + } + }, + group=688, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=0, + orbitIndex=0, + skill=35015, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [35028]={ + connections={ + [1]={ + id=51974, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="In the Thick of It", + orbit=2, + orbitIndex=17, + skill=35028, + stats={ + [1]="Regenerate 2.5% of maximum Life per second while Surrounded" + } + }, + [35031]={ + connections={ + }, + group=1479, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.png", + isNotable=true, + name="Chakra of Life", + orbit=0, + orbitIndex=0, + skill=35031, + stats={ + [1]="3% increased maximum Life", + [2]="10% increased Life Recovery rate" + } + }, + [35033]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=55796, + orbit=0 + } + }, + group=1547, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35033, + stats={ + [1]="4% increased Skill Speed" + } + }, + [35043]={ + connections={ + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parried Debuff Magnitude", + orbit=4, + orbitIndex=36, + skill=35043, + stats={ + [1]="10% increased Parried Debuff Magnitude" + } + }, + [35048]={ + connections={ + [1]={ + id=43650, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=2, + orbitIndex=12, + skill=35048, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [35058]={ + connections={ + [1]={ + id=64650, + orbit=0 + } + }, + group=1138, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold if no recent Stun", + orbit=2, + orbitIndex=18, + skill=35058, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [35085]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=35085 + }, + [35095]={ + connections={ + [1]={ + id=41886, + orbit=2 + } + }, + group=1431, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + name="Chaos Damage", + orbit=2, + orbitIndex=20, + skill=35095, + stats={ + [1]="10% increased Chaos Damage" + } + }, + [35118]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + connections={ + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=35118 + }, + [35151]={ + connections={ + [1]={ + id=44453, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + name="Stun Threshold", + orbit=7, + orbitIndex=23, + skill=35151, + stats={ + [1]="15% increased Stun Threshold" + } + }, + [35171]={ + connections={ + [1]={ + id=18846, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=3, + orbitIndex=2, + skill=35171, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [35173]={ + connections={ + [1]={ + id=1599, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Critical Chance", + orbit=7, + orbitIndex=22, + skill=35173, + stats={ + [1]="5% increased Critical Hit Chance", + [2]="8% increased Physical Damage" + } + }, + [35187]={ + ascendancyName="Amazon", + connections={ + }, + group=1532, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.png", + isNotable=true, + name="In for the Kill", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35187, + stats={ + [1]="20% increased Movement Speed while an enemy with an Open Weakness is in your Presence", + [2]="40% increased Skill Speed while an enemy with an Open Weakness is in your Presence" + } + }, + [35223]={ + connections={ + [1]={ + id=55680, + orbit=0 + }, + [2]={ + id=9227, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Attack Speed", + orbit=3, + orbitIndex=4, + skill=35223, + stats={ + [1]="3% increased Attack Speed with Spears" + } + }, + [35234]={ + connections={ + [1]={ + id=35660, + orbit=0 + }, + [2]={ + id=6789, + orbit=0 + }, + [3]={ + id=56651, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + id=14623, + name="Attack Damage", + stats={ + [1]="10% increased Attack Damage" + } + } + }, + orbit=7, + orbitIndex=19, + skill=35234, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [35265]={ + connections={ + [1]={ + id=31903, + orbit=0 + }, + [2]={ + id=48589, + orbit=0 + }, + [3]={ + id=18374, + orbit=0 + }, + [4]={ + id=6274, + orbit=0 + } + }, + group=533, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=35265, + stats={ + [1]="+5 to any Attribute" + } + }, + [35284]={ + connections={ + [1]={ + id=31898, + orbit=-2 + }, + [2]={ + id=64471, + orbit=-7 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=7, + orbitIndex=3, + skill=35284, + stats={ + [1]="6% increased Reservation Efficiency of Herald Skills" + } + }, + [35324]={ + connections={ + [1]={ + id=34927, + orbit=0 + }, + [2]={ + id=34290, + orbit=4 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Burnout", + orbit=3, + orbitIndex=0, + skill=35324, + stats={ + [1]="Ignites you inflict deal Damage 15% faster" + } + }, + [35369]={ + connections={ + [1]={ + id=1459, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Investing Energies", + orbit=0, + orbitIndex=0, + skill=35369, + stats={ + [1]="35% increased Mana Regeneration Rate while stationary" + } + }, + [35380]={ + connections={ + [1]={ + id=44373, + orbit=-2 + } + }, + group=1301, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Withered Effect", + orbit=2, + orbitIndex=20, + skill=35380, + stats={ + [1]="10% increased Withered Magnitude" + } + }, + [35393]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=23708, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour while Bleeding", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=2, + skill=35393, + stats={ + [1]="30% increased Armour while Bleeding" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35404]={ + connections={ + [1]={ + id=43250, + orbit=2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.png", + name="Cold Resistance", + orbit=7, + orbitIndex=2, + skill=35404, + stats={ + [1]="+5% to Cold Resistance" + } + }, + [35408]={ + connections={ + [1]={ + id=24767, + orbit=7 + }, + [2]={ + id=23382, + orbit=0 + } + }, + group=331, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Focus Energy Shield", + orbit=2, + orbitIndex=16, + skill=35408, + stats={ + [1]="40% increased Energy Shield from Equipped Focus" + } + }, + [35417]={ + connections={ + [1]={ + id=28770, + orbit=3 + }, + [2]={ + id=23879, + orbit=0 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Wyvern's Breath", + orbit=3, + orbitIndex=13, + skill=35417, + stats={ + [1]="40% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently" + } + }, + [35426]={ + connections={ + [1]={ + id=8406, + orbit=6 + } + }, + group=596, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=35426, + stats={ + [1]="+5 to any Attribute" + } + }, + [35453]={ + ascendancyName="Titan", + connections={ + [1]={ + id=42275, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Slam Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=52, + skill=35453, + stats={ + [1]="Slam Skills have 8% increased Area of Effect" + } + }, + [35477]={ + connections={ + [1]={ + id=10277, + orbit=0 + } + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Far Sighted", + orbit=2, + orbitIndex=1, + skill=35477, + stats={ + [1]="30% reduced penalty to Accuracy Rating at range" + } + }, + [35492]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=7, + orbitIndex=21, + skill=35492 + }, + [35503]={ + connections={ + [1]={ + id=23764, + orbit=0 + } + }, + group=982, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Effect and Mana Regeneration", + orbit=0, + orbitIndex=0, + skill=35503, + stats={ + [1]="6% increased Mana Regeneration Rate", + [2]="10% increased Magnitude of Shock you inflict" + } + }, + [35534]={ + connections={ + [1]={ + id=44280, + orbit=-3 + } + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Use Speed", + orbit=2, + orbitIndex=15, + skill=35534, + stats={ + [1]="Mark Skills have 10% increased Use Speed" + } + }, + [35535]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=1855, + orbit=8 + }, + [2]={ + id=33824, + orbit=9 + }, + [3]={ + id=61722, + orbit=9 + }, + [4]={ + id=54512, + orbit=9 + }, + [5]={ + id=28022, + orbit=9 + } + }, + group=50, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Shaman", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35535 + }, + [35560]={ + connections={ + }, + group=577, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="At your Command", + orbit=0, + orbitIndex=0, + skill=35560, + stats={ + [1]="Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence" + } + }, + [35564]={ + connections={ + [1]={ + id=18121, + orbit=0 + }, + [2]={ + id=65310, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + isNotable=true, + name="Turn the Clock Back", + orbit=3, + orbitIndex=0, + skill=35564, + stats={ + [1]="15% increased Spell Damage", + [2]="10% reduced Projectile Speed for Spell Skills" + } + }, + [35581]={ + connections={ + [1]={ + id=26895, + orbit=0 + } + }, + group=514, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Near at Hand", + orbit=0, + orbitIndex=0, + skill=35581, + stats={ + [1]="16% reduced Skill Effect Duration", + [2]="10% reduced Slowing Potency of Debuffs on You" + } + }, + [35594]={ + connections={ + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=2, + orbitIndex=8, + skill=35594, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [35602]={ + connections={ + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Life", + orbit=2, + orbitIndex=12, + skill=35602, + stats={ + [1]="Offerings have 30% reduced Maximum Life" + } + }, + [35618]={ + connections={ + [1]={ + id=36504, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Cold Coat", + orbit=7, + orbitIndex=15, + skill=35618, + stats={ + [1]="25% increased Freeze Buildup", + [2]="25% reduced Freeze Duration on you", + [3]="25% increased Freeze Threshold" + } + }, + [35623]={ + connections={ + [1]={ + id=24736, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=3, + orbitIndex=9, + skill=35623, + stats={ + [1]="+4% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [35644]={ + connections={ + [1]={ + id=45193, + orbit=6 + }, + [2]={ + id=65009, + orbit=0 + } + }, + group=1125, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=3, + orbitIndex=23, + skill=35644, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [35645]={ + connections={ + }, + group=510, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Cooldown", + orbit=0, + orbitIndex=0, + skill=35645, + stats={ + [1]="Minions have 20% increased Cooldown Recovery Rate for Command Skills" + } + }, + [35653]={ + connections={ + [1]={ + id=35653, + orbit=0 + }, + [2]={ + id=65468, + orbit=0 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=0, + orbitIndex=0, + skill=35653, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [35660]={ + connections={ + [1]={ + id=18548, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=13, + skill=35660, + stats={ + [1]="3% increased Attack Speed" + } + }, + [35671]={ + connections={ + [1]={ + id=31172, + orbit=3 + } + }, + group=1303, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Dexterity", + orbit=4, + orbitIndex=57, + skill=35671, + stats={ + [1]="2% increased Attack Speed", + [2]="+5 to Dexterity" + } + }, + [35688]={ + connections={ + [1]={ + id=16618, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="Reduced Attribute Requirements", + orbit=7, + orbitIndex=10, + skill=35688, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [35689]={ + connections={ + [1]={ + id=34543, + orbit=2 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + name="Damage", + orbit=2, + orbitIndex=14, + skill=35689, + stats={ + [1]="10% increased Damage" + } + }, + [35696]={ + connections={ + [1]={ + id=24070, + orbit=0 + }, + [2]={ + id=64064, + orbit=0 + }, + [3]={ + id=1020, + orbit=0 + }, + [4]={ + id=10267, + orbit=0 + } + }, + group=1334, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=35696, + stats={ + [1]="+5 to any Attribute" + } + }, + [35708]={ + connections={ + [1]={ + id=2863, + orbit=0 + } + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Chill Magnitude", + orbit=2, + orbitIndex=2, + skill=35708, + stats={ + [1]="12% increased Magnitude of Chill you inflict" + } + }, + [35720]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=7258, + orbit=0 + } + }, + group=694, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=9, + skill=35720, + stats={ + [1]="10% increased Spell Damage", + [2]="+10 to Strength" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35739]={ + connections={ + [1]={ + id=42410, + orbit=3 + }, + [2]={ + id=8556, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Crushing Judgement", + orbit=7, + orbitIndex=23, + skill=35739, + stats={ + [1]="25% increased Armour Break Duration", + [2]="25% increased Attack Area Damage" + } + }, + [35743]={ + connections={ + [1]={ + id=60116, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Saqawal's Hide", + orbit=4, + orbitIndex=36, + skill=35743, + stats={ + [1]="+5% to Lightning Resistance", + [2]="25% increased Armour and Evasion Rating" + } + }, + [35745]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=633, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=10, + skill=35745, + stats={ + [1]="2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35755]={ + connections={ + [1]={ + id=54058, + orbit=0 + } + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Critical Damage", + orbit=2, + orbitIndex=16, + skill=35755, + stats={ + [1]="10% increased Critical Damage Bonus with Daggers" + } + }, + [35760]={ + connections={ + [1]={ + id=22359, + orbit=6 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=8, + skill=35760, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [35762]={ + ascendancyName="Shaman", + connections={ + }, + group=66, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.png", + isNotable=true, + name="Furious Wellspring", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35762, + stats={ + [1]="No Inherent loss of Rage", + [2]="Regenerate 6% of your maximum Rage per second", + [3]="Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate", + [4]="Skills have +5 to Rage cost", + [5]="+7 to Maximum Rage" + } + }, + [35787]={ + connections={ + [1]={ + id=42813, + orbit=7 + } + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=1, + orbitIndex=0, + skill=35787, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [35792]={ + connections={ + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Blood of Rage", + orbit=2, + orbitIndex=12, + skill=35792, + stats={ + [1]="Gain 8 Rage when you use a Life Flask" + } + }, + [35801]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=23508, + orbit=0 + } + }, + group=1512, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Frenzy Charge Duration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35801, + stats={ + [1]="25% increased Frenzy Charge Duration" + } + }, + [35809]={ + connections={ + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Reinvigoration", + orbit=1, + orbitIndex=6, + skill=35809, + stats={ + [1]="Regenerate 1% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" + } + }, + [35831]={ + connections={ + [1]={ + id=904, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=9, + skill=35831, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [35848]={ + connections={ + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Recovery", + orbit=7, + orbitIndex=20, + skill=35848, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [35849]={ + connections={ + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Thickened Arteries", + orbit=0, + orbitIndex=0, + skill=35849, + stats={ + [1]="Regenerate 0.5% of maximum Life per second", + [2]="40% increased Life Regeneration Rate while stationary" + } + }, + [35855]={ + connections={ + [1]={ + id=48583, + orbit=0 + }, + [2]={ + id=35859, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Fortifying Blood", + orbit=2, + orbitIndex=3, + skill=35855, + stats={ + [1]="15% increased amount of Life Leeched", + [2]="40% increased Armour and Evasion Rating while Leeching" + } + }, + [35859]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + connections={ + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=35859 + }, + [35863]={ + connections={ + [1]={ + id=51732, + orbit=0 + } + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=20, + skill=35863, + stats={ + [1]="3% increased Attack Speed" + } + }, + [35876]={ + connections={ + [1]={ + id=53194, + orbit=4 + }, + [2]={ + id=35977, + orbit=0 + }, + [3]={ + id=27540, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Admonisher", + orbit=2, + orbitIndex=20, + skill=35876, + stats={ + [1]="25% increased Warcry Speed", + [2]="25% increased Warcry Cooldown Recovery Rate" + } + }, + [35878]={ + connections={ + [1]={ + id=50884, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=7, + orbitIndex=11, + skill=35878, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [35880]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png", + name="Cast Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=6, + skill=35880, + stats={ + [1]="4% increased Cast Speed" + } + }, + [35896]={ + connections={ + [1]={ + id=55668, + orbit=0 + }, + [2]={ + id=53266, + orbit=0 + }, + [3]={ + id=17672, + orbit=0 + } + }, + group=973, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=35896, + stats={ + [1]="+5 to any Attribute" + } + }, + [35901]={ + connections={ + [1]={ + id=12120, + orbit=-6 + }, + [2]={ + id=62464, + orbit=6 + }, + [3]={ + id=60735, + orbit=0 + }, + [4]={ + id=6951, + orbit=0 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=60, + skill=35901, + stats={ + [1]="+5 to any Attribute" + } + }, + [35918]={ + connections={ + [1]={ + id=52038, + orbit=0 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="One For All", + orbit=7, + orbitIndex=19, + skill=35918, + stats={ + [1]="40% increased Presence Area of Effect", + [2]="8% reduced Area of Effect" + } + }, + [35920]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=35762, + orbit=0 + } + }, + group=67, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Maximum Rage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35920, + stats={ + [1]="+3 to Maximum Rage" + } + }, + [35921]={ + connections={ + [1]={ + id=5642, + orbit=0 + } + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=12, + skill=35921, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [35966]={ + connections={ + [1]={ + id=44316, + orbit=0 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Heart Tissue", + orbit=7, + orbitIndex=4, + skill=35966, + stats={ + [1]="Regenerate 0.5% of maximum Life per second if you have been Hit Recently", + [2]="8% of Damage taken Recouped as Life" + } + }, + [35974]={ + connections={ + [1]={ + id=51105, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=2, + orbitIndex=22, + skill=35974, + stats={ + [1]="16% increased Totem Life" + } + }, + [35977]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=35977 + }, + [35980]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + isOnlyImage=true, + name="Lightning Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=35980, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35985]={ + connections={ + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=5, + orbitIndex=18, + skill=35985, + stats={ + [1]="10% increased Melee Damage" + } + }, + [35987]={ + connections={ + [1]={ + id=32274, + orbit=0 + }, + [2]={ + id=19470, + orbit=0 + }, + [3]={ + id=55397, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/finesse.png", + isNotable=true, + name="Blur", + orbit=4, + orbitIndex=27, + skill=35987, + stats={ + [1]="4% increased Movement Speed", + [2]="20% increased Evasion Rating", + [3]="+10 to Dexterity" + } + }, + [36025]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=44309, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=30, + skill=36025, + stats={ + [1]="Minions deal 12% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [36027]={ + connections={ + [1]={ + id=18073, + orbit=2 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Attack Damage", + orbit=7, + orbitIndex=22, + skill=36027, + stats={ + [1]="12% increased Attack Damage" + } + }, + [36070]={ + connections={ + [1]={ + id=14045, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=4, + orbitIndex=45, + skill=36070, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [36071]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern.png", + connections={ + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + isOnlyImage=true, + name="Spear Mastery", + orbit=5, + orbitIndex=12, + skill=36071 + }, + [36085]={ + connections={ + [1]={ + id=37548, + orbit=0 + }, + [2]={ + id=15270, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Serrated Edges", + orbit=3, + orbitIndex=0, + skill=36085, + stats={ + [1]="10% increased Critical Hit Chance for Attacks", + [2]="30% increased Attack Damage against Rare or Unique Enemies" + } + }, + [36100]={ + connections={ + [1]={ + id=34782, + orbit=0 + } + }, + group=157, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png", + isNotable=true, + name="Molten Claw", + orbit=0, + orbitIndex=0, + skill=36100, + stats={ + [1]="Gain 8% of Damage as Extra Fire Damage while Shapeshifted" + } + }, + [36109]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=13289, + orbit=8 + } + }, + flavourText="\"The snare was set on our fallen. Beetles burst from their flesh, flooding the sands. Their exploding carapaces halted the advancing enemy... but it was not enough. And for that... I grieve.\"\n\nKelari admitted his wrongdoing to Varashta.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.png", + isNotable=true, + name="Kelari's Malediction", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=19, + skill=36109, + stats={ + [1]="Grants Skill: Kelari's Malediction" + } + }, + [36114]={ + connections={ + [1]={ + id=23360, + orbit=0 + } + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Attack Damage while Moving", + orbit=7, + orbitIndex=10, + skill=36114, + stats={ + [1]="12% increased Attack Damage while moving" + } + }, + [36163]={ + connections={ + [1]={ + id=30390, + orbit=-4 + } + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=2, + orbitIndex=9, + skill=36163, + stats={ + [1]="5% increased Block chance" + } + }, + [36169]={ + connections={ + [1]={ + id=29514, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Area", + orbit=3, + orbitIndex=23, + skill=36169, + stats={ + [1]="10% increased Grenade Area of Effect" + } + }, + [36170]={ + connections={ + [1]={ + id=53853, + orbit=-3 + }, + [2]={ + id=7628, + orbit=-4 + } + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=13, + skill=36170, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [36191]={ + connections={ + [1]={ + id=40325, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=2, + orbitIndex=21, + skill=36191, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [36197]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=27096, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=19, + skill=36197, + stats={ + [1]="30% increased Totem Placement speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [36217]={ + connections={ + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility Detonation Time", + orbit=1, + orbitIndex=2, + skill=36217, + stats={ + [1]="15% increased Volatility Explosion delay" + } + }, + [36231]={ + connections={ + [1]={ + id=3336, + orbit=0 + }, + [2]={ + id=31765, + orbit=0 + } + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Critical Damage when consuming a Power Charge", + orbit=2, + orbitIndex=1, + skill=36231, + stats={ + [1]="20% increased Critical Damage Bonus if you've consumed a Power Charge Recently" + } + }, + [36250]={ + connections={ + [1]={ + id=56368, + orbit=-7 + }, + [2]={ + id=49214, + orbit=3 + }, + [3]={ + id=55897, + orbit=3 + } + }, + group=123, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Life Regeneration", + orbit=0, + orbitIndex=0, + skill=36250, + stats={ + [1]="15% increased Life Regeneration rate while Shapeshifted" + } + }, + [36252]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=46522, + orbit=0 + }, + [2]={ + id=762, + orbit=0 + }, + [3]={ + id=12054, + orbit=0 + }, + [4]={ + id=29162, + orbit=0 + }, + [5]={ + id=54892, + orbit=0 + } + }, + group=360, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Tactician", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=36, + skill=36252 + }, + [36270]={ + connections={ + [1]={ + id=5009, + orbit=0 + } + }, + group=1242, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze on Hit", + orbit=3, + orbitIndex=1, + skill=36270, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [36286]={ + connections={ + [1]={ + id=41130, + orbit=0 + }, + [2]={ + id=14033, + orbit=0 + }, + [3]={ + id=34058, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Spell and Minion Damage", + orbit=1, + orbitIndex=5, + skill=36286, + stats={ + [1]="10% increased Spell Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [36290]={ + connections={ + [1]={ + id=23046, + orbit=-2 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=4, + orbitIndex=33, + skill=36290, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [36293]={ + connections={ + [1]={ + id=27785, + orbit=0 + }, + [2]={ + id=55708, + orbit=0 + } + }, + group=879, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=36293, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [36298]={ + connections={ + [1]={ + id=8510, + orbit=3 + }, + [2]={ + id=40918, + orbit=6 + } + }, + group=1116, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Effect", + orbit=0, + orbitIndex=0, + skill=36298, + stats={ + [1]="10% increased Magnitude of Ailments you inflict" + } + }, + [36302]={ + connections={ + [1]={ + id=47307, + orbit=6 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Practiced Signs", + orbit=7, + orbitIndex=0, + skill=36302, + stats={ + [1]="6% increased Cast Speed" + } + }, + [36325]={ + connections={ + [1]={ + id=54148, + orbit=-5 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=4, + orbitIndex=71, + skill=36325, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [36333]={ + connections={ + [1]={ + id=62360, + orbit=0 + }, + [2]={ + id=49259, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Explosive Empowerment", + orbit=3, + orbitIndex=22, + skill=36333, + stats={ + [1]="Empowered Attacks deal 20% increased Damage", + [2]="Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + [36341]={ + connections={ + [1]={ + id=35118, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + isNotable=true, + name="Cull the Hordes", + orbit=2, + orbitIndex=10, + skill=36341, + stats={ + [1]="40% increased Culling Strike Threshold against Rare or Unique Enemies" + } + }, + [36358]={ + connections={ + [1]={ + id=12367, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=4, + skill=36358, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [36364]={ + connections={ + }, + group=1406, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Electrocution", + orbit=0, + orbitIndex=0, + skill=36364, + stats={ + [1]="Enemies you Electrocute have 20% increased Damage taken" + } + }, + [36365]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=60859, + orbit=9 + }, + [2]={ + id=58149, + orbit=9 + }, + [3]={ + id=22661, + orbit=9 + }, + [4]={ + id=17058, + orbit=-9 + }, + [5]={ + id=42017, + orbit=0 + }, + [6]={ + id=58574, + orbit=9 + }, + [7]={ + id=11776, + orbit=8 + } + }, + group=1565, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Ritualist", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=27, + skill=36365 + }, + [36379]={ + connections={ + [1]={ + id=25026, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=4, + orbitIndex=58, + skill=36379, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [36389]={ + connections={ + [1]={ + id=53989, + orbit=8 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=8, + orbitIndex=59, + skill=36389, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [36408]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=31757, + orbit=0 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Deadly Thorns", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=0, + skill=36408, + stats={ + [1]="35% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [36449]={ + connections={ + [1]={ + id=8115, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=7, + orbitIndex=6, + skill=36449, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [36450]={ + connections={ + [1]={ + id=11838, + orbit=-4 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Spell Damage on full Energy Shield", + orbit=3, + orbitIndex=0, + skill=36450, + stats={ + [1]="12% increased Spell Damage while on Full Energy Shield" + } + }, + [36474]={ + connections={ + [1]={ + id=31925, + orbit=3 + } + }, + group=352, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Curse Effect on Self", + orbit=0, + orbitIndex=0, + skill=36474, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [36478]={ + connections={ + [1]={ + id=43014, + orbit=0 + }, + [2]={ + id=48714, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=36478, + stats={ + [1]="10% increased Attack Damage" + } + }, + [36479]={ + connections={ + [1]={ + id=12925, + orbit=0 + } + }, + group=979, + icon="Art/2DArt/SkillIcons/passives/Storm Weaver.png", + isNotable=true, + name="Essence of the Storm", + orbit=4, + orbitIndex=66, + skill=36479, + stats={ + [1]="Gain 5% of Damage as Extra Lightning Damage", + [2]="30% increased chance to Shock" + } + }, + [36504]={ + connections={ + [1]={ + id=65, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=2, + orbitIndex=11, + skill=36504, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [36507]={ + connections={ + [1]={ + id=60313, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + isNotable=true, + name="Vile Mending", + orbit=2, + orbitIndex=4, + skill=36507, + stats={ + [1]="Minions have 20% increased maximum Life", + [2]="Minions Regenerate 3% of maximum Life per second", + [3]="Minions have +13% to Chaos Resistance" + } + }, + [36522]={ + connections={ + [1]={ + id=3999, + orbit=0 + }, + [2]={ + id=54099, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=4, + orbitIndex=33, + skill=36522, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [36540]={ + connections={ + [1]={ + id=56988, + orbit=0 + } + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Resistance", + orbit=0, + orbitIndex=0, + skill=36540, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [36556]={ + connections={ + [1]={ + id=1502, + orbit=0 + } + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.png", + name="Channelling Defences", + orbit=2, + orbitIndex=12, + skill=36556, + stats={ + [1]="8% increased Armour, Evasion and Energy Shield while Channelling" + } + }, + [36564]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.png", + isNotable=true, + name="Beidat's Gaze", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=100, + skill=36564, + stats={ + [1]="Reserves 25% of Life", + [2]="+1 to Maximum Mana per 6 Maximum Life" + } + }, + [36576]={ + connections={ + [1]={ + id=25055, + orbit=-3 + }, + [2]={ + id=54984, + orbit=0 + } + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=14, + skill=36576, + stats={ + [1]="10% increased Attack Damage" + } + }, + [36596]={ + connections={ + [1]={ + id=45013, + orbit=-3 + }, + [2]={ + id=56118, + orbit=-5 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=7, + orbitIndex=22, + skill=36596, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [36602]={ + connections={ + [1]={ + id=18465, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isSwitchable=true, + name="Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + id=16160, + name="Skill Speed while Shapeshifted", + stats={ + [1]="3% increased Skill Speed while Shapeshifted" + } + } + }, + orbit=4, + orbitIndex=39, + skill=36602, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [36623]={ + connections={ + [1]={ + id=10729, + orbit=0 + }, + [2]={ + id=31630, + orbit=0 + } + }, + group=1153, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Convalescence", + orbit=2, + orbitIndex=3, + skill=36623, + stats={ + [1]="10% reduced Energy Shield Recharge Rate", + [2]="20% faster start of Energy Shield Recharge" + } + }, + [36629]={ + connections={ + [1]={ + id=44659, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=45, + skill=36629, + stats={ + [1]="+5 to any Attribute" + } + }, + [36630]={ + connections={ + [1]={ + id=49473, + orbit=0 + } + }, + group=1042, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Incision", + orbit=2, + orbitIndex=4, + skill=36630, + stats={ + [1]="50% increased effect of Incision" + } + }, + [36639]={ + connections={ + [1]={ + id=62677, + orbit=-6 + }, + [2]={ + id=32009, + orbit=0 + } + }, + group=856, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=22, + skill=36639, + stats={ + [1]="20% increased Curse Duration" + } + }, + [36643]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=1739, + orbit=9 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Additional Power Charge Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=1, + skill=36643, + stats={ + [1]="10% chance when you gain a Power Charge to gain an additional Power Charge" + } + }, + [36659]={ + ascendancyName="Warbringer", + connections={ + }, + group=31, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.png", + isNotable=true, + name="Imploding Impacts", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=36659, + stats={ + [1]="Fully Broken Armour you inflict increases all Damage Taken from Hits instead", + [2]="You can Break Enemy Armour to below 0" + } + }, + [36676]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=46454, + orbit=0 + } + }, + group=1528, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Passive Points", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=36676, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [36677]={ + connections={ + [1]={ + id=9240, + orbit=0 + }, + [2]={ + id=36071, + orbit=0 + }, + [3]={ + id=9227, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Damage", + orbit=0, + orbitIndex=0, + skill=36677, + stats={ + [1]="10% increased Damage with Spears" + } + }, + [36696]={ + ascendancyName="Lich", + connections={ + [1]={ + id=28431, + orbit=4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=31398, + name="Life", + stats={ + [1]="3% increased maximum Life" + } + } + }, + orbit=9, + orbitIndex=30, + skill=36696, + stats={ + [1]="3% increased maximum Life" + } + }, + [36709]={ + connections={ + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=7, + orbitIndex=6, + skill=36709, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [36723]={ + connections={ + [1]={ + id=3700, + orbit=0 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + name="Stun and Freeze Buildup", + orbit=2, + orbitIndex=0, + skill=36723, + stats={ + [1]="15% increased Stun Buildup", + [2]="15% increased Freeze Buildup" + } + }, + [36728]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=534, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.png", + isNotable=true, + name="Thaumaturgical Infusion", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=36728, + stats={ + [1]="+1% to Maximum Cold Resistance per 3 Blue Support Gems Socketed", + [2]="+1% to Maximum Fire Resistance per 3 Red Support Gems Socketed", + [3]="+1% to Maximum Lightning Resistance per 3 Green Support Gems Socketed" + } + }, + [36737]={ + connections={ + [1]={ + id=7542, + orbit=-2 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area Damage", + orbit=2, + orbitIndex=0, + skill=36737, + stats={ + [1]="10% increased Area Damage" + } + }, + [36746]={ + connections={ + [1]={ + id=40691, + orbit=-3 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=3, + orbitIndex=16, + skill=36746, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [36759]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=36759 + }, + [36778]={ + connections={ + [1]={ + id=36479, + orbit=0 + } + }, + group=979, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Chance", + orbit=4, + orbitIndex=58, + skill=36778, + stats={ + [1]="15% increased chance to Shock" + } + }, + [36782]={ + connections={ + [1]={ + id=1151, + orbit=0 + } + }, + group=822, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=12, + skill=36782, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [36788]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=25781, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Leech", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=8, + skill=36788, + stats={ + [1]="11% increased amount of Life Leeched", + [2]="11% increased amount of Mana Leeched" + } + }, + [36808]={ + connections={ + [1]={ + id=34076, + orbit=3 + }, + [2]={ + id=37795, + orbit=0 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Spiked Shield", + orbit=2, + orbitIndex=16, + skill=36808, + stats={ + [1]="2% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield", + [2]="50% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [36814]={ + connections={ + }, + group=856, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=6, + skill=36814, + stats={ + [1]="20% increased Curse Duration" + } + }, + [36822]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=58591, + orbit=0 + } + }, + group=543, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Attributes", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=36822, + stats={ + [1]="3% increased Attributes" + } + }, + [36880]={ + connections={ + [1]={ + id=43036, + orbit=3 + } + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge Effect", + orbit=4, + orbitIndex=57, + skill=36880, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [36891]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=56783, + orbit=9 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.png", + isNotable=true, + name="Baryanic Leylines", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=28, + skill=36891, + stats={ + [1]="Non-Unique Time-Lost Jewels have 40% increased radius" + } + }, + [36894]={ + connections={ + [1]={ + id=61938, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Chance", + orbit=3, + orbitIndex=20, + skill=36894, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [36927]={ + connections={ + [1]={ + id=44756, + orbit=5 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Use Speed", + orbit=2, + orbitIndex=11, + skill=36927, + stats={ + [1]="Mark Skills have 10% increased Use Speed" + } + }, + [36931]={ + connections={ + }, + group=1075, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Concussive Attack", + orbit=7, + orbitIndex=0, + skill=36931, + stats={ + [1]="25% increased Attack Damage", + [2]="5% chance to Daze on Hit" + } + }, + [36976]={ + connections={ + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + isNotable=true, + name="Marked for Death", + orbit=3, + orbitIndex=9, + skill=36976, + stats={ + [1]="Culling Strike against Enemies you Mark" + } + }, + [36994]={ + connections={ + [1]={ + id=27491, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=12, + skill=36994, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [36997]={ + connections={ + [1]={ + id=27761, + orbit=0 + } + }, + group=1055, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Stun Threshold during Parry", + orbit=0, + orbitIndex=0, + skill=36997, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [37026]={ + connections={ + [1]={ + id=27513, + orbit=0 + } + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break and Physical Damage", + orbit=1, + orbitIndex=2, + skill=37026, + stats={ + [1]="Break 10% increased Armour", + [2]="6% increased Physical Damage" + } + }, + [37046]={ + ascendancyName="Ritualist", + connections={ + }, + group=1568, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.png", + isNotable=true, + name="Corrupted Lifeforce", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37046, + stats={ + [1]="15% more Damage against Enemies affected by Blood Boils", + [2]="Grants Skill: Blood Boil" + } + }, + [37078]={ + ascendancyName="Witchhunter", + connections={ + }, + group=345, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.png", + isNotable=true, + name="Zealous Inquisition", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37078, + stats={ + [1]="10% chance for Enemies you Kill to Explode, dealing 100%\nof their maximum Life as Physical Damage\nChance is doubled against Undead and Demons" + } + }, + [37092]={ + connections={ + [1]={ + id=55817, + orbit=0 + } + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Exposure Effect and Slow Effect", + orbit=7, + orbitIndex=6, + skill=37092, + stats={ + [1]="Debuffs you inflict have 7% increased Slow Magnitude", + [2]="7% increased Exposure Effect" + } + }, + [37164]={ + connections={ + [1]={ + id=419, + orbit=0 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + name="Non-Damaging Ailment Magnitude", + orbit=2, + orbitIndex=16, + skill=37164, + stats={ + [1]="10% increased Magnitude of Non-Damaging Ailments you inflict" + } + }, + [37187]={ + connections={ + [1]={ + id=14026, + orbit=-4 + }, + [2]={ + id=63085, + orbit=5 + } + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage against Immobilised", + orbit=0, + orbitIndex=0, + skill=37187, + stats={ + [1]="20% increased Damage against Immobilised Enemies while Shapeshifted" + } + }, + [37190]={ + connections={ + [1]={ + id=35855, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=2, + orbitIndex=7, + skill=37190, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [37220]={ + connections={ + [1]={ + id=17955, + orbit=0 + } + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=2, + orbitIndex=9, + skill=37220, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [37226]={ + connections={ + [1]={ + id=4015, + orbit=2 + }, + [2]={ + id=9187, + orbit=-6 + } + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=3, + orbitIndex=4, + skill=37226, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [37242]={ + connections={ + [1]={ + id=16871, + orbit=2 + }, + [2]={ + id=54031, + orbit=0 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png", + name="Stun Threshold", + orbit=7, + orbitIndex=14, + skill=37242, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [37244]={ + connections={ + [1]={ + id=33445, + orbit=3 + }, + [2]={ + id=37795, + orbit=0 + } + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Shield Expertise", + orbit=2, + orbitIndex=8, + skill=37244, + stats={ + [1]="12% increased Block chance", + [2]="40% increased Block Recovery" + } + }, + [37250]={ + connections={ + [1]={ + id=1420, + orbit=0 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage", + orbit=2, + orbitIndex=16, + skill=37250, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [37258]={ + connections={ + [1]={ + id=31903, + orbit=0 + } + }, + group=436, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=37258, + stats={ + [1]="+5 to any Attribute" + } + }, + [37260]={ + connections={ + [1]={ + id=30395, + orbit=2 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Warcry Speed", + orbit=2, + orbitIndex=13, + skill=37260, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [37266]={ + connections={ + [1]={ + id=29930, + orbit=0 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Nourishing Ally", + orbit=0, + orbitIndex=0, + skill=37266, + stats={ + [1]="Companions have 20% increased maximum Life", + [2]="20% increased Life Recovery Rate while your Companion is in your Presence" + } + }, + [37276]={ + connections={ + [1]={ + id=33244, + orbit=0 + } + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Battle Trance", + orbit=2, + orbitIndex=14, + skill=37276, + stats={ + [1]="+8 to Maximum Rage" + } + }, + [37279]={ + connections={ + [1]={ + id=41159, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Mana Regeneration", + orbit=3, + orbitIndex=15, + skill=37279, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Elemental Damage" + } + }, + [37290]={ + connections={ + [1]={ + id=28892, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage while Shapeshifted", + orbit=7, + orbitIndex=5, + skill=37290, + stats={ + [1]="+3 to maximum Rage while Shapeshifted" + } + }, + [37302]={ + connections={ + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + isNotable=true, + name="Kept at Bay", + orbit=3, + orbitIndex=20, + skill=37302, + stats={ + [1]="Attacks used by Ballistas have 10% increased Attack Speed", + [2]="50% increased Ballista Immobilisation buildup" + } + }, + [37304]={ + connections={ + [1]={ + id=336, + orbit=4 + }, + [2]={ + id=61921, + orbit=-4 + }, + [3]={ + id=64543, + orbit=0 + } + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental", + orbit=4, + orbitIndex=57, + skill=37304, + stats={ + [1]="10% increased Magnitude of Chill you inflict", + [2]="10% increased Magnitude of Shock you inflict" + } + }, + [37327]={ + connections={ + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=16, + skill=37327, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [37336]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=35801, + orbit=0 + } + }, + group=1514, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.png", + isNotable=true, + name="Avidity", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37336, + stats={ + [1]="50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" + } + }, + [37361]={ + connections={ + [1]={ + id=40043, + orbit=0 + } + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=1, + orbitIndex=6, + skill=37361, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [37372]={ + connections={ + [1]={ + id=13738, + orbit=0 + } + }, + group=993, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Skill Speed", + orbit=0, + orbitIndex=0, + skill=37372, + stats={ + [1]="3% increased Attack and Cast Speed with Lightning Skills" + } + }, + [37389]={ + connections={ + [1]={ + id=37644, + orbit=0 + }, + [2]={ + id=28061, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=37389, + stats={ + [1]="10% increased Attack Damage" + } + }, + [37397]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=372, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.png", + isMultipleChoiceOption=true, + name="Neurological Implants", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37397, + stats={ + [1]="+2 to Level of all Skills with an Intelligence requirement" + } + }, + [37408]={ + connections={ + [1]={ + id=31855, + orbit=7 + }, + [2]={ + id=46761, + orbit=0 + } + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Staunching", + orbit=2, + orbitIndex=13, + skill=37408, + stats={ + [1]="Life Flasks gain 0.1 charges per Second", + [2]="+10 to Strength" + } + }, + [37414]={ + connections={ + [1]={ + id=65193, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + name="Accuracy", + orbit=2, + orbitIndex=16, + skill=37414, + stats={ + [1]="10% increased Accuracy Rating" + } + }, + [37434]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + connections={ + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=2, + orbitIndex=10, + skill=37434 + }, + [37450]={ + connections={ + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance", + orbit=4, + orbitIndex=46, + skill=37450, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [37484]={ + connections={ + }, + flavourText="The irrepressible spirit of the wilds burns within you, roaring to be let loose.", + group=134, + icon="Art/2DArt/SkillIcons/passives/DruidRageKeystone.png", + isKeystone=true, + name="Primal Hunger", + orbit=0, + orbitIndex=0, + skill=37484, + stats={ + [1]="100% more Maximum Rage\nRegenerate 1 Rage per second per 4 Rage spent Recently\nNo Rage effect" + } + }, + [37509]={ + connections={ + [1]={ + id=57921, + orbit=-2 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Critical Hit Chance", + orbit=7, + orbitIndex=18, + skill=37509, + stats={ + [1]="15% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently" + } + }, + [37514]={ + connections={ + [1]={ + id=32442, + orbit=0 + }, + [2]={ + id=64700, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + isNotable=true, + name="Whirling Assault", + orbit=3, + orbitIndex=1, + skill=37514, + stats={ + [1]="8% increased Attack Speed with Quarterstaves", + [2]="Knocks Back Enemies if you get a Critical Hit with a Quarterstaff" + } + }, + [37519]={ + connections={ + [1]={ + id=17045, + orbit=0 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Movement Speed ", + orbit=7, + orbitIndex=14, + skill=37519, + stats={ + [1]="2% increased Movement Speed" + } + }, + [37523]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=24696, + orbit=0 + } + }, + group=430, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.png", + isNotable=true, + name="Cannons, Ready!", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37523, + stats={ + [1]="+1 to maximum number of Summoned Totems", + [2]="Skills used by Totems have 30% more Skill Speed", + [3]="Totems only use Skills when you fire an Attack Projectile" + } + }, + [37532]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + connections={ + }, + group=1224, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=37532 + }, + [37543]={ + connections={ + [1]={ + id=16647, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Full Recovery", + orbit=2, + orbitIndex=16, + skill=37543, + stats={ + [1]="15% increased Life Regeneration rate", + [2]="15% increased Mana Regeneration Rate", + [3]="12% increased Cast Speed while on Full Mana" + } + }, + [37548]={ + connections={ + [1]={ + id=37742, + orbit=0 + }, + [2]={ + id=17589, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=2, + orbitIndex=5, + skill=37548, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [37568]={ + connections={ + [1]={ + id=45370, + orbit=0 + } + }, + group=1238, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.png", + name="Strength and Critical Damage Bonus on You", + orbit=2, + orbitIndex=6, + skill=37568, + stats={ + [1]="Hits against you have 5% reduced Critical Damage Bonus", + [2]="+5 to Strength" + } + }, + [37593]={ + connections={ + }, + group=849, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=0, + orbitIndex=0, + skill=37593, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [37594]={ + connections={ + [1]={ + id=8983, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=5, + orbitIndex=38, + skill=37594, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [37604]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=51546, + orbit=9 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Immobilisation Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=21, + skill=37604, + stats={ + [1]="20% increased Immobilisation buildup" + } + }, + [37608]={ + connections={ + [1]={ + id=53524, + orbit=0 + }, + [2]={ + id=61042, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=4, + orbitIndex=51, + skill=37608, + stats={ + [1]="10% increased Physical Damage" + } + }, + [37609]={ + connections={ + [1]={ + id=21213, + orbit=0 + }, + [2]={ + id=60332, + orbit=0 + } + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=0, + orbitIndex=0, + skill=37609, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [37612]={ + connections={ + [1]={ + id=13279, + orbit=0 + }, + [2]={ + id=17532, + orbit=0 + }, + [3]={ + id=60191, + orbit=0 + } + }, + group=560, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=37612, + stats={ + [1]="+5 to any Attribute" + } + }, + [37616]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=5, + orbitIndex=45, + skill=37616 + }, + [37629]={ + connections={ + [1]={ + id=55933, + orbit=0 + }, + [2]={ + id=41338, + orbit=-7 + }, + [3]={ + id=8248, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=42, + skill=37629, + stats={ + [1]="+5 to any Attribute" + } + }, + [37641]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + }, + group=273, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=37641 + }, + [37644]={ + connections={ + [1]={ + id=46874, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Attack Damage", + orbit=7, + orbitIndex=0, + skill=37644, + stats={ + [1]="12% increased Attack Physical Damage" + } + }, + [37665]={ + connections={ + [1]={ + id=35739, + orbit=3 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage and Armour Break", + orbit=7, + orbitIndex=2, + skill=37665, + stats={ + [1]="Break 10% increased Armour", + [2]="6% increased Attack Area Damage" + } + }, + [37688]={ + connections={ + [1]={ + id=37616, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + isNotable=true, + name="Devestating Devices", + orbit=6, + orbitIndex=36, + skill=37688, + stats={ + [1]="25% increased Trap Damage" + } + }, + [37691]={ + connections={ + [1]={ + id=42750, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=13, + skill=37691, + stats={ + [1]="10% increased Attack Damage" + } + }, + [37694]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=21, + skill=37694, + stats={ + [1]="20% increased Fire Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [37695]={ + connections={ + [1]={ + id=11813, + orbit=-5 + } + }, + group=1157, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=0, + orbitIndex=0, + skill=37695, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [37742]={ + connections={ + [1]={ + id=15270, + orbit=0 + }, + [2]={ + id=8246, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + isNotable=true, + name="Manifold Method", + orbit=3, + orbitIndex=6, + skill=37742, + stats={ + [1]="50% increased amount of Mana Leeched", + [2]="25% increased chance to inflict Ailments against Rare or Unique Enemies" + } + }, + [37746]={ + connections={ + [1]={ + id=6544, + orbit=-2 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=7, + orbitIndex=19, + skill=37746, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [37767]={ + connections={ + [1]={ + id=9020, + orbit=0 + }, + [2]={ + id=6596, + orbit=0 + }, + [3]={ + id=63731, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Speed", + orbit=7, + orbitIndex=16, + skill=37767, + stats={ + [1]="4% increased Attack Speed while a Rare or Unique Enemy is in your Presence" + } + }, + [37769]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=62743, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Shared Companion Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=27, + skill=37769, + stats={ + [1]="Companions deal 10% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [37778]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=24929, + orbit=0 + }, + [2]={ + id=13108, + orbit=0 + } + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Self Sacrificing", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=20, + skill=37778, + stats={ + [1]="20% reduced Spirit Reservation Efficiency of Skills", + [2]="40% increased Reservation Efficiency of Minion Skills" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [37780]={ + connections={ + [1]={ + id=7888, + orbit=0 + } + }, + group=1446, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png", + name="Combo Gain", + orbit=3, + orbitIndex=1, + skill=37780, + stats={ + [1]="10% Chance to build an additional Combo on Hit" + } + }, + [37782]={ + ascendancyName="Oracle", + connections={ + }, + group=37, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.png", + isNotable=true, + name="Fateful Vision", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37782, + stats={ + [1]="Grants Skill: Align Fate" + } + }, + [37795]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + connections={ + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Shield Mastery", + orbit=0, + orbitIndex=0, + skill=37795 + }, + [37806]={ + connections={ + }, + group=1012, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Branching Bolts", + orbit=0, + orbitIndex=0, + skill=37806, + stats={ + [1]="60% chance for Lightning Skills to Chain an additional time" + } + }, + [37813]={ + connections={ + [1]={ + id=14724, + orbit=0 + }, + [2]={ + id=50701, + orbit=0 + } + }, + group=1313, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Duration", + orbit=0, + orbitIndex=0, + skill=37813, + stats={ + [1]="20% increased Shock Duration" + } + }, + [37869]={ + connections={ + [1]={ + id=60068, + orbit=-2 + }, + [2]={ + id=21413, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Later Rage Loss Start", + orbit=7, + orbitIndex=16, + skill=37869, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [37872]={ + connections={ + [1]={ + id=28863, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Presence Present", + orbit=7, + orbitIndex=4, + skill=37872, + stats={ + [1]="Allies in your Presence have +100 to Accuracy Rating", + [2]="35% increased Attack Damage while you have an Ally in your Presence" + } + }, + [37876]={ + connections={ + [1]={ + id=52615, + orbit=3 + }, + [2]={ + id=25729, + orbit=-3 + } + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=4, + orbitIndex=45, + skill=37876, + stats={ + [1]="10% increased Spell Damage" + } + }, + [37888]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=29663, + orbit=0 + } + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + isNotable=true, + name="Limitless Pursuit", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=6, + skill=37888, + stats={ + [1]="4% increased Movement Speed", + [2]="14% increased Cooldown Recovery Rate" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [37905]={ + connections={ + }, + group=1476, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Flammability Magnitude", + orbit=3, + orbitIndex=2, + skill=37905, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [37946]={ + connections={ + }, + group=1167, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Projectile Stun Buildup", + orbit=0, + orbitIndex=0, + skill=37946, + stats={ + [1]="20% increased Projectile Stun Buildup" + } + }, + [37951]={ + connections={ + [1]={ + id=41020, + orbit=0 + }, + [2]={ + id=9089, + orbit=0 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=11, + skill=37951, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [37956]={ + connections={ + [1]={ + id=35581, + orbit=3 + } + }, + group=509, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Duration", + orbit=0, + orbitIndex=0, + skill=37956, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [37963]={ + connections={ + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=3, + orbitIndex=13, + skill=37963, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [37971]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1489, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=37971 + }, + [37972]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=4891, + orbit=-4 + }, + [2]={ + id=18280, + orbit=5 + } + }, + group=1564, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Charm Charges", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=37972, + stats={ + [1]="15% increased Charm Charges gained" + } + }, + [37974]={ + connections={ + [1]={ + id=62230, + orbit=0 + } + }, + group=1001, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=6, + orbitIndex=68, + skill=37974, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [37991]={ + connections={ + [1]={ + id=52254, + orbit=0 + } + }, + group=853, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=7, + orbitIndex=18, + skill=37991, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [38003]={ + connections={ + [1]={ + id=63526, + orbit=4 + } + }, + group=792, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=7, + orbitIndex=20, + skill=38003, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [38004]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1515, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.png", + isMultipleChoiceOption=true, + name="Explosive Concoction", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=38004, + stats={ + [1]="Grants Skill: Explosive Concoction" + } + }, + [38010]={ + connections={ + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation and Attack Damage", + orbit=7, + orbitIndex=23, + skill=38010, + stats={ + [1]="5% increased Attack Damage", + [2]="8% increased Glory generation" + } + }, + [38014]={ + ascendancyName="Titan", + connections={ + [1]={ + id=3762, + orbit=5 + } + }, + group=75, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Slam Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=38014, + stats={ + [1]="Slam Skills have 8% increased Area of Effect" + } + }, + [38044]={ + connections={ + [1]={ + id=37695, + orbit=-4 + } + }, + group=1163, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=4, + skill=38044, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [38053]={ + connections={ + [1]={ + id=28564, + orbit=5 + }, + [2]={ + id=8460, + orbit=0 + }, + [3]={ + id=9528, + orbit=-2 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Deafening Cries", + orbit=3, + orbitIndex=13, + skill=38053, + stats={ + [1]="25% increased Warcry Cooldown Recovery Rate", + [2]="8% increased Damage for each time you've Warcried Recently" + } + }, + [38057]={ + connections={ + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=5, + orbitIndex=58, + skill=38057, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [38066]={ + connections={ + [1]={ + id=25300, + orbit=0 + } + }, + group=209, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break and Armour", + orbit=7, + orbitIndex=12, + skill=38066, + stats={ + [1]="10% increased Armour", + [2]="Break 15% increased Armour" + } + }, + [38068]={ + connections={ + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Ailment Chance", + orbit=4, + orbitIndex=60, + skill=38068, + stats={ + [1]="24% increased Flammability Magnitude", + [2]="12% increased Freeze Buildup", + [3]="12% increased chance to Shock" + } + }, + [38069]={ + connections={ + [1]={ + id=338, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=2, + orbitIndex=0, + skill=38069, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [38103]={ + connections={ + [1]={ + id=6898, + orbit=-8 + } + }, + group=622, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration and Stun Threshold", + orbit=7, + orbitIndex=12, + skill=38103, + stats={ + [1]="8% increased Skill Effect Duration", + [2]="8% increased Stun Threshold" + } + }, + [38105]={ + connections={ + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=67, + skill=38105, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [38111]={ + connections={ + [1]={ + id=32241, + orbit=0 + } + }, + group=1214, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Pliable Flesh", + orbit=2, + orbitIndex=0, + skill=38111, + stats={ + [1]="6% of Damage taken Recouped as Life", + [2]="25% increased speed of Recoup Effects" + } + }, + [38124]={ + connections={ + [1]={ + id=51820, + orbit=8 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=4, + orbitIndex=26, + skill=38124, + stats={ + [1]="15% increased Totem Damage" + } + }, + [38130]={ + connections={ + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown Speed", + orbit=3, + orbitIndex=12, + skill=38130, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [38138]={ + connections={ + [1]={ + id=35688, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="Reduced Attribute Requirements", + orbit=5, + orbitIndex=36, + skill=38138, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [38143]={ + connections={ + }, + group=944, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=18, + skill=38143, + stats={ + [1]="+5 to any Attribute" + } + }, + [38172]={ + connections={ + [1]={ + id=60568, + orbit=-6 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=7, + orbitIndex=5, + skill=38172, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [38212]={ + connections={ + [1]={ + id=57683, + orbit=0 + } + }, + group=1479, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.png", + name="Life Recoup", + orbit=2, + orbitIndex=16, + skill=38212, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [38215]={ + connections={ + [1]={ + id=61921, + orbit=-3 + } + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=4, + skill=38215, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [38235]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=38235 + }, + [38270]={ + connections={ + [1]={ + id=23724, + orbit=0 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Damage", + orbit=3, + orbitIndex=0, + skill=38270, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [38292]={ + connections={ + [1]={ + id=33397, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=15, + skill=38292, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [38300]={ + connections={ + [1]={ + id=39716, + orbit=-7 + }, + [2]={ + id=57373, + orbit=-7 + } + }, + group=592, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=0, + orbitIndex=0, + skill=38300, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [38313]={ + connections={ + }, + group=418, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + name="Projectile Speed", + orbit=2, + orbitIndex=16, + skill=38313, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [38320]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=90, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=38320 + }, + [38323]={ + connections={ + [1]={ + id=6015, + orbit=-6 + }, + [2]={ + id=22928, + orbit=-5 + } + }, + group=574, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38323, + stats={ + [1]="+5 to any Attribute" + } + }, + [38329]={ + connections={ + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Biting Frost", + orbit=0, + orbitIndex=0, + skill=38329, + stats={ + [1]="20% reduced Freeze Duration on Enemies", + [2]="Enemies Frozen by you take 20% increased Cold Damage" + } + }, + [38338]={ + connections={ + [1]={ + id=5257, + orbit=-2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=4, + orbitIndex=60, + skill=38338, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [38342]={ + connections={ + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Stupefy", + orbit=7, + orbitIndex=20, + skill=38342, + stats={ + [1]="10% chance to Daze on Hit", + [2]="30% increased Damage against Dazed Enemies" + } + }, + [38365]={ + connections={ + [1]={ + id=34626, + orbit=0 + }, + [2]={ + id=46499, + orbit=0 + } + }, + group=207, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=20, + skill=38365, + stats={ + [1]="Recover 2% of maximum Life for each Endurance Charge consumed" + } + }, + [38368]={ + connections={ + [1]={ + id=35966, + orbit=-2 + }, + [2]={ + id=4091, + orbit=2 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=38368, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [38369]={ + connections={ + [1]={ + id=18910, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Critical Chance", + orbit=4, + orbitIndex=48, + skill=38369, + stats={ + [1]="10% increased Critical Hit Chance with Spears" + } + }, + [38398]={ + connections={ + [1]={ + id=2211, + orbit=7 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + isNotable=true, + name="Apocalypse", + orbit=7, + orbitIndex=14, + skill=38398, + stats={ + [1]="30% reduced Damage", + [2]="+8% to Critical Hit Chance of Herald Skills" + } + }, + [38420]={ + connections={ + [1]={ + id=37543, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=20, + skill=38420, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [38430]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + [1]={ + id=10499, + orbit=0 + } + }, + group=657, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=38430 + }, + [38433]={ + connections={ + [1]={ + id=55375, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=2, + orbitIndex=17, + skill=38433, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [38459]={ + connections={ + [1]={ + id=38568, + orbit=0 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Disorientation", + orbit=2, + orbitIndex=16, + skill=38459, + stats={ + [1]="25% increased Blind duration", + [2]="25% increased Damage with Hits against Blinded Enemies" + } + }, + [38463]={ + connections={ + [1]={ + id=46882, + orbit=0 + }, + [2]={ + id=21111, + orbit=-6 + }, + [3]={ + id=43522, + orbit=5 + }, + [4]={ + id=22329, + orbit=0 + } + }, + group=1260, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38463, + stats={ + [1]="+5 to any Attribute" + } + }, + [38474]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.png", + isOnlyImage=true, + name="Bleed Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=13, + skill=38474, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [38479]={ + connections={ + [1]={ + id=17553, + orbit=-5 + } + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Close Confines", + orbit=2, + orbitIndex=20, + skill=38479, + stats={ + [1]="50% chance for Projectiles to Pierce Enemies within 3m distance of you" + } + }, + [38493]={ + connections={ + [1]={ + id=55621, + orbit=4 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=4, + orbitIndex=45, + skill=38493, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [38497]={ + connections={ + [1]={ + id=62803, + orbit=-5 + } + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges Used", + orbit=7, + orbitIndex=19, + skill=38497, + stats={ + [1]="6% reduced Charm Charges used" + } + }, + [38501]={ + connections={ + [1]={ + id=47796, + orbit=-4 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=4, + orbitIndex=40, + skill=38501, + stats={ + [1]="3% increased Attack Speed" + } + }, + [38532]={ + connections={ + [1]={ + id=31779, + orbit=0 + } + }, + group=210, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Thirst for Power", + orbit=2, + orbitIndex=20, + skill=38532, + stats={ + [1]="25% chance when you gain a Power Charge to gain an additional Power Charge" + } + }, + [38535]={ + connections={ + [1]={ + id=61063, + orbit=7 + }, + [2]={ + id=42205, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Stormcharged", + orbit=4, + orbitIndex=66, + skill=38535, + stats={ + [1]="Damage Penetrates 8% of Enemy Elemental Resistances", + [2]="5% increased Attack and Cast Speed with Elemental Skills" + } + }, + [38537]={ + connections={ + [1]={ + id=54983, + orbit=-3 + }, + [2]={ + id=51583, + orbit=0 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Heartstopping", + orbit=2, + orbitIndex=21, + skill=38537, + stats={ + [1]="+10 to Intelligence", + [2]="20% increased Critical Hit Chance" + } + }, + [38541]={ + connections={ + [1]={ + id=61601, + orbit=0 + } + }, + group=1193, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=38541, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [38564]={ + connections={ + [1]={ + id=20091, + orbit=0 + } + }, + group=564, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=3, + orbitIndex=15, + skill=38564, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [38568]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + connections={ + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Blind Mastery", + orbit=1, + orbitIndex=2, + skill=38568 + }, + [38570]={ + connections={ + [1]={ + id=53895, + orbit=2 + }, + [2]={ + id=27992, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Demolitionist", + orbit=7, + orbitIndex=10, + skill=38570, + stats={ + [1]="Gain 4% of Damage as Extra Fire Damage for\nevery different Grenade fired in the past 8 seconds" + } + }, + [38578]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.png", + isNotable=true, + name="Multiplying Squalls", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=24, + skill=38578, + stats={ + [1]="+2 to Limit for Elemental Skills" + } + }, + [38596]={ + connections={ + [1]={ + id=35408, + orbit=-3 + } + }, + group=310, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + name="Curse Effect on Self", + orbit=0, + orbitIndex=0, + skill=38596, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [38601]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=34501, + orbit=0 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.png", + isNotable=true, + name="Obsessive Rituals", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=28, + skill=38601, + stats={ + [1]="50% less Armour and Evasion Rating", + [2]="Grants Skill: Sorcery Ward" + } + }, + [38614]={ + connections={ + [1]={ + id=27662, + orbit=0 + }, + [2]={ + id=44201, + orbit=0 + } + }, + group=1011, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + isNotable=true, + name="Psychic Fragmentation", + orbit=3, + orbitIndex=20, + skill=38614, + stats={ + [1]="12% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [38628]={ + connections={ + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Escalating Toxins", + orbit=2, + orbitIndex=19, + skill=38628, + stats={ + [1]="10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%" + } + }, + [38646]={ + connections={ + [1]={ + id=23570, + orbit=0 + } + }, + group=704, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=0, + orbitIndex=0, + skill=38646, + stats={ + [1]="+20 to Armour" + } + }, + [38663]={ + connections={ + [1]={ + id=3516, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Critical Chance", + orbit=7, + orbitIndex=6, + skill=38663, + stats={ + [1]="10% increased Melee Critical Hit Chance" + } + }, + [38668]={ + connections={ + }, + group=1146, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png", + name="Evasion", + orbit=7, + orbitIndex=7, + skill=38668, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [38670]={ + connections={ + [1]={ + id=28589, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour if Hit", + orbit=2, + orbitIndex=21, + skill=38670, + stats={ + [1]="20% increased Armour if you have been Hit Recently" + } + }, + [38676]={ + connections={ + [1]={ + id=27910, + orbit=-8 + }, + [2]={ + id=56045, + orbit=0 + } + }, + group=1075, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=1, + orbitIndex=6, + skill=38676, + stats={ + [1]="10% increased Attack Damage" + } + }, + [38678]={ + connections={ + [1]={ + id=30463, + orbit=-7 + }, + [2]={ + id=60464, + orbit=-6 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=2, + orbitIndex=19, + skill=38678, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [38694]={ + connections={ + [1]={ + id=22188, + orbit=-4 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=7, + orbitIndex=8, + skill=38694, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [38697]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=20391, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block Chance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=12, + skill=38697, + stats={ + [1]="8% increased Block chance" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [38703]={ + connections={ + [1]={ + id=8249, + orbit=0 + } + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Critical Chance", + orbit=7, + orbitIndex=14, + skill=38703, + stats={ + [1]="8% increased Critical Hit Chance for Attacks", + [2]="6% increased Accuracy Rating" + } + }, + [38707]={ + connections={ + [1]={ + id=49734, + orbit=0 + }, + [2]={ + id=28564, + orbit=0 + }, + [3]={ + id=11464, + orbit=0 + }, + [4]={ + id=3723, + orbit=0 + } + }, + group=211, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38707, + stats={ + [1]="+5 to any Attribute" + } + }, + [38728]={ + connections={ + [1]={ + id=14539, + orbit=5 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Deflection and Evasion", + orbit=7, + orbitIndex=0, + skill=38728, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 4% of Evasion Rating" + } + }, + [38732]={ + connections={ + [1]={ + id=17107, + orbit=-3 + } + }, + group=851, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38732, + stats={ + [1]="+5 to any Attribute" + } + }, + [38763]={ + connections={ + [1]={ + id=27859, + orbit=0 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=7, + orbitIndex=16, + skill=38763, + stats={ + [1]="6% increased Reservation Efficiency of Herald Skills" + } + }, + [38769]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=58704, + orbit=0 + } + }, + group=30, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Armour Break", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=38769, + stats={ + [1]="Break 25% increased Armour" + } + }, + [38776]={ + connections={ + [1]={ + id=57816, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=7, + orbitIndex=16, + skill=38776, + stats={ + [1]="+8 to Dexterity" + } + }, + [38779]={ + connections={ + [1]={ + id=44605, + orbit=5 + }, + [2]={ + id=44836, + orbit=0 + } + }, + group=788, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=8, + skill=38779, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [38814]={ + connections={ + [1]={ + id=19288, + orbit=0 + }, + [2]={ + id=62341, + orbit=0 + }, + [3]={ + id=11980, + orbit=0 + } + }, + group=962, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38814, + stats={ + [1]="+5 to any Attribute" + } + }, + [38827]={ + connections={ + [1]={ + id=1546, + orbit=7 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=1, + skill=38827, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [38835]={ + connections={ + [1]={ + id=4091, + orbit=-7 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=7, + orbitIndex=16, + skill=38835, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [38856]={ + connections={ + [1]={ + id=49357, + orbit=0 + }, + [2]={ + id=2071, + orbit=0 + }, + [3]={ + id=21081, + orbit=5 + }, + [4]={ + id=56090, + orbit=0 + } + }, + group=640, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=38856, + stats={ + [1]="+5 to any Attribute" + } + }, + [38876]={ + connections={ + [1]={ + id=61490, + orbit=0 + }, + [2]={ + id=31903, + orbit=0 + } + }, + group=450, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38876, + stats={ + [1]="+5 to any Attribute" + } + }, + [38878]={ + connections={ + [1]={ + id=34898, + orbit=-7 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Debuff Expiry", + orbit=4, + orbitIndex=35, + skill=38878, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [38888]={ + connections={ + [1]={ + id=39116, + orbit=0 + } + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Unerring Impact", + orbit=7, + orbitIndex=12, + skill=38888, + stats={ + [1]="16% increased Accuracy Rating with One Handed Melee Weapons", + [2]="16% increased Accuracy Rating with Two Handed Melee Weapons", + [3]="+0.2 metres to Melee Strike Range" + } + }, + [38895]={ + connections={ + [1]={ + id=8697, + orbit=3 + }, + [2]={ + id=48660, + orbit=0 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + isNotable=true, + name="Crystal Elixir", + orbit=2, + orbitIndex=7, + skill=38895, + stats={ + [1]="40% increased Elemental Damage with Attack Skills during any Flask Effect" + } + }, + [38921]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + connections={ + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Block Mastery", + orbit=2, + orbitIndex=1, + skill=38921 + }, + [38923]={ + connections={ + [1]={ + id=61429, + orbit=3 + }, + [2]={ + id=511, + orbit=-3 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Skill Speed", + orbit=7, + orbitIndex=14, + skill=38923, + stats={ + [1]="3% increased Skill Speed" + } + }, + [38944]={ + connections={ + [1]={ + id=43338, + orbit=0 + }, + [2]={ + id=59538, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Shock Chance and Lightning Damage", + orbit=2, + orbitIndex=6, + skill=38944, + stats={ + [1]="8% increased Lightning Damage", + [2]="8% increased chance to Shock" + } + }, + [38965]={ + connections={ + [1]={ + id=65226, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Infused Limits", + orbit=7, + orbitIndex=21, + skill=38965, + stats={ + [1]="+1 to maximum number of Elemental Infusions" + } + }, + [38966]={ + connections={ + [1]={ + id=30210, + orbit=0 + }, + [2]={ + id=35058, + orbit=0 + }, + [3]={ + id=61976, + orbit=0 + } + }, + group=1138, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold and Evasion Rating", + orbit=2, + orbitIndex=0, + skill=38966, + stats={ + [1]="8% increased Evasion Rating", + [2]="12% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [38969]={ + connections={ + [1]={ + id=50588, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Finesse", + orbit=0, + orbitIndex=0, + skill=38969, + stats={ + [1]="10% increased Accuracy Rating", + [2]="Gain Accuracy Rating equal to your Intelligence" + } + }, + [38972]={ + connections={ + [1]={ + id=34552, + orbit=0 + }, + [2]={ + id=8357, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Restless Dead", + orbit=3, + orbitIndex=8, + skill=38972, + stats={ + [1]="Minions Revive 25% faster" + } + }, + [38993]={ + connections={ + [1]={ + id=21112, + orbit=0 + } + }, + group=1470, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Critical Damage", + orbit=0, + orbitIndex=0, + skill=38993, + stats={ + [1]="16% increased Critical Damage Bonus with Bows" + } + }, + [39037]={ + connections={ + [1]={ + id=11672, + orbit=0 + } + }, + group=820, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39037, + stats={ + [1]="+5 to any Attribute" + } + }, + [39050]={ + connections={ + }, + group=1223, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + isNotable=true, + name="Exploit", + orbit=2, + orbitIndex=4, + skill=39050, + stats={ + [1]="25% increased Damage with Hits against Enemies affected by Elemental Ailments", + [2]="15% increased Duration of Ignite, Shock and Chill on Enemies" + } + }, + [39083]={ + connections={ + }, + group=454, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Blood Rush", + orbit=0, + orbitIndex=0, + skill=39083, + stats={ + [1]="6% increased Skill Speed", + [2]="6% of Skill Mana Costs Converted to Life Costs" + } + }, + [39087]={ + aliasPassiveSocket="voices_jewel_slot4", + connections={ + }, + group=670, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Sinister Jewel Socket", + noRadius=true, + nodeOverlay={ + alloc="BlightedNotableFrameAllocated", + path="BlightedNotableFrameCanAllocate", + unalloc="BlightedNotableFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=39087 + }, + [39102]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=13228, + orbit=0 + } + }, + group=230, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=3, + skill=39102, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [39116]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=3, + orbitIndex=14, + skill=39116 + }, + [39128]={ + connections={ + [1]={ + id=47514, + orbit=0 + } + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze Magnitude", + orbit=2, + orbitIndex=4, + skill=39128, + stats={ + [1]="15% increased Magnitude of Daze" + } + }, + [39130]={ + connections={ + [1]={ + id=14294, + orbit=-5 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Spell Damage", + orbit=2, + orbitIndex=20, + skill=39130, + stats={ + [1]="12% increased Spell Damage with Spells that cost Life" + } + }, + [39131]={ + connections={ + [1]={ + id=11741, + orbit=0 + }, + [2]={ + id=55596, + orbit=0 + } + }, + group=185, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39131, + stats={ + [1]="+5 to any Attribute" + } + }, + [39190]={ + connections={ + [1]={ + id=8800, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=13, + skill=39190, + stats={ + [1]="15% increased Melee Damage with Hits at Close Range" + } + }, + [39204]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.png", + isNotable=true, + name="Force of Will", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=48, + skill=39204, + stats={ + [1]="20% of Damage is taken from Mana before Life", + [2]="20% increased Effect of Arcane Surge on you per ten percent missing Mana" + } + }, + [39207]={ + connections={ + [1]={ + id=33518, + orbit=0 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Slow Effect on You", + orbit=7, + orbitIndex=10, + skill=39207, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [39228]={ + connections={ + [1]={ + id=62603, + orbit=0 + }, + [2]={ + id=63021, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=3, + orbitIndex=18, + skill=39228, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [39237]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=39237 + }, + [39241]={ + ascendancyName="Lich", + connections={ + [1]={ + id=58932, + orbit=-4 + } + }, + group=1150, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=59609, + name="Energy Shield", + stats={ + [1]="20% increased maximum Energy Shield" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39241, + stats={ + [1]="20% increased maximum Energy Shield" + } + }, + [39274]={ + connections={ + [1]={ + id=2119, + orbit=0 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=2, + orbitIndex=6, + skill=39274, + stats={ + [1]="Leech Life 8% slower" + } + }, + [39280]={ + connections={ + [1]={ + id=44669, + orbit=0 + } + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=3, + orbitIndex=1, + skill=39280, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [39292]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=40, + orbit=-7 + } + }, + group=1531, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=39292, + stats={ + [1]="20% increased Evasion Rating" + } + }, + [39298]={ + connections={ + [1]={ + id=38814, + orbit=0 + }, + [2]={ + id=3995, + orbit=0 + }, + [3]={ + id=18115, + orbit=0 + }, + [4]={ + id=1019, + orbit=0 + } + }, + group=917, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39298, + stats={ + [1]="+5 to any Attribute" + } + }, + [39307]={ + connections={ + [1]={ + id=37026, + orbit=0 + } + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Physical Damage", + orbit=1, + orbitIndex=6, + skill=39307, + stats={ + [1]="10% increased Physical Damage" + } + }, + [39347]={ + connections={ + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Breaking Blows", + orbit=3, + orbitIndex=21, + skill=39347, + stats={ + [1]="30% increased Stun Buildup", + [2]="12% increased Area of Effect if you have Stunned an Enemy Recently" + } + }, + [39365]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=39411, + orbit=0 + } + }, + group=46, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Totem Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=39365, + stats={ + [1]="20% increased Totem Life" + } + }, + [39369]={ + connections={ + [1]={ + id=2936, + orbit=3 + }, + [2]={ + id=51583, + orbit=0 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Struck Through", + orbit=4, + orbitIndex=9, + skill=39369, + stats={ + [1]="Attacks have +1% to Critical Hit Chance" + } + }, + [39411]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=48682, + orbit=0 + } + }, + group=44, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.png", + isNotable=true, + name="Answered Call", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=39411, + stats={ + [1]="+1 to maximum number of Summoned Totems", + [2]="Trigger Ancestral Spirits when you Summon a Totem", + [3]="Grants Skill: Ancestral Spirits" + } + }, + [39416]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=695, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=39416 + }, + [39423]={ + connections={ + [1]={ + id=53207, + orbit=0 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=20, + skill=39423, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [39431]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connections={ + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=39431 + }, + [39448]={ + connections={ + [1]={ + id=11178, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Attack Speed", + orbit=3, + orbitIndex=21, + skill=39448, + stats={ + [1]="3% increased Attack Speed with Axes" + } + }, + [39461]={ + connections={ + [1]={ + id=229, + orbit=0 + } + }, + group=639, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Life", + orbit=2, + orbitIndex=0, + skill=39461, + stats={ + [1]="Minions have 6% increased maximum Life", + [2]="Minions deal 6% increased Damage" + } + }, + [39470]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=17754, + orbit=-6 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Minion Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=3, + skill=39470, + stats={ + [1]="Minions have 12% increased maximum Life" + } + }, + [39495]={ + connections={ + [1]={ + id=46386, + orbit=0 + }, + [2]={ + id=27048, + orbit=9 + } + }, + group=1478, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=39495, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [39515]={ + connections={ + [1]={ + id=23450, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=8, + skill=39515, + stats={ + [1]="12% increased Fire Damage" + } + }, + [39517]={ + connections={ + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=3, + orbitIndex=18, + skill=39517, + stats={ + [1]="5% increased Block chance" + } + }, + [39540]={ + connections={ + [1]={ + id=55933, + orbit=0 + }, + [2]={ + id=50558, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isSwitchable=true, + name="Critical Chance", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.png", + id=22652, + name="Skill Speed while Shapeshifted", + stats={ + [1]="3% increased Skill Speed while Shapeshifted" + } + } + }, + orbit=4, + orbitIndex=49, + skill=39540, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [39552]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.png", + isNotable=true, + name="Runic Meridians", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=7, + orbitIndex=22, + skill=39552, + stats={ + [1]="Can tattoo Runes onto your body, gaining\nadditional Rune-only sockets:\n1 Helmet socket\n2 Body Armour sockets\n1 Gloves socket\n1 Boots socket" + } + }, + [39564]={ + connections={ + [1]={ + id=62039, + orbit=0 + }, + [2]={ + id=38663, + orbit=0 + }, + [3]={ + id=13279, + orbit=0 + } + }, + group=613, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=12, + skill=39564, + stats={ + [1]="10% increased Melee Damage" + } + }, + [39567]={ + connections={ + [1]={ + id=53188, + orbit=0 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + isNotable=true, + name="Ingenuity", + orbit=5, + orbitIndex=0, + skill=39567, + stats={ + [1]="+25 to Intelligence" + } + }, + [39569]={ + connections={ + [1]={ + id=35901, + orbit=0 + }, + [2]={ + id=3458, + orbit=-4 + }, + [3]={ + id=7353, + orbit=3 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=7, + orbitIndex=2, + skill=39569, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [39570]={ + connections={ + [1]={ + id=49394, + orbit=6 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance on Critical", + orbit=4, + orbitIndex=59, + skill=39570, + stats={ + [1]="10% chance to inflict Bleeding on Critical Hit with Attacks" + } + }, + [39581]={ + connections={ + [1]={ + id=46325, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=7, + orbitIndex=8, + skill=39581, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [39594]={ + connections={ + [1]={ + id=51248, + orbit=0 + }, + [2]={ + id=53294, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=2, + orbitIndex=3, + skill=39594, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [39595]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.png", + isNotable=true, + name="Way of the Stonefist", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=7, + skill=39595, + stats={ + [1]="Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and\ntheir Explicit Modifiers are transformed into more powerful related Modifiers", + [2]="Ignore Attribute Requirements to equip Gloves" + } + }, + [39598]={ + connections={ + [1]={ + id=3949, + orbit=0 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage and Power Counted", + orbit=2, + orbitIndex=6, + skill=39598, + stats={ + [1]="Empowered Attacks deal 8% increased Damage", + [2]="5% increased total Power counted by Warcries" + } + }, + [39607]={ + connections={ + [1]={ + id=2559, + orbit=-2 + }, + [2]={ + id=45713, + orbit=0 + } + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Charges Gained", + orbit=2, + orbitIndex=12, + skill=39607, + stats={ + [1]="10% increased Flask Charges gained" + } + }, + [39608]={ + connections={ + [1]={ + id=1778, + orbit=-3 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Duration", + orbit=7, + orbitIndex=20, + skill=39608, + stats={ + [1]="20% increased Hazard Duration" + } + }, + [39621]={ + connections={ + [1]={ + id=14176, + orbit=0 + }, + [2]={ + id=57703, + orbit=0 + } + }, + group=321, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Later Rage Loss Start", + orbit=0, + orbitIndex=0, + skill=39621, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [39640]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.png", + isNotable=true, + name="Shaper of Storms", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=70, + skill=39640, + stats={ + [1]="All Damage from Hits Contributes to Shock Chance" + } + }, + [39658]={ + connections={ + [1]={ + id=18831, + orbit=7 + }, + [2]={ + id=15030, + orbit=-2 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Block", + orbit=7, + orbitIndex=1, + skill=39658, + stats={ + [1]="5% increased Block chance" + } + }, + [39659]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=37782, + orbit=6 + } + }, + group=14, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Spell Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=39659, + stats={ + [1]="12% increased Spell Damage" + } + }, + [39710]={ + connections={ + [1]={ + id=51821, + orbit=0 + }, + [2]={ + id=12232, + orbit=0 + }, + [3]={ + id=33045, + orbit=-4 + } + }, + group=256, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39710, + stats={ + [1]="+5 to any Attribute" + } + }, + [39716]={ + connections={ + [1]={ + id=31326, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=12, + skill=39716, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [39723]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=5817, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Projectile Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=21, + skill=39723, + stats={ + [1]="12% increased Projectile Damage" + } + }, + [39732]={ + connections={ + [1]={ + id=30219, + orbit=-2 + } + }, + group=589, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=10, + skill=39732, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [39752]={ + connections={ + [1]={ + id=5936, + orbit=0 + }, + [2]={ + id=38068, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Ailment Duration", + orbit=4, + orbitIndex=48, + skill=39752, + stats={ + [1]="10% increased Duration of Ignite, Shock and Chill on Enemies" + } + }, + [39759]={ + connections={ + [1]={ + id=48035, + orbit=0 + } + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=10, + skill=39759, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [39839]={ + connections={ + [1]={ + id=20205, + orbit=0 + }, + [2]={ + id=14340, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold if no recent Stun", + orbit=2, + orbitIndex=20, + skill=39839, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [39857]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=4663, + orbit=0 + } + }, + group=388, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Mentorship", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=20, + skill=39857, + stats={ + [1]="Minions have 15% reduced Attack Speed", + [2]="Minions have 15% reduced Cast Speed", + [3]="Minions deal 100% increased Damage with Command Skills" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [39881]={ + connections={ + [1]={ + id=16013, + orbit=0 + }, + [2]={ + id=35173, + orbit=0 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Staggering Palm", + orbit=0, + orbitIndex=0, + skill=39881, + stats={ + [1]="20% increased Knockback Distance", + [2]="10% chance to Daze on Hit", + [3]="25% increased Physical Damage" + } + }, + [39884]={ + connections={ + [1]={ + id=40271, + orbit=0 + } + }, + group=1005, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Searing Heat", + orbit=7, + orbitIndex=1, + skill=39884, + stats={ + [1]="100% increased Flammability Magnitude", + [2]="Ignites you inflict deal Damage 10% faster" + } + }, + [39886]={ + connections={ + [1]={ + id=56935, + orbit=0 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39886, + stats={ + [1]="+5 to any Attribute" + } + }, + [39887]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.png", + isNotable=true, + name="The Natural Order", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=7, + skill=39887, + stats={ + [1]="Tame Beast can capture Unique Beasts\nCan have up to one Unique Tamed Beast summoned", + [2]="Unique Tamed Beasts have 30% increased movement speed", + [3]="Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds" + } + }, + [39911]={ + connections={ + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Frantic Reach", + orbit=2, + orbitIndex=4, + skill=39911, + stats={ + [1]="20% reduced Accuracy Rating", + [2]="18% increased Area of Effect for Attacks" + } + }, + [39935]={ + connections={ + [1]={ + id=44344, + orbit=0 + } + }, + flavourText="I give you everything, my pets. Do not disappoint me.", + group=573, + icon="Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.png", + isKeystone=true, + name="Necromantic Talisman", + orbit=0, + orbitIndex=0, + skill=39935, + stats={ + [1]="All bonuses from Equipped Amulet apply to your Minions instead of you" + } + }, + [39964]={ + connections={ + [1]={ + id=48198, + orbit=0 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=4, + skill=39964, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [39986]={ + connections={ + [1]={ + id=57933, + orbit=0 + } + }, + group=1483, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=39986, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [39987]={ + connections={ + [1]={ + id=18913, + orbit=-3 + }, + [2]={ + id=47177, + orbit=-5 + } + }, + group=950, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage and Duration", + orbit=3, + orbitIndex=14, + skill=39987, + stats={ + [1]="5% increased Chaos Damage", + [2]="5% increased Skill Effect Duration" + } + }, + [39990]={ + connections={ + [1]={ + id=13294, + orbit=2 + }, + [2]={ + id=61974, + orbit=0 + } + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Chronomancy", + orbit=7, + orbitIndex=7, + skill=39990, + stats={ + [1]="20% increased Skill Effect Duration", + [2]="Debuffs you inflict have 10% increased Slow Magnitude" + } + }, + [40006]={ + connections={ + [1]={ + id=9896, + orbit=-7 + }, + [2]={ + id=292, + orbit=0 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Regeneration Rate and Presence", + orbit=2, + orbitIndex=7, + skill=40006, + stats={ + [1]="5% increased Life Regeneration rate", + [2]="10% increased Presence Area of Effect" + } + }, + [40024]={ + connections={ + [1]={ + id=2091, + orbit=-2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Chance", + orbit=7, + orbitIndex=4, + skill=40024, + stats={ + [1]="8% chance to Poison on Hit" + } + }, + [40043]={ + connections={ + [1]={ + id=54990, + orbit=0 + } + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=1, + orbitIndex=0, + skill=40043, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [40068]={ + connections={ + [1]={ + id=32683, + orbit=0 + } + }, + group=1023, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Freeze Buildup", + orbit=4, + orbitIndex=38, + skill=40068, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [40073]={ + connections={ + }, + group=951, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Drenched", + orbit=0, + orbitIndex=0, + skill=40073, + stats={ + [1]="40% increased chance to Shock", + [2]="Gain 5% of Lightning damage as Extra Cold damage" + } + }, + [40105]={ + connections={ + [1]={ + id=20558, + orbit=0 + } + }, + group=225, + icon="Art/2DArt/SkillIcons/passives/minionstr.png", + name="Attack Speed and Minion Attack Speed", + orbit=2, + orbitIndex=14, + skill=40105, + stats={ + [1]="3% increased Attack Speed", + [2]="Minions have 3% increased Attack Speed" + } + }, + [40110]={ + connections={ + [1]={ + id=42347, + orbit=3 + } + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + name="Blind Effect", + orbit=7, + orbitIndex=8, + skill=40110, + stats={ + [1]="10% increased Blind Effect" + } + }, + [40117]={ + connections={ + [1]={ + id=64023, + orbit=0 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.png", + isNotable=true, + name="Spiked Armour", + orbit=7, + orbitIndex=4, + skill=40117, + stats={ + [1]="Thorns Damage has 50% chance to ignore Enemy Armour" + } + }, + [40166]={ + connections={ + [1]={ + id=32399, + orbit=-3 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Deep Trance", + orbit=2, + orbitIndex=4, + skill=40166, + stats={ + [1]="8% increased Attack Speed", + [2]="15% increased Cost Efficiency" + } + }, + [40196]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=1151, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=40196 + }, + [40200]={ + connections={ + [1]={ + id=33612, + orbit=0 + }, + [2]={ + id=61842, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=2, + orbitIndex=0, + skill=40200, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [40213]={ + connections={ + [1]={ + id=55846, + orbit=0 + }, + [2]={ + id=24481, + orbit=0 + } + }, + group=1060, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + isNotable=true, + name="Taste for Blood", + orbit=1, + orbitIndex=1, + skill=40213, + stats={ + [1]="Gain 20 Life per enemy killed", + [2]="2% chance to Recover all Life when you Kill an Enemy" + } + }, + [40244]={ + connections={ + [1]={ + id=43263, + orbit=-3 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Attack Speed", + orbit=7, + orbitIndex=16, + skill=40244, + stats={ + [1]="3% increased Attack Speed with One Handed Melee Weapons" + } + }, + [40270]={ + connections={ + }, + group=1203, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + isNotable=true, + name="Frenetic", + orbit=0, + orbitIndex=0, + skill=40270, + stats={ + [1]="10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + [2]="+1 to Maximum Frenzy Charges" + } + }, + [40271]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=1005, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=7, + orbitIndex=2, + skill=40271 + }, + [40276]={ + connections={ + [1]={ + id=32745, + orbit=0 + }, + [2]={ + id=60241, + orbit=0 + } + }, + group=490, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Bleed Chance", + orbit=0, + orbitIndex=0, + skill=40276, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [40292]={ + connections={ + }, + group=299, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + isNotable=true, + name="Nimble Strength", + orbit=1, + orbitIndex=2, + skill=40292, + stats={ + [1]="10% increased Attack Damage", + [2]="Gain Accuracy Rating equal to your Strength" + } + }, + [40313]={ + connections={ + [1]={ + id=58363, + orbit=2 + }, + [2]={ + id=56844, + orbit=-2 + }, + [3]={ + id=3251, + orbit=0 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect and Duration", + orbit=0, + orbitIndex=0, + skill=40313, + stats={ + [1]="8% increased Archon Buff duration", + [2]="5% increased effect of Archon Buffs on you" + } + }, + [40325]={ + connections={ + [1]={ + id=7392, + orbit=0 + }, + [2]={ + id=48505, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Resolution", + orbit=3, + orbitIndex=21, + skill=40325, + stats={ + [1]="25% increased Stun Threshold", + [2]="10% increased Armour, Evasion and Energy Shield" + } + }, + [40328]={ + connections={ + [1]={ + id=28564, + orbit=-5 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=3, + orbitIndex=3, + skill=40328, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [40333]={ + connections={ + [1]={ + id=24178, + orbit=2 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage with Companion in Presence", + orbit=7, + orbitIndex=12, + skill=40333, + stats={ + [1]="12% increased Damage while your Companion is in your Presence" + } + }, + [40336]={ + connections={ + [1]={ + id=6655, + orbit=0 + } + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=40336, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [40341]={ + connections={ + [1]={ + id=17340, + orbit=-3 + }, + [2]={ + id=21274, + orbit=9 + } + }, + group=807, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Movement Speed", + orbit=3, + orbitIndex=6, + skill=40341, + stats={ + [1]="3% increased Movement Speed if you've Killed Recently" + } + }, + [40345]={ + connections={ + [1]={ + id=37991, + orbit=0 + }, + [2]={ + id=50540, + orbit=0 + } + }, + group=853, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Master of Hexes", + orbit=7, + orbitIndex=0, + skill=40345, + stats={ + [1]="25% reduced Curse Duration", + [2]="18% increased Curse Magnitudes" + } + }, + [40377]={ + connections={ + [1]={ + id=46318, + orbit=7 + }, + [2]={ + id=7554, + orbit=-3 + }, + [3]={ + id=46628, + orbit=0 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=10, + skill=40377, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [40395]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=40395 + }, + [40399]={ + connections={ + [1]={ + id=20641, + orbit=0 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Energise", + orbit=5, + orbitIndex=6, + skill=40399, + stats={ + [1]="25% chance for Trigger skills to refund half of Energy Spent" + } + }, + [40453]={ + connections={ + [1]={ + id=25304, + orbit=0 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=9, + skill=40453, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [40471]={ + connections={ + [1]={ + id=19027, + orbit=-2 + }, + [2]={ + id=7847, + orbit=0 + } + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.png", + name="Dexterity", + orbit=7, + orbitIndex=16, + skill=40471, + stats={ + [1]="+8 to Dexterity" + } + }, + [40480]={ + connections={ + [1]={ + id=1953, + orbit=0 + } + }, + group=1186, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Harmonic Generator", + orbit=0, + orbitIndex=0, + skill=40480, + stats={ + [1]="15% increased Critical Hit Chance against Shocked Enemies", + [2]="40% increased Magnitude of Shock you inflict with Critical Hits" + } + }, + [40511]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=55375, + orbit=0 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=4, + skill=40511, + stats={ + [1]="Minions have 12% increased maximum Life" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [40550]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=4, + orbitIndex=0, + skill=40550 + }, + [40596]={ + connections={ + }, + group=305, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=5, + orbitIndex=36, + skill=40596, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [40597]={ + connections={ + [1]={ + id=53607, + orbit=0 + }, + [2]={ + id=58817, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Attack Speed", + orbit=4, + orbitIndex=9, + skill=40597, + stats={ + [1]="Attacks used by Ballistas have 4% increased Attack Speed" + } + }, + [40626]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=1258, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=40626 + }, + [40630]={ + connections={ + [1]={ + id=44527, + orbit=0 + } + }, + group=1014, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + isSwitchable=true, + name="Flask Charges Gained", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + id=18391, + name="Ailment Threshold", + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + } + }, + orbit=0, + orbitIndex=0, + skill=40630, + stats={ + [1]="15% increased Flask Charges gained" + } + }, + [40632]={ + connections={ + [1]={ + id=48889, + orbit=-2 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=12, + skill=40632, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [40687]={ + connections={ + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Lead by Example", + orbit=2, + orbitIndex=12, + skill=40687, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="Allies in your Presence have 30% increased Glory generation" + } + }, + [40691]={ + connections={ + [1]={ + id=25893, + orbit=7 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=4, + orbitIndex=62, + skill=40691, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [40719]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=17646, + orbit=0 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Damage vs Low Life Enemies", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=47, + skill=40719, + stats={ + [1]="35% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [40721]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=64789, + orbit=-6 + }, + [2]={ + id=65413, + orbit=6 + }, + [3]={ + id=49759, + orbit=-4 + }, + [4]={ + id=13673, + orbit=4 + }, + [5]={ + id=12488, + orbit=0 + }, + [6]={ + id=44484, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Stormweaver", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=40721 + }, + [40736]={ + connections={ + [1]={ + id=34305, + orbit=0 + }, + [2]={ + id=15606, + orbit=2 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation and Attack Damage", + orbit=7, + orbitIndex=10, + skill=40736, + stats={ + [1]="5% increased Attack Damage", + [2]="8% increased Glory generation" + } + }, + [40760]={ + connections={ + [1]={ + id=21779, + orbit=0 + }, + [2]={ + id=9185, + orbit=0 + }, + [3]={ + id=47177, + orbit=0 + } + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=1, + skill=40760, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [40783]={ + connections={ + [1]={ + id=11672, + orbit=0 + }, + [2]={ + id=15358, + orbit=0 + }, + [3]={ + id=17711, + orbit=-4 + }, + [4]={ + id=24035, + orbit=0 + }, + [5]={ + id=63009, + orbit=0 + }, + [6]={ + id=21540, + orbit=0 + } + }, + group=850, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=40783, + stats={ + [1]="+5 to any Attribute" + } + }, + [40803]={ + connections={ + [1]={ + id=3218, + orbit=0 + }, + [2]={ + id=44298, + orbit=0 + } + }, + group=249, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Sigil of Ice", + orbit=4, + orbitIndex=21, + skill=40803, + stats={ + [1]="30% increased Damage with Hits against Chilled Enemies" + } + }, + [40894]={ + connections={ + [1]={ + id=1218, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + orbit=3, + orbitIndex=20, + skill=40894, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [40915]={ + ascendancyName="Warbringer", + connections={ + }, + group=40, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.png", + isNotable=true, + name="Wooden Wall", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=40915, + stats={ + [1]="20% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + [40918]={ + connections={ + [1]={ + id=1773, + orbit=-4 + } + }, + group=1112, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Effect and Duration", + orbit=0, + orbitIndex=0, + skill=40918, + stats={ + [1]="5% increased Magnitude of Ailments you inflict", + [2]="5% increased Duration of Damaging Ailments on Enemies" + } + }, + [40929]={ + connections={ + [1]={ + id=43633, + orbit=-7 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration", + orbit=3, + orbitIndex=21, + skill=40929, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [40975]={ + connections={ + [1]={ + id=24368, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Damage", + orbit=0, + orbitIndex=0, + skill=40975, + stats={ + [1]="15% increased Ballista damage" + } + }, + [40985]={ + connections={ + [1]={ + id=62679, + orbit=0 + } + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.png", + isNotable=true, + name="Empowering Remnants", + orbit=2, + orbitIndex=6, + skill=40985, + stats={ + [1]="15% chance for Remnants you create to grant their effects twice" + } + }, + [40990]={ + connections={ + }, + group=1395, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Exposed to the Storm", + orbit=0, + orbitIndex=0, + skill=40990, + stats={ + [1]="Damage Penetrates 18% Lightning Resistance", + [2]="15% increased Critical Hit Chance against enemies with Exposure" + } + }, + [41008]={ + ascendancyName="Amazon", + connections={ + }, + group=1534, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.png", + isNotable=true, + name="Penetrate", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=41008, + stats={ + [1]="Attacks using your Weapons have Added Physical Damage equal\nto 25% of the Accuracy Rating on the Weapon" + } + }, + [41012]={ + connections={ + [1]={ + id=11392, + orbit=-6 + } + }, + group=96, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage and Armour ", + orbit=0, + orbitIndex=0, + skill=41012, + stats={ + [1]="6% increased Fire Damage", + [2]="10% increased Armour" + } + }, + [41016]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=41016 + }, + [41017]={ + connections={ + [1]={ + id=14262, + orbit=0 + }, + [2]={ + id=1801, + orbit=0 + } + }, + group=1404, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=41017, + stats={ + [1]="+5 to any Attribute" + } + }, + [41020]={ + connections={ + [1]={ + id=3994, + orbit=0 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=1, + orbitIndex=8, + skill=41020, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [41029]={ + connections={ + [1]={ + id=25827, + orbit=0 + }, + [2]={ + id=44563, + orbit=-4 + }, + [3]={ + id=25557, + orbit=0 + }, + [4]={ + id=22219, + orbit=0 + } + }, + group=1050, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=41029, + stats={ + [1]="+5 to any Attribute" + } + }, + [41031]={ + connections={ + [1]={ + id=54232, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=27, + skill=41031, + stats={ + [1]="+5 to any Attribute" + } + }, + [41033]={ + connections={ + [1]={ + id=55872, + orbit=0 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + isNotable=true, + name="Utmost Offering", + orbit=2, + orbitIndex=23, + skill=41033, + stats={ + [1]="Offerings cannot be damaged if they have been created Recently" + } + }, + [41044]={ + connections={ + [1]={ + id=47591, + orbit=-7 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Recoup", + orbit=7, + orbitIndex=10, + skill=41044, + stats={ + [1]="3% of Damage taken Recouped as Mana" + } + }, + [41062]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=4, + orbitIndex=48, + skill=41062 + }, + [41076]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=32771, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.png", + isNotable=true, + name="Embrace the Darkness", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=45, + skill=41076, + stats={ + [1]="You have no Spirit\nBase Maximum Darkness is 100\nDamage taken is Reserved from Darkness before being taken from Life or Energy Shield", + [2]="Darkness Reservation lasts for 5 seconds", + [3]="+10 to Maximum Darkness per Level" + } + }, + [41085]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=4367, + orbit=0 + }, + [2]={ + id=46070, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=46, + skill=41085, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [41096]={ + connections={ + [1]={ + id=35901, + orbit=0 + }, + [2]={ + id=31345, + orbit=5 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Shock Chance", + orbit=5, + orbitIndex=36, + skill=41096, + stats={ + [1]="10% increased chance to Shock", + [2]="8% increased Elemental Damage" + } + }, + [41105]={ + connections={ + [1]={ + id=38835, + orbit=0 + }, + [2]={ + id=54288, + orbit=7 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=12, + skill=41105, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [41126]={ + connections={ + [1]={ + id=1170, + orbit=0 + }, + [2]={ + id=9918, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=3, + orbitIndex=4, + skill=41126, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [41129]={ + connections={ + [1]={ + id=24338, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + name="Damage against Ailments", + orbit=4, + orbitIndex=70, + skill=41129, + stats={ + [1]="12% increased Damage with Hits against Enemies affected by Elemental Ailments" + } + }, + [41130]={ + connections={ + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Spell and Minion Damage", + orbit=2, + orbitIndex=4, + skill=41130, + stats={ + [1]="10% increased Spell Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [41147]={ + connections={ + [1]={ + id=23797, + orbit=-6 + } + }, + group=232, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=14, + skill=41147, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Lightning Damage" + } + }, + [41154]={ + connections={ + [1]={ + id=33601, + orbit=0 + } + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=2, + orbitIndex=14, + skill=41154, + stats={ + [1]="20% increased Freeze Buildup" + } + }, + [41159]={ + connections={ + [1]={ + id=27434, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Mana Regeneration", + orbit=3, + orbitIndex=18, + skill=41159, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Elemental Damage" + } + }, + [41163]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connections={ + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=41163 + }, + [41171]={ + connections={ + [1]={ + id=36341, + orbit=0 + } + }, + group=981, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Speed", + orbit=7, + orbitIndex=4, + skill=41171, + stats={ + [1]="4% increased Attack Speed while a Rare or Unique Enemy is in your Presence" + } + }, + [41180]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=41180 + }, + [41186]={ + connections={ + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=5, + orbitIndex=0, + skill=41186, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [41210]={ + connections={ + [1]={ + id=1477, + orbit=0 + }, + [2]={ + id=43578, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.png", + isNotable=true, + name="Ricochet", + orbit=4, + orbitIndex=21, + skill=41210, + stats={ + [1]="15% increased Projectile Damage", + [2]="Projectiles have 10% chance to Chain an additional time from terrain" + } + }, + [41225]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + connections={ + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=41225 + }, + [41298]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=41298 + }, + [41338]={ + connections={ + [1]={ + id=31673, + orbit=0 + } + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Armour applies to Elemental Damage Hits", + orbit=2, + orbitIndex=7, + skill=41338, + stats={ + [1]="+8% of Armour also applies to Elemental Damage while Shapeshifted" + } + }, + [41363]={ + connections={ + [1]={ + id=62518, + orbit=-5 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/lightningstr.png", + name="Lightning Resistance", + orbit=4, + orbitIndex=9, + skill=41363, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [41372]={ + connections={ + [1]={ + id=48030, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield and Mana Regeneration", + orbit=7, + orbitIndex=21, + skill=41372, + stats={ + [1]="10% increased maximum Energy Shield", + [2]="6% increased Mana Regeneration Rate" + } + }, + [41384]={ + connections={ + [1]={ + id=51672, + orbit=0 + } + }, + group=275, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=4, + skill=41384, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [41394]={ + connections={ + [1]={ + id=10841, + orbit=0 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Invigorating Archon", + orbit=7, + orbitIndex=13, + skill=41394, + stats={ + [1]="Archon Buffs also grant +20% to all Elemental Resistances", + [2]="Archon Buffs also grant 10% increased Movement Speed" + } + }, + [41401]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=62702, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.png", + isNotable=true, + name="Vivid Stampede", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=4, + orbitIndex=29, + skill=41401, + stats={ + [1]="Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3\nExpend all Vivid Wisps to trigger Vivid Stampede when you Attack", + [2]="Grants Skill: Vivid Stampede" + } + }, + [41414]={ + connections={ + [1]={ + id=4547, + orbit=-7 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/coldresist.png", + name="Cold Resistance", + orbit=7, + orbitIndex=23, + skill=41414, + stats={ + [1]="+5% to Cold Resistance" + } + }, + [41415]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=41415 + }, + [41442]={ + connections={ + [1]={ + id=58088, + orbit=5 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Block and Stun Threshold", + orbit=3, + orbitIndex=14, + skill=41442, + stats={ + [1]="4% increased Block chance", + [2]="5% increased Stun Threshold" + } + }, + [41447]={ + connections={ + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Flammability Magnitude", + orbit=3, + orbitIndex=8, + skill=41447, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="4% increased Area of Effect for Attacks" + } + }, + [41493]={ + connections={ + [1]={ + id=50253, + orbit=9 + } + }, + group=334, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=0, + orbitIndex=0, + skill=41493, + stats={ + [1]="8% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [41497]={ + connections={ + [1]={ + id=21164, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Chaos Resistance", + orbit=7, + orbitIndex=6, + skill=41497, + stats={ + [1]="Minions have 8% increased maximum Life", + [2]="Minions have +7% to Chaos Resistance" + } + }, + [41511]={ + connections={ + [1]={ + id=35560, + orbit=0 + } + }, + group=552, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Command Skill Damage", + orbit=0, + orbitIndex=0, + skill=41511, + stats={ + [1]="Minions deal 15% increased Damage with Command Skills" + } + }, + [41512]={ + connections={ + }, + group=884, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Heavy Weaponry", + orbit=7, + orbitIndex=13, + skill=41512, + stats={ + [1]="15% increased Melee Damage", + [2]="15% increased Stun Buildup with Melee Damage", + [3]="+15 to Strength" + } + }, + [41522]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + connections={ + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.png", + isOnlyImage=true, + name="Duration Mastery", + orbit=0, + orbitIndex=0, + skill=41522 + }, + [41529]={ + connections={ + [1]={ + id=21380, + orbit=-2 + } + }, + group=1218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=5, + skill=41529, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [41538]={ + connections={ + [1]={ + id=9112, + orbit=3 + }, + [2]={ + id=30047, + orbit=0 + } + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=3, + orbitIndex=18, + skill=41538, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [41573]={ + connections={ + [1]={ + id=24655, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=3, + orbitIndex=10, + skill=41573, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [41580]={ + connections={ + [1]={ + id=13799, + orbit=3 + }, + [2]={ + id=41298, + orbit=0 + } + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Maiming Strike", + orbit=7, + orbitIndex=2, + skill=41580, + stats={ + [1]="25% increased Attack Damage", + [2]="Attacks have 25% chance to Maim on Hit" + } + }, + [41609]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Energy Shield Recharge", + orbit=5, + orbitIndex=20, + skill=41609, + stats={ + [1]="15% increased Energy Shield Recharge Rate while Shapeshifted" + } + }, + [41615]={ + connections={ + [1]={ + id=10534, + orbit=4 + }, + [2]={ + id=22616, + orbit=0 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=7, + orbitIndex=10, + skill=41615, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [41619]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1523, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.png", + isNotable=true, + name="Enduring Elixirs", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=41619, + stats={ + [1]="Life Flask Effects are not removed when Unreserved Life is Filled\nLife Flask Effects do not Queue" + } + }, + [41620]={ + connections={ + [1]={ + id=23879, + orbit=0 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Bear's Roar", + orbit=3, + orbitIndex=5, + skill=41620, + stats={ + [1]="40% increased Stun buildup if you have Shapeshifted to an Animal form Recently" + } + }, + [41645]={ + connections={ + [1]={ + id=6490, + orbit=0 + }, + [2]={ + id=10382, + orbit=0 + } + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=3, + orbitIndex=20, + skill=41645, + stats={ + [1]="10% increased Physical Damage" + } + }, + [41646]={ + connections={ + [1]={ + id=48670, + orbit=0 + }, + [2]={ + id=14091, + orbit=0 + }, + [3]={ + id=17867, + orbit=0 + } + }, + group=663, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=41646, + stats={ + [1]="+5 to any Attribute" + } + }, + [41651]={ + connections={ + [1]={ + id=43791, + orbit=0 + }, + [2]={ + id=53320, + orbit=-5 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Area", + orbit=2, + orbitIndex=2, + skill=41651, + stats={ + [1]="Banner Skills have 12% increased Area of Effect" + } + }, + [41654]={ + connections={ + [1]={ + id=41033, + orbit=0 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Life", + orbit=2, + orbitIndex=5, + skill=41654, + stats={ + [1]="Offerings have 15% increased Maximum Life" + } + }, + [41657]={ + connections={ + }, + group=467, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=10, + skill=41657, + stats={ + [1]="15% increased Armour" + } + }, + [41665]={ + connections={ + [1]={ + id=50562, + orbit=6 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=3, + orbitIndex=2, + skill=41665, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [41669]={ + connections={ + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=3, + orbitIndex=12, + skill=41669, + stats={ + [1]="12% increased Cold Damage" + } + }, + [41701]={ + connections={ + [1]={ + id=11741, + orbit=0 + }, + [2]={ + id=11027, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Endurance Charge Duration and Armour", + orbit=2, + orbitIndex=6, + skill=41701, + stats={ + [1]="10% increased Endurance Charge Duration", + [2]="10% increased Armour if you've consumed an Endurance Charge Recently" + } + }, + [41736]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=46071, + orbit=0 + }, + [2]={ + id=35033, + orbit=0 + }, + [3]={ + id=5563, + orbit=4 + }, + [4]={ + id=60662, + orbit=0 + }, + [5]={ + id=2702, + orbit=-4 + }, + [6]={ + id=6109, + orbit=0 + } + }, + group=1549, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Amazon", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=27, + skill=41736 + }, + [41739]={ + connections={ + [1]={ + id=35265, + orbit=0 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=2, + skill=41739, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [41747]={ + connections={ + [1]={ + id=61847, + orbit=3 + } + }, + group=175, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Critical Chance", + orbit=0, + orbitIndex=0, + skill=41747, + stats={ + [1]="10% increased Critical Hit Chance with Flails" + } + }, + [41751]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=65228, + orbit=3 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.png", + isNotable=true, + name="Martial Adept", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=1, + orbitIndex=6, + skill=41751, + stats={ + [1]="When you gain Combo, gain an additional Combo", + [2]="-0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills" + } + }, + [41753]={ + connections={ + }, + group=1440, + icon="Art/2DArt/SkillIcons/passives/ashfrostandstorm.png", + isNotable=true, + name="Evocational Practitioner", + orbit=0, + orbitIndex=0, + skill=41753, + stats={ + [1]="25% increased Critical Hit Chance if you've Triggered a Skill Recently", + [2]="Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently" + } + }, + [41768]={ + connections={ + [1]={ + id=28982, + orbit=0 + }, + [2]={ + id=53123, + orbit=0 + }, + [3]={ + id=46399, + orbit=0 + }, + [4]={ + id=37484, + orbit=0 + } + }, + group=115, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=41768, + stats={ + [1]="+5 to any Attribute" + } + }, + [41770]={ + connections={ + [1]={ + id=33080, + orbit=0 + }, + [2]={ + id=9441, + orbit=0 + }, + [3]={ + id=16484, + orbit=0 + } + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Area and Debuff Magnitude", + orbit=2, + orbitIndex=13, + skill=41770, + stats={ + [1]="6% increased Parried Debuff Magnitude", + [2]="8% increased Parry Hit Area of Effect" + } + }, + [41811]={ + connections={ + [1]={ + id=35173, + orbit=0 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Shatter Palm", + orbit=3, + orbitIndex=2, + skill=41811, + stats={ + [1]="20% increased Critical Damage Bonus", + [2]="30% increased Stun Buildup" + } + }, + [41821]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=214, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=41821 + }, + [41838]={ + connections={ + [1]={ + id=25429, + orbit=-8 + } + }, + group=622, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration and Stun Threshold", + orbit=7, + orbitIndex=4, + skill=41838, + stats={ + [1]="8% increased Skill Effect Duration", + [2]="8% increased Stun Threshold" + } + }, + [41861]={ + connections={ + }, + flavourText="Bonds forged in battle surpass ties of blood.", + group=1435, + icon="Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.png", + isKeystone=true, + name="Trusted Kinship", + orbit=0, + orbitIndex=0, + skill=41861, + stats={ + [1]="You can have two Companions of different types\n30% more Reservation Efficiency of Companion Skills\n20% less Reservation Efficiency of non-Companion Skills" + } + }, + [41873]={ + connections={ + }, + group=1474, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=22, + skill=41873, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [41875]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=42416, + orbit=0 + } + }, + group=1509, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.png", + isMultipleChoiceOption=true, + name="Point Blank", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=41875, + stats={ + [1]="Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres" + } + }, + [41877]={ + connections={ + [1]={ + id=53958, + orbit=0 + }, + [2]={ + id=64601, + orbit=0 + } + }, + group=1290, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=41877, + stats={ + [1]="+5 to any Attribute" + } + }, + [41886]={ + connections={ + [1]={ + id=9663, + orbit=7 + } + }, + group=1431, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + name="Chaos Damage and Resistance", + orbit=2, + orbitIndex=14, + skill=41886, + stats={ + [1]="5% increased Chaos Damage", + [2]="+3% to Chaos Resistance" + } + }, + [41905]={ + connections={ + [1]={ + id=56926, + orbit=0 + }, + [2]={ + id=44255, + orbit=7 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Gravedigger", + orbit=0, + orbitIndex=0, + skill=41905, + stats={ + [1]="Minions Revive 15% faster", + [2]="Recover 2% of maximum Life when one of your Minions is Revived" + } + }, + [41935]={ + connections={ + [1]={ + id=34782, + orbit=0 + } + }, + group=168, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png", + isNotable=true, + name="Hide of the Bear", + orbit=0, + orbitIndex=0, + skill=41935, + stats={ + [1]="40% increased Armour while Shapeshifted", + [2]="+1% to Maximum Fire Resistance while Shapeshifted", + [3]="25% increased Stun Threshold while Shapeshifted" + } + }, + [41965]={ + connections={ + [1]={ + id=1755, + orbit=-6 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=37463, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=2, + orbitIndex=21, + skill=41965, + stats={ + [1]="8% increased Spell Damage" + } + }, + [41972]={ + connections={ + [1]={ + id=56649, + orbit=4 + }, + [2]={ + id=60515, + orbit=-4 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Glaciation", + orbit=4, + orbitIndex=18, + skill=41972, + stats={ + [1]="Damage Penetrates 18% Cold Resistance", + [2]="Gain 6% of Elemental Damage as Extra Cold Damage" + } + }, + [41991]={ + connections={ + [1]={ + id=61026, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Attack and Cast Speed", + orbit=3, + orbitIndex=2, + skill=41991, + stats={ + [1]="Minions have 3% increased Attack and Cast Speed" + } + }, + [42017]={ + ascendancyName="Ritualist", + connections={ + }, + group=1562, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Reduced Spirit", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42017, + stats={ + [1]="25% reduced Spirit" + } + }, + [42026]={ + connections={ + [1]={ + id=63813, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=7, + orbitIndex=0, + skill=42026, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [42032]={ + connections={ + [1]={ + id=17906, + orbit=0 + } + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/Trap.png", + isNotable=true, + name="Escalating Mayhem", + orbit=7, + orbitIndex=4, + skill=42032, + stats={ + [1]="10% increased Damage for each Hazard triggered Recently, up to 50%" + } + }, + [42035]={ + ascendancyName="Chronomancer", + connections={ + }, + group=358, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.png", + isNotable=true, + name="Inevitability", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=2, + orbitIndex=15, + skill=42035, + stats={ + [1]="Grants Skill: Inevitable Agony" + } + }, + [42036]={ + connections={ + [1]={ + id=50146, + orbit=0 + } + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Off-Balancing Retort", + orbit=4, + orbitIndex=17, + skill=42036, + stats={ + [1]="30% increased Parried Debuff Duration" + } + }, + [42045]={ + connections={ + [1]={ + id=50535, + orbit=7 + }, + [2]={ + id=52003, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Archon of the Blizzard", + orbit=3, + orbitIndex=3, + skill=42045, + stats={ + [1]="Gain Elemental Archon when your Energy Shield Recharge begins" + } + }, + [42059]={ + connections={ + [1]={ + id=36333, + orbit=3 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=4, + orbitIndex=60, + skill=42059, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [42065]={ + connections={ + [1]={ + id=37532, + orbit=0 + } + }, + group=1224, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Surging Currents", + orbit=2, + orbitIndex=17, + skill=42065, + stats={ + [1]="Damage Penetrates 15% Lightning Resistance", + [2]="+10 to Dexterity" + } + }, + [42070]={ + connections={ + [1]={ + id=26148, + orbit=0 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Saqawal's Guidance", + orbit=0, + orbitIndex=0, + skill=42070, + stats={ + [1]="20% increased Elemental Damage with Attacks", + [2]="15% increased Accuracy Rating", + [3]="+10 to Dexterity" + } + }, + [42076]={ + connections={ + [1]={ + id=17706, + orbit=-7 + } + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Charges Used", + orbit=0, + orbitIndex=0, + skill=42076, + stats={ + [1]="4% reduced Flask Charges used from Mana Flasks" + } + }, + [42077]={ + connections={ + [1]={ + id=56564, + orbit=0 + }, + [2]={ + id=2102, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Essence Infusion", + orbit=2, + orbitIndex=11, + skill=42077, + stats={ + [1]="12% faster start of Energy Shield Recharge", + [2]="+12 to Intelligence" + } + }, + [42078]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="The Hollowkeeper", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42078, + stats={ + [1]="50% reduced effect of Curses on you", + [2]="35% reduced Effect of Non-Damaging Ailments on you" + }, + unlockConstraint={ + nodes={ + [1]=59657, + [2]=49356 + } + } + }, + [42103]={ + connections={ + [1]={ + id=62427, + orbit=-2 + } + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Enduring Deflection", + orbit=3, + orbitIndex=0, + skill=42103, + stats={ + [1]="20% increased Evasion Rating", + [2]="Prevent +3% of Damage from Deflected Hits" + } + }, + [42111]={ + connections={ + [1]={ + id=21387, + orbit=0 + }, + [2]={ + id=26437, + orbit=0 + } + }, + group=199, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=19, + skill=42111, + stats={ + [1]="Break 20% increased Armour" + } + }, + [42118]={ + connections={ + [1]={ + id=2408, + orbit=0 + }, + [2]={ + id=57518, + orbit=0 + }, + [3]={ + id=11509, + orbit=0 + }, + [4]={ + id=43102, + orbit=0 + }, + [5]={ + id=49485, + orbit=0 + } + }, + group=1336, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=42118, + stats={ + [1]="+5 to any Attribute" + } + }, + [42127]={ + connections={ + [1]={ + id=4456, + orbit=0 + }, + [2]={ + id=41573, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=2, + orbitIndex=10, + skill=42127, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [42169]={ + connections={ + [1]={ + id=24963, + orbit=-4 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=3, + orbitIndex=20, + skill=42169, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [42177]={ + connections={ + [1]={ + id=11153, + orbit=3 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Blurred Motion", + orbit=0, + orbitIndex=0, + skill=42177, + stats={ + [1]="5% increased Attack Speed", + [2]="10% increased Accuracy Rating", + [3]="5% increased Dexterity" + } + }, + [42205]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=42205 + }, + [42226]={ + connections={ + [1]={ + id=34892, + orbit=0 + }, + [2]={ + id=17792, + orbit=9 + } + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Intelligence", + orbit=3, + orbitIndex=14, + skill=42226, + stats={ + [1]="+10 to Intelligence" + } + }, + [42245]={ + connections={ + [1]={ + id=16024, + orbit=2 + }, + [2]={ + id=18167, + orbit=-2 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Efficient Inscriptions", + orbit=1, + orbitIndex=8, + skill=42245, + stats={ + [1]="Meta Skills have 20% increased Reservation Efficiency" + } + }, + [42250]={ + connections={ + [1]={ + id=26786, + orbit=0 + }, + [2]={ + id=16484, + orbit=0 + }, + [3]={ + id=44014, + orbit=0 + }, + [4]={ + id=45137, + orbit=0 + } + }, + group=1013, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=42250, + stats={ + [1]="+5 to any Attribute" + } + }, + [42253]={ + ascendancyName="Shaman", + connections={ + }, + group=62, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.png", + isNotable=true, + name="Wisdom of the Maji", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42253, + stats={ + [1]="Gain the benefits of Bonded modifiers on Runes and Idols" + } + }, + [42275]={ + ascendancyName="Titan", + connections={ + [1]={ + id=38014, + orbit=5 + } + }, + group=76, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.png", + isNotable=true, + name="Earthbreaker", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42275, + stats={ + [1]="25% chance for Slam Skills you use yourself to cause an additional Aftershock" + } + }, + [42280]={ + connections={ + [1]={ + id=21205, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=7, + orbitIndex=22, + skill=42280, + stats={ + [1]="+3 to all Attributes" + } + }, + [42290]={ + connections={ + [1]={ + id=38732, + orbit=-8 + } + }, + group=853, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=7, + orbitIndex=10, + skill=42290, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [42302]={ + connections={ + [1]={ + id=45331, + orbit=4 + }, + [2]={ + id=31918, + orbit=-4 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Split Shot", + orbit=4, + orbitIndex=54, + skill=42302, + stats={ + [1]="Projectiles have 75% chance for an additional Projectile when Forking" + } + }, + [42339]={ + connections={ + [1]={ + id=60974, + orbit=-2 + } + }, + group=1108, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Additional Remnant Chance", + orbit=2, + orbitIndex=6, + skill=42339, + stats={ + [1]="5% chance to create an additional Remnant" + } + }, + [42347]={ + connections={ + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + isNotable=true, + name="Chakra of Sight", + orbit=3, + orbitIndex=6, + skill=42347, + stats={ + [1]="20% increased Light Radius", + [2]="Cannot be Blinded", + [3]="12% chance to Blind Enemies on Hit" + } + }, + [42350]={ + connections={ + [1]={ + id=61438, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=67, + skill=42350, + stats={ + [1]="+5 to any Attribute" + } + }, + [42354]={ + connections={ + [1]={ + id=43562, + orbit=2 + }, + [2]={ + id=3660, + orbit=7 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png", + isNotable=true, + name="Blinding Flash", + orbit=2, + orbitIndex=0, + skill=42354, + stats={ + [1]="20% increased Blind Effect", + [2]="Blind Enemies when they Stun you" + } + }, + [42361]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + connections={ + }, + group=1266, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.png", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=42361 + }, + [42379]={ + connections={ + [1]={ + id=16705, + orbit=0 + }, + [2]={ + id=25520, + orbit=0 + }, + [3]={ + id=3463, + orbit=0 + }, + [4]={ + id=4552, + orbit=0 + } + }, + group=1212, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=42379, + stats={ + [1]="+5 to any Attribute" + } + }, + [42390]={ + connections={ + [1]={ + id=11433, + orbit=3 + }, + [2]={ + id=63608, + orbit=0 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + isNotable=true, + name="Overheating Blow", + orbit=4, + orbitIndex=4, + skill=42390, + stats={ + [1]="Gain 25% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies" + } + }, + [42410]={ + connections={ + [1]={ + id=9737, + orbit=4 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage and Armour Break", + orbit=7, + orbitIndex=20, + skill=42410, + stats={ + [1]="Break 10% increased Armour", + [2]="6% increased Attack Area Damage" + } + }, + [42416]={ + ascendancyName="Deadeye", + connections={ + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.png", + isMultipleChoice=true, + isNotable=true, + name="Projectile Proximity Specialisation", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=24, + skill=42416 + }, + [42441]={ + ascendancyName="Amazon", + connections={ + }, + group=1536, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.png", + isNotable=true, + name="Surging Avatar", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42441, + stats={ + [1]="When you Consume a Charge, Trigger Elemental Surge to gain 2 Fire Surges", + [2]="When you Consume a Charge, Trigger Elemental Surge to gain 2 Cold Surges", + [3]="Gain 1 fewer Lightning Surge from Triggering Elemental Surge" + } + }, + [42452]={ + connections={ + [1]={ + id=51743, + orbit=3 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Attack Damage", + orbit=5, + orbitIndex=6, + skill=42452, + stats={ + [1]="15% increased Attack Damage if you have Shapeshifted to an Animal form Recently" + } + }, + [42460]={ + connections={ + [1]={ + id=11882, + orbit=5 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance", + orbit=7, + orbitIndex=3, + skill=42460, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [42500]={ + connections={ + [1]={ + id=59881, + orbit=0 + } + }, + group=806, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=10, + skill=42500, + stats={ + [1]="+5 to any Attribute" + } + }, + [42522]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.png", + isNotable=true, + name="Refracted Infusion", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=127, + skill=42522, + stats={ + [1]="When collecting an Elemental Infusion, gain another different Elemental Infusion" + } + }, + [42578]={ + connections={ + [1]={ + id=23192, + orbit=-6 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=3, + orbitIndex=11, + skill=42578, + stats={ + [1]="5% increased Block chance" + } + }, + [42583]={ + connections={ + [1]={ + id=6714, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Life Regeneration Rate", + orbit=2, + orbitIndex=18, + skill=42583, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [42604]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=42604 + }, + [42614]={ + connections={ + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Duration", + orbit=2, + orbitIndex=6, + skill=42614, + stats={ + [1]="Offering Skills have 30% reduced Duration" + } + }, + [42635]={ + connections={ + [1]={ + id=1502, + orbit=0 + } + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Damage", + orbit=2, + orbitIndex=6, + skill=42635, + stats={ + [1]="Channelling Skills deal 12% increased Damage" + } + }, + [42658]={ + connections={ + }, + group=1254, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=42658, + stats={ + [1]="+5 to any Attribute" + } + }, + [42660]={ + connections={ + [1]={ + id=54849, + orbit=0 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/RageNotable.png", + isNotable=true, + name="Commanding Rage", + orbit=2, + orbitIndex=10, + skill=42660, + stats={ + [1]="Every five Rage also grants you 2% increased Minion Attack Speed", + [2]="Every Rage also grants you 1% increased Minion Damage" + } + }, + [42680]={ + connections={ + }, + flavourText="Let the Darkness consume you.\nBeyond the veil of death,\nthere burns a black fire.", + group=706, + icon="Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.png", + isKeystone=true, + name="Blackflame Covenant", + orbit=0, + orbitIndex=0, + skill=42680, + stats={ + [1]="Fire Spells Convert 100% of Fire Damage to Chaos Damage\nChaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes\nIgnite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage" + } + }, + [42710]={ + connections={ + [1]={ + id=41186, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=2, + orbitIndex=20, + skill=42710, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [42714]={ + connections={ + [1]={ + id=29065, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Thousand Cuts", + orbit=5, + orbitIndex=60, + skill=42714, + stats={ + [1]="Enemies you apply Incision to take 2% increased Physical Damage per Incision" + } + }, + [42736]={ + connections={ + [1]={ + id=60685, + orbit=-3 + } + }, + group=885, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=42736, + stats={ + [1]="+5 to any Attribute" + } + }, + [42737]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connections={ + }, + group=568, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=7, + orbitIndex=4, + skill=42737 + }, + [42750]={ + connections={ + [1]={ + id=17088, + orbit=4 + }, + [2]={ + id=9050, + orbit=-4 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=6, + orbitIndex=42, + skill=42750, + stats={ + [1]="10% increased Attack Damage" + } + }, + [42760]={ + connections={ + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + isNotable=true, + name="Chakra of Stability", + orbit=1, + orbitIndex=4, + skill=42760, + stats={ + [1]="30% increased Stun Recovery", + [2]="Regenerate 3% of maximum Life over 1 second when Stunned", + [3]="+1 to Stun Threshold per Dexterity" + } + }, + [42761]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=11335, + orbit=-9 + }, + [2]={ + id=21284, + orbit=6 + }, + [3]={ + id=56505, + orbit=5 + }, + [4]={ + id=39659, + orbit=8 + }, + [5]={ + id=25092, + orbit=3 + }, + [6]={ + id=15275, + orbit=4 + } + }, + group=1, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Oracle", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42761 + }, + [42762]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=58197, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=61, + skill=42762, + stats={ + [1]="15% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [42781]={ + connections={ + [1]={ + id=55429, + orbit=0 + }, + [2]={ + id=56472, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/ProjectilesNotable.png", + isNotable=true, + isSwitchable=true, + name="Clean Shot", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + id=42895, + name="Stalk and Leap", + stats={ + [1]="30% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + [2]="30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" + } + } + }, + orbit=2, + orbitIndex=2, + skill=42781, + stats={ + [1]="15% chance to Pierce an Enemy", + [2]="15% increased Projectile Damage" + } + }, + [42794]={ + connections={ + [1]={ + id=31433, + orbit=-5 + } + }, + group=1271, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=2, + skill=42794, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [42802]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1451, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=42802 + }, + [42805]={ + connections={ + [1]={ + id=26034, + orbit=-5 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=6, + skill=42805, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [42813]={ + connections={ + [1]={ + id=55491, + orbit=0 + } + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Tides of Change", + orbit=7, + orbitIndex=19, + skill=42813, + stats={ + [1]="25% increased Skill Effect Duration" + } + }, + [42825]={ + connections={ + [1]={ + id=31238, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=14, + skill=42825, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [42845]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=10371, + orbit=0 + } + }, + group=317, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Banner Area", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=42845, + stats={ + [1]="Banner Skills have 16% increased Area of Effect" + } + }, + [42857]={ + connections={ + [1]={ + id=20024, + orbit=3 + }, + [2]={ + id=7576, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + name="Skill Speed", + orbit=7, + orbitIndex=16, + skill=42857, + stats={ + [1]="4% increased Skill Speed" + } + }, + [42914]={ + connections={ + [1]={ + id=33393, + orbit=0 + }, + [2]={ + id=50847, + orbit=0 + } + }, + group=142, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Ball and Chain", + orbit=4, + orbitIndex=15, + skill=42914, + stats={ + [1]="15% increased Damage with Flails", + [2]="6% increased Attack Speed with Flails" + } + }, + [42959]={ + connections={ + [1]={ + id=32896, + orbit=-2 + }, + [2]={ + id=28903, + orbit=0 + } + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Low Tolerance", + orbit=7, + orbitIndex=12, + skill=42959, + stats={ + [1]="60% increased Magnitude of Poison you inflict on targets that are not Poisoned" + } + }, + [42974]={ + connections={ + [1]={ + id=46152, + orbit=3 + }, + [2]={ + id=8302, + orbit=-7 + }, + [3]={ + id=30808, + orbit=0 + } + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + name="Blind Chance", + orbit=2, + orbitIndex=18, + skill=42974, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [42981]={ + connections={ + [1]={ + id=56104, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png", + isNotable=true, + name="Cruel Methods", + orbit=4, + orbitIndex=40, + skill=42981, + stats={ + [1]="Break 40% increased Armour", + [2]="25% increased Physical Damage" + } + }, + [42984]={ + connections={ + [1]={ + id=21184, + orbit=0 + } + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Attack Area", + orbit=1, + orbitIndex=8, + skill=42984, + stats={ + [1]="6% increased Area of Effect" + } + }, + [42998]={ + connections={ + [1]={ + id=40333, + orbit=2 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage with Companion in Presence", + orbit=2, + orbitIndex=9, + skill=42998, + stats={ + [1]="12% increased Damage while your Companion is in your Presence" + } + }, + [42999]={ + connections={ + [1]={ + id=4925, + orbit=3 + } + }, + group=926, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=10, + skill=42999, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [43014]={ + connections={ + [1]={ + id=34308, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + name="Attack Damage", + orbit=2, + orbitIndex=22, + skill=43014, + stats={ + [1]="5% increased Attack Damage", + [2]="8% increased Immobilisation buildup" + } + }, + [43036]={ + connections={ + [1]={ + id=2244, + orbit=4 + } + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=18, + skill=43036, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [43044]={ + connections={ + [1]={ + id=63566, + orbit=0 + }, + [2]={ + id=38678, + orbit=0 + }, + [3]={ + id=21495, + orbit=-6 + } + }, + group=1237, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=43044, + stats={ + [1]="+5 to any Attribute" + } + }, + [43064]={ + connections={ + [1]={ + id=47853, + orbit=0 + } + }, + group=1407, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Attack Damage and Companion Damage as Chaos", + orbit=0, + orbitIndex=0, + skill=43064, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Chaos Damage" + } + }, + [43077]={ + connections={ + [1]={ + id=26592, + orbit=-2 + }, + [2]={ + id=43250, + orbit=3 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=4, + orbitIndex=58, + skill=43077, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [43082]={ + connections={ + }, + group=1359, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + isNotable=true, + name="Acceleration", + orbit=2, + orbitIndex=20, + skill=43082, + stats={ + [1]="3% increased Movement Speed", + [2]="10% increased Skill Speed" + } + }, + [43088]={ + connections={ + [1]={ + id=28835, + orbit=0 + }, + [2]={ + id=178, + orbit=0 + }, + [3]={ + id=6988, + orbit=0 + } + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + isNotable=true, + name="Agonising Calamity", + orbit=3, + orbitIndex=8, + skill=43088, + stats={ + [1]="40% increased Chaos Damage while affected by Herald of Plague", + [2]="40% increased Physical Damage while affected by Herald of Blood" + } + }, + [43090]={ + connections={ + }, + group=1372, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Electrotherapy", + orbit=0, + orbitIndex=0, + skill=43090, + stats={ + [1]="5% increased Skill Speed", + [2]="30% increased Electrocute Buildup" + } + }, + [43095]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=35187, + orbit=0 + } + }, + group=1538, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Skill Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=43095, + stats={ + [1]="4% increased Skill Speed" + } + }, + [43102]={ + connections={ + [1]={ + id=30197, + orbit=0 + }, + [2]={ + id=42998, + orbit=-9 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage with Companion in Presence", + orbit=7, + orbitIndex=6, + skill=43102, + stats={ + [1]="12% increased Damage while your Companion is in your Presence" + } + }, + [43128]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=10731, + orbit=4 + } + }, + group=362, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Skill Speed and Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=60, + skill=43128, + stats={ + [1]="4% increased Skill Speed", + [2]="6% increased Area of Effect" + } + }, + [43131]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=61973, + orbit=-9 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Damage vs Low Life Enemies", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=40, + skill=43131, + stats={ + [1]="35% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [43139]={ + connections={ + [1]={ + id=38068, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Stormbreaker", + orbit=4, + orbitIndex=0, + skill=43139, + stats={ + [1]="20% increased Damage for each type of Elemental Ailment on Enemy" + } + }, + [43142]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=43142 + }, + [43149]={ + connections={ + [1]={ + id=40292, + orbit=0 + } + }, + group=299, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=2, + orbitIndex=20, + skill=43149, + stats={ + [1]="5% increased Attack Damage", + [2]="6% increased Accuracy Rating" + } + }, + [43155]={ + connections={ + [1]={ + id=7062, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Critical Chance", + orbit=4, + orbitIndex=23, + skill=43155, + stats={ + [1]="10% increased Critical Hit Chance with Crossbows" + } + }, + [43164]={ + connections={ + [1]={ + id=5710, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=20, + skill=43164, + stats={ + [1]="8% increased Melee Damage" + } + }, + [43174]={ + connections={ + [1]={ + id=28542, + orbit=-7 + } + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=7, + orbitIndex=18, + skill=43174, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [43183]={ + connections={ + [1]={ + id=11153, + orbit=0 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Accuracy", + orbit=7, + orbitIndex=6, + skill=43183, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [43201]={ + connections={ + [1]={ + id=43383, + orbit=0 + } + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance", + orbit=4, + orbitIndex=56, + skill=43201, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [43238]={ + connections={ + [1]={ + id=14211, + orbit=-7 + } + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Rearm Chance", + orbit=7, + orbitIndex=12, + skill=43238, + stats={ + [1]="Hazards have 5% chance to rearm after they are triggered" + } + }, + [43250]={ + connections={ + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/ElementalDominion2.png", + isNotable=true, + name="Adaptive Skin", + orbit=7, + orbitIndex=6, + skill=43250, + stats={ + [1]="+1% to Maximum Resistances of each Elemental Damage Type you have been Hit with Recently" + } + }, + [43254]={ + connections={ + [1]={ + id=33400, + orbit=0 + } + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Debuff Magnitude", + orbit=2, + orbitIndex=22, + skill=43254, + stats={ + [1]="10% increased Parried Debuff Magnitude" + } + }, + [43263]={ + connections={ + [1]={ + id=64492, + orbit=-2 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Attack Speed", + orbit=7, + orbitIndex=13, + skill=43263, + stats={ + [1]="3% increased Attack Speed with One Handed Melee Weapons" + } + }, + [43281]={ + connections={ + [1]={ + id=47359, + orbit=0 + }, + [2]={ + id=51934, + orbit=7 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=21, + skill=43281, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [43282]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Elemental Damage", + orbit=6, + orbitIndex=49, + skill=43282, + stats={ + [1]="12% increased Elemental Damage while Shapeshifted" + } + }, + [43324]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57596, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=4, + skill=43324, + stats={ + [1]="8% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [43338]={ + connections={ + [1]={ + id=56767, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Shock Chance and Lightning Damage", + orbit=2, + orbitIndex=10, + skill=43338, + stats={ + [1]="8% increased Lightning Damage", + [2]="8% increased chance to Shock" + } + }, + [43366]={ + connections={ + [1]={ + id=2606, + orbit=0 + }, + [2]={ + id=4407, + orbit=0 + } + }, + group=583, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Physical Damage Reduction", + orbit=0, + orbitIndex=0, + skill=43366, + stats={ + [1]="Minions have 12% additional Physical Damage Reduction" + } + }, + [43383]={ + connections={ + [1]={ + id=62588, + orbit=0 + }, + [2]={ + id=37450, + orbit=0 + } + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Exposed Wounds", + orbit=4, + orbitIndex=51, + skill=43383, + stats={ + [1]="15% increased chance to inflict Ailments", + [2]="Hits Break 30% increased Armour on targets with Ailments" + } + }, + [43385]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=64139, + orbit=-5 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=18, + skill=43385, + stats={ + [1]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [43396]={ + connections={ + [1]={ + id=40550, + orbit=0 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Reach", + orbit=0, + orbitIndex=0, + skill=43396, + stats={ + [1]="25% increased Totem Placement speed", + [2]="50% increased Totem Placement range" + } + }, + [43423]={ + connections={ + [1]={ + id=48660, + orbit=0 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + isNotable=true, + name="Emboldened Avatar", + orbit=2, + orbitIndex=23, + skill=43423, + stats={ + [1]="50% increased Flammability Magnitude", + [2]="25% increased Freeze Buildup", + [3]="25% increased chance to Shock", + [4]="25% increased Electrocute Buildup" + } + }, + [43426]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=32705, + orbit=0 + } + }, + flavourText="\"Wipe the tears from your face, dear Navira. I did not deceive you. I meant every word. I will forever cherish you, my beloved. Know that I did it all for you... for our future!\"\n\nKelari pleaded with the Tale-woman.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.png", + isNotable=true, + name="Navira's Well", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=2, + orbitIndex=12, + skill=43426, + stats={ + [1]="Grants Skill: Navira's Well" + } + }, + [43431]={ + connections={ + [1]={ + id=38814, + orbit=0 + }, + [2]={ + id=19224, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=4, + orbitIndex=69, + skill=43431, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [43443]={ + connections={ + [1]={ + id=32148, + orbit=0 + }, + [2]={ + id=49370, + orbit=0 + }, + [3]={ + id=8535, + orbit=0 + } + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Critical Chance", + orbit=0, + orbitIndex=0, + skill=43443, + stats={ + [1]="15% increased Critical Hit Chance with Flails" + } + }, + [43444]={ + connections={ + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + name="Knockback", + orbit=7, + orbitIndex=8, + skill=43444, + stats={ + [1]="8% increased Knockback Distance" + } + }, + [43453]={ + connections={ + [1]={ + id=64050, + orbit=0 + } + }, + group=1341, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Sprint Movement Speed", + orbit=0, + orbitIndex=0, + skill=43453, + stats={ + [1]="3% increased Movement Speed while Sprinting" + } + }, + [43460]={ + connections={ + [1]={ + id=63678, + orbit=4 + }, + [2]={ + id=63085, + orbit=-5 + } + }, + group=164, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Armour", + orbit=0, + orbitIndex=0, + skill=43460, + stats={ + [1]="10% increased Armour while Shapeshifted", + [2]="+5% of Armour also applies to Elemental Damage while Shapeshifted" + } + }, + [43461]={ + connections={ + [1]={ + id=51299, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage and Attack Damage", + orbit=5, + orbitIndex=24, + skill=43461, + stats={ + [1]="8% increased Fire Damage", + [2]="8% increased Attack Damage" + } + }, + [43486]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=54289, + orbit=0 + }, + [2]={ + id=39102, + orbit=0 + } + }, + group=230, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=11, + skill=43486, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [43507]={ + connections={ + [1]={ + id=40292, + orbit=0 + } + }, + group=299, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=2, + orbitIndex=12, + skill=43507, + stats={ + [1]="5% increased Attack Damage", + [2]="6% increased Accuracy Rating" + } + }, + [43522]={ + connections={ + [1]={ + id=38497, + orbit=4 + }, + [2]={ + id=33099, + orbit=6 + } + }, + group=1268, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges Used", + orbit=7, + orbitIndex=7, + skill=43522, + stats={ + [1]="6% reduced Charm Charges used" + } + }, + [43557]={ + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Critical Damage", + orbit=3, + orbitIndex=17, + skill=43557, + stats={ + [1]="Minions have 15% increased Critical Damage Bonus" + } + }, + [43562]={ + connections={ + [1]={ + id=3660, + orbit=0 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Chance", + orbit=3, + orbitIndex=2, + skill=43562, + stats={ + [1]="8% chance to Blind Enemies on Hit with Attacks" + } + }, + [43575]={ + connections={ + [1]={ + id=41512, + orbit=0 + } + }, + group=884, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage ", + orbit=7, + orbitIndex=16, + skill=43575, + stats={ + [1]="10% increased Melee Damage" + } + }, + [43576]={ + connections={ + [1]={ + id=7971, + orbit=3 + } + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=8, + skill=43576, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [43578]={ + connections={ + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=26, + skill=43578, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [43579]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + [1]={ + id=35369, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=1, + orbitIndex=9, + skill=43579 + }, + [43584]={ + connections={ + }, + group=619, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Flare", + orbit=0, + orbitIndex=0, + skill=43584, + stats={ + [1]="Gain 2% of Damage as Extra Fire Damage per Endurance Charge consumed Recently" + } + }, + [43588]={ + connections={ + [1]={ + id=61835, + orbit=-2 + }, + [2]={ + id=39131, + orbit=3 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=2, + orbitIndex=2, + skill=43588, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [43633]={ + connections={ + [1]={ + id=10841, + orbit=0 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Energising Archon", + orbit=7, + orbitIndex=17, + skill=43633, + stats={ + [1]="30% increased Archon Buff duration", + [2]="20% faster start of Energy Shield Recharge while affected by an Archon Buff" + } + }, + [43647]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + [1]={ + id=32507, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=2, + orbitIndex=17, + skill=43647 + }, + [43650]={ + connections={ + [1]={ + id=21070, + orbit=0 + }, + [2]={ + id=53386, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance and Damage", + orbit=1, + orbitIndex=11, + skill=43650, + stats={ + [1]="8% increased Critical Damage Bonus", + [2]="5% increased Critical Hit Chance" + } + }, + [43653]={ + connections={ + [1]={ + id=26518, + orbit=0 + }, + [2]={ + id=48171, + orbit=0 + } + }, + group=249, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=4, + orbitIndex=9, + skill=43653, + stats={ + [1]="12% increased Cold Damage" + } + }, + [43677]={ + connections={ + }, + group=1125, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Crippling Toxins", + orbit=0, + orbitIndex=0, + skill=43677, + stats={ + [1]="25% chance for Attacks to Maim on Hit against Poisoned Enemies", + [2]="25% increased Magnitude of Poison you inflict" + } + }, + [43691]={ + connections={ + [1]={ + id=21746, + orbit=0 + }, + [2]={ + id=55270, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=6, + skill=43691, + stats={ + [1]="+5 to any Attribute" + } + }, + [43711]={ + connections={ + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.png", + isNotable=true, + name="Thornhide", + orbit=2, + orbitIndex=18, + skill=43711, + stats={ + [1]="+6% to Thorns Critical Hit Chance" + } + }, + [43713]={ + connections={ + [1]={ + id=3051, + orbit=0 + }, + [2]={ + id=27009, + orbit=0 + }, + [3]={ + id=35602, + orbit=0 + } + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Area", + orbit=0, + orbitIndex=0, + skill=43713, + stats={ + [1]="Offering Skills have 20% increased Area of Effect" + } + }, + [43720]={ + connections={ + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech and Cold Resistance", + orbit=2, + orbitIndex=11, + skill=43720, + stats={ + [1]="+5% to Cold Resistance", + [2]="10% increased amount of Mana Leeched" + } + }, + [43721]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=24993, + orbit=8 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=0, + skill=43721, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [43736]={ + connections={ + [1]={ + id=29695, + orbit=4 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + id=38659, + name="Mana Regeneration", + stats={ + [1]="10% increased Mana Regeneration Rate" + } + } + }, + orbit=2, + orbitIndex=3, + skill=43736, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [43746]={ + connections={ + [1]={ + id=16460, + orbit=0 + }, + [2]={ + id=38143, + orbit=0 + } + }, + group=944, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=6, + skill=43746, + stats={ + [1]="+5 to any Attribute" + } + }, + [43778]={ + connections={ + [1]={ + id=36894, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Chance", + orbit=3, + orbitIndex=2, + skill=43778, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [43791]={ + connections={ + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + isNotable=true, + name="Rallying Icon", + orbit=3, + orbitIndex=0, + skill=43791, + stats={ + [1]="When a Banner expires, recover 15% of the Glory required for that Banner" + } + }, + [43818]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=473, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=43818 + }, + [43829]={ + connections={ + [1]={ + id=51944, + orbit=0 + }, + [2]={ + id=45576, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Advanced Munitions", + orbit=0, + orbitIndex=0, + skill=43829, + stats={ + [1]="25% increased chance to inflict Ailments with Projectiles" + } + }, + [43842]={ + connections={ + [1]={ + id=5695, + orbit=2 + }, + [2]={ + id=28092, + orbit=2 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect", + orbit=0, + orbitIndex=0, + skill=43842, + stats={ + [1]="10% increased effect of Archon Buffs on you" + } + }, + [43843]={ + connections={ + [1]={ + id=17417, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed and Physical Damage", + orbit=5, + orbitIndex=12, + skill=43843, + stats={ + [1]="5% increased Projectile Speed", + [2]="8% increased Physical Damage" + } + }, + [43854]={ + connections={ + [1]={ + id=52038, + orbit=0 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="All For One", + orbit=7, + orbitIndex=7, + skill=43854, + stats={ + [1]="20% reduced Presence Area of Effect", + [2]="12% increased Area of Effect" + } + }, + [43867]={ + connections={ + [1]={ + id=10423, + orbit=2 + } + }, + group=1476, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=7, + orbitIndex=23, + skill=43867, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [43877]={ + connections={ + [1]={ + id=51522, + orbit=-2 + }, + [2]={ + id=47895, + orbit=-2 + } + }, + group=1162, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=1, + orbitIndex=7, + skill=43877, + stats={ + [1]="3% increased Attack Speed" + } + }, + [43893]={ + connections={ + [1]={ + id=55101, + orbit=0 + }, + [2]={ + id=1433, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=10, + skill=43893, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [43895]={ + connections={ + [1]={ + id=48670, + orbit=-5 + } + }, + group=587, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration on Low Life", + orbit=7, + orbitIndex=6, + skill=43895, + stats={ + [1]="15% increased Life Regeneration Rate while on Low Life" + } + }, + [43923]={ + connections={ + [1]={ + id=19104, + orbit=0 + } + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isSwitchable=true, + name="Accuracy", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + id=34062, + name="Stun Threshold during Parry", + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + } + }, + orbit=2, + orbitIndex=2, + skill=43923, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [43938]={ + connections={ + [1]={ + id=37688, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Throw Speed", + orbit=6, + orbitIndex=39, + skill=43938, + stats={ + [1]="6% increased Trap Throwing Speed" + } + }, + [43939]={ + connections={ + [1]={ + id=48267, + orbit=0 + }, + [2]={ + id=56214, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Melting Flames", + orbit=3, + orbitIndex=6, + skill=43939, + stats={ + [1]="Enemies Ignited by you permanently take 1% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%" + } + }, + [43941]={ + connections={ + [1]={ + id=48314, + orbit=-7 + } + }, + group=103, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Skill Speed", + orbit=0, + orbitIndex=0, + skill=43941, + stats={ + [1]="3% increased Skill Speed while Shapeshifted" + } + }, + [43944]={ + connections={ + [1]={ + id=23547, + orbit=0 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + isNotable=true, + name="Instability", + orbit=2, + orbitIndex=13, + skill=43944, + stats={ + [1]="25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility" + } + }, + [43964]={ + connections={ + [1]={ + id=41645, + orbit=0 + } + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=2, + orbitIndex=4, + skill=43964, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [43979]={ + connections={ + [1]={ + id=50837, + orbit=0 + }, + [2]={ + id=26926, + orbit=0 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png", + name="Minion Damage and Command Skill Cooldown", + orbit=3, + orbitIndex=18, + skill=43979, + stats={ + [1]="Minions deal 6% increased Damage", + [2]="Minions have 8% increased Cooldown Recovery Rate for Command Skills" + } + }, + [44005]={ + connections={ + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Casting Cascade", + orbit=6, + orbitIndex=38, + skill=44005, + stats={ + [1]="15% reduced Spell Damage", + [2]="6% increased Cast Speed for each different Spell you've Cast in the last eight seconds" + } + }, + [44014]={ + connections={ + [1]={ + id=11855, + orbit=0 + } + }, + group=969, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=8, + skill=44014, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [44017]={ + connections={ + [1]={ + id=4527, + orbit=0 + } + }, + flavourText="Great tacticians learn that consistency often trumps potential.", + group=231, + icon="Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", + isKeystone=true, + name="Resolute Technique", + orbit=0, + orbitIndex=0, + skill=44017, + stats={ + [1]="Accuracy Rating is Doubled\nNever deal Critical Hits" + } + }, + [44069]={ + connections={ + [1]={ + id=29358, + orbit=-7 + } + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=3, + orbitIndex=4, + skill=44069, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [44082]={ + connections={ + [1]={ + id=4931, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=6, + skill=44082, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [44092]={ + connections={ + [1]={ + id=54911, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=2, + orbitIndex=0, + skill=44092, + stats={ + [1]="12% increased Ignite Magnitude" + } + }, + [44098]={ + connections={ + [1]={ + id=4061, + orbit=0 + }, + [2]={ + id=34531, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=7, + orbitIndex=12, + skill=44098, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [44141]={ + connections={ + [1]={ + id=18969, + orbit=0 + }, + [2]={ + id=21788, + orbit=0 + } + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Speed", + orbit=3, + orbitIndex=7, + skill=44141, + stats={ + [1]="3% increased Attack Speed with Bows" + } + }, + [44176]={ + connections={ + [1]={ + id=57047, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=7, + orbitIndex=18, + skill=44176, + stats={ + [1]="+3 to all Attributes" + } + }, + [44179]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=822, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=44179 + }, + [44188]={ + connections={ + [1]={ + id=64427, + orbit=0 + } + }, + group=930, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Infusion and Power Charge Duration", + orbit=2, + orbitIndex=7, + skill=44188, + stats={ + [1]="8% increased Power Charge Duration", + [2]="8% increased Elemental Infusion duration" + } + }, + [44201]={ + connections={ + }, + group=1011, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=2, + orbitIndex=2, + skill=44201, + stats={ + [1]="6% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [44204]={ + connections={ + [1]={ + id=33729, + orbit=3 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Flammability Magnitude", + orbit=7, + orbitIndex=0, + skill=44204, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="8% increased Elemental Damage" + } + }, + [44213]={ + connections={ + [1]={ + id=869, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield Delay", + orbit=7, + orbitIndex=5, + skill=44213, + stats={ + [1]="12% increased Armour", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [44223]={ + connections={ + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=7, + orbitIndex=1, + skill=44223, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [44239]={ + connections={ + [1]={ + id=29479, + orbit=0 + } + }, + group=1101, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=7, + orbitIndex=16, + skill=44239, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [44255]={ + connections={ + [1]={ + id=28573, + orbit=-3 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Revive Speed", + orbit=7, + orbitIndex=12, + skill=44255, + stats={ + [1]="Minions Revive 5% faster" + } + }, + [44280]={ + connections={ + [1]={ + id=23305, + orbit=-3 + } + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Effect and Blind Chance", + orbit=2, + orbitIndex=9, + skill=44280, + stats={ + [1]="8% increased Effect of your Mark Skills", + [2]="5% chance to Blind Enemies on Hit with Attacks" + } + }, + [44293]={ + connections={ + }, + group=660, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + isNotable=true, + name="Hastening Barrier", + orbit=2, + orbitIndex=9, + skill=44293, + stats={ + [1]="5% increased Cast Speed", + [2]="10% increased Cast Speed when on Full Life" + } + }, + [44298]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + [1]={ + id=46024, + orbit=0 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=44298 + }, + [44299]={ + connections={ + [1]={ + id=38105, + orbit=0 + }, + [2]={ + id=49455, + orbit=0 + }, + [3]={ + id=857, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Enhanced Barrier", + orbit=4, + orbitIndex=0, + skill=44299, + stats={ + [1]="25% increased maximum Energy Shield", + [2]="5% of Maximum Life Converted to Energy Shield" + } + }, + [44309]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=44485, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Companion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=35, + skill=44309, + stats={ + [1]="Companions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [44316]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=6, + skill=44316 + }, + [44330]={ + connections={ + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + isNotable=true, + name="Coated Arms", + orbit=3, + orbitIndex=2, + skill=44330, + stats={ + [1]="25% increased Damage with One Handed Weapons", + [2]="Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments" + } + }, + [44343]={ + connections={ + [1]={ + id=55276, + orbit=5 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=35, + skill=44343, + stats={ + [1]="+5 to any Attribute" + } + }, + [44344]={ + connections={ + [1]={ + id=28092, + orbit=4 + } + }, + group=594, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=44344, + stats={ + [1]="+5 to any Attribute" + } + }, + [44345]={ + connections={ + [1]={ + id=48833, + orbit=0 + } + }, + group=1006, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=44345, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [44357]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=63713, + orbit=-9 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=34, + skill=44357, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [44359]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=44359 + }, + [44369]={ + connections={ + [1]={ + id=30748, + orbit=0 + } + }, + group=1226, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=7, + orbitIndex=16, + skill=44369, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [44371]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=30151, + orbit=0 + } + }, + group=379, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.png", + isNotable=true, + name="Polish That Gear", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=44371, + stats={ + [1]="Gain Deflection Rating equal to 20% of Armour", + [2]="Gain 100% of Evasion Rating as extra Ailment Threshold" + } + }, + [44372]={ + connections={ + [1]={ + id=11679, + orbit=0 + }, + [2]={ + id=25829, + orbit=0 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.png", + name="Spell Damage and Cast Speed", + orbit=2, + orbitIndex=22, + skill=44372, + stats={ + [1]="6% increased Spell Damage", + [2]="2% increased Cast Speed" + } + }, + [44373]={ + connections={ + }, + group=1304, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Wither Away", + orbit=0, + orbitIndex=0, + skill=44373, + stats={ + [1]="Unwithered enemies are Withered for 8 seconds when they enter your Presence", + [2]="20% increased Withered Magnitude" + } + }, + [44406]={ + connections={ + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=6, + orbitIndex=0, + skill=44406, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [44419]={ + connections={ + [1]={ + id=7251, + orbit=7 + }, + [2]={ + id=29788, + orbit=-7 + } + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=7, + orbitIndex=10, + skill=44419, + stats={ + [1]="8% increased amount of Life Leeched" + } + }, + [44420]={ + connections={ + [1]={ + id=28021, + orbit=0 + } + }, + group=1192, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=44420, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [44423]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=25971, + orbit=0 + } + }, + group=1216, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=2, + orbitIndex=1, + skill=44423 + }, + [44430]={ + connections={ + [1]={ + id=7062, + orbit=0 + } + }, + group=922, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Damage", + orbit=0, + orbitIndex=0, + skill=44430, + stats={ + [1]="12% increased Damage with Crossbows" + } + }, + [44452]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=21809, + orbit=-6 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=48, + skill=44452, + stats={ + [1]="5% increased Skill Effect Duration", + [2]="12% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [44453]={ + connections={ + [1]={ + id=42760, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + name="Stun Threshold", + orbit=2, + orbitIndex=3, + skill=44453, + stats={ + [1]="15% increased Stun Threshold" + } + }, + [44455]={ + connections={ + [1]={ + id=41669, + orbit=0 + }, + [2]={ + id=60515, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=44455, + stats={ + [1]="12% increased Cold Damage" + } + }, + [44461]={ + connections={ + [1]={ + id=54998, + orbit=-7 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=7, + orbitIndex=21, + skill=44461, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [44484]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=42522, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Remnant Range", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=136, + skill=44484, + stats={ + [1]="Remnants can be collected from 25% further away" + } + }, + [44485]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=7553, + orbit=-3 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Companion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=41, + skill=44485, + stats={ + [1]="Companions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [44487]={ + connections={ + [1]={ + id=39884, + orbit=0 + } + }, + group=1005, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=7, + orbitIndex=5, + skill=44487, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [44490]={ + connections={ + [1]={ + id=43090, + orbit=0 + } + }, + group=1344, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage and Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=44490, + stats={ + [1]="8% increased Lightning Damage", + [2]="10% increased Electrocute Buildup" + } + }, + [44498]={ + connections={ + [1]={ + id=22439, + orbit=-5 + }, + [2]={ + id=38068, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Exposure Effect", + orbit=3, + orbitIndex=20, + skill=44498, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [44516]={ + connections={ + [1]={ + id=2113, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Speed", + orbit=2, + orbitIndex=13, + skill=44516, + stats={ + [1]="3% increased Attack Speed with Quarterstaves" + } + }, + [44522]={ + connections={ + [1]={ + id=47831, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=22, + skill=44522, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [44527]={ + connections={ + [1]={ + id=44875, + orbit=0 + } + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png", + isNotable=true, + isSwitchable=true, + name="Cautious Concoctions", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/StunAvoidNotable.png", + id=55535, + name="Attuned with Nature", + stats={ + [1]="25% increased Elemental Ailment Threshold", + [2]="25% increased Stun Threshold while on Full Life" + } + } + }, + orbit=2, + orbitIndex=2, + skill=44527, + stats={ + [1]="15% increased Flask Effect Duration", + [2]="15% increased Flask Charges gained" + } + }, + [44540]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=1, + orbitIndex=4, + skill=44540 + }, + [44560]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=0, + skill=44560, + stats={ + [1]="20% increased Cold Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [44563]={ + connections={ + [1]={ + id=59053, + orbit=7 + } + }, + group=1077, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect and Hinder Duration", + orbit=0, + orbitIndex=0, + skill=44563, + stats={ + [1]="Debuffs you inflict have 4% increased Slow Magnitude", + [2]="20% increased Hinder Duration" + } + }, + [44566]={ + connections={ + }, + group=876, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Lightning Rod", + orbit=0, + orbitIndex=0, + skill=44566, + stats={ + [1]="30% chance for Lightning Damage with Hits to be Lucky" + } + }, + [44573]={ + connections={ + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Disciplined Training", + orbit=0, + orbitIndex=0, + skill=44573, + stats={ + [1]="10% increased Skill Effect Duration", + [2]="10% increased Area of Effect for Attacks", + [3]="Skills lose Combo 20% slower" + } + }, + [44605]={ + connections={ + [1]={ + id=59881, + orbit=-6 + }, + [2]={ + id=13081, + orbit=0 + } + }, + group=764, + icon="Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + isNotable=true, + name="Remorseless", + orbit=5, + orbitIndex=21, + skill=44605, + stats={ + [1]="15% increased Projectile Damage", + [2]="30% increased Stun Buildup against enemies within 2 metres", + [3]="+5 to Strength and Dexterity" + } + }, + [44608]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=906, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=44608 + }, + [44612]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + connections={ + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=0, + orbitIndex=0, + skill=44612 + }, + [44628]={ + connections={ + [1]={ + id=20820, + orbit=0 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=20, + skill=44628, + stats={ + [1]="3% increased Attack Speed" + } + }, + [44659]={ + connections={ + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=27, + skill=44659, + stats={ + [1]="+5 to any Attribute" + } + }, + [44669]={ + connections={ + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Increased Duration", + orbit=3, + orbitIndex=9, + skill=44669, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [44683]={ + classesStart={ + [1]="Shadow", + [2]="Monk" + }, + connections={ + [1]={ + id=11495, + orbit=0 + }, + [2]={ + id=9994, + orbit=0 + }, + [3]={ + id=74, + orbit=0 + }, + [4]={ + id=52980, + orbit=0 + } + }, + group=872, + icon="Art/2DArt/SkillIcons/passives/tempint.png", + name="SIX", + orbit=0, + orbitIndex=0, + skill=44683 + }, + [44684]={ + connections={ + [1]={ + id=5191, + orbit=0 + } + }, + group=1183, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Companion Attack Speed", + orbit=0, + orbitIndex=0, + skill=44684, + stats={ + [1]="Companions have 10% increased Attack Speed" + } + }, + [44690]={ + connections={ + [1]={ + id=14127, + orbit=0 + } + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Duration", + orbit=2, + orbitIndex=5, + skill=44690, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [44699]={ + connections={ + [1]={ + id=16150, + orbit=0 + } + }, + group=1495, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Reservation", + orbit=0, + orbitIndex=0, + skill=44699, + stats={ + [1]="8% increased Reservation Efficiency of Companion Skills" + } + }, + [44707]={ + connections={ + [1]={ + id=54785, + orbit=0 + }, + [2]={ + id=7628, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Damage", + orbit=0, + orbitIndex=0, + skill=44707, + stats={ + [1]="Attack Skills deal 10% increased Damage while holding a Shield" + } + }, + [44733]={ + connections={ + [1]={ + id=10742, + orbit=0 + }, + [2]={ + id=29432, + orbit=-9 + }, + [3]={ + id=1433, + orbit=0 + }, + [4]={ + id=49363, + orbit=0 + } + }, + group=547, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=12, + skill=44733, + stats={ + [1]="+5 to any Attribute" + } + }, + [44746]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=4245, + orbit=0 + } + }, + group=341, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.png", + isNotable=true, + name="Suppressing Fire", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=44746, + stats={ + [1]="40% more Immobilisation buildup" + } + }, + [44753]={ + connections={ + [1]={ + id=63608, + orbit=0 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="One With Flame", + orbit=0, + orbitIndex=0, + skill=44753, + stats={ + [1]="50% reduced Magnitude of Ignite on you" + } + }, + [44756]={ + connections={ + [1]={ + id=44841, + orbit=5 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + isNotable=true, + name="Marked Agility", + orbit=3, + orbitIndex=15, + skill=44756, + stats={ + [1]="60% increased Mana Cost Efficiency of Marks", + [2]="4% increased Movement Speed if you've used a Mark Recently" + } + }, + [44765]={ + connections={ + [1]={ + id=32233, + orbit=0 + } + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + isNotable=true, + name="Distracting Presence", + orbit=3, + orbitIndex=21, + skill=44765, + stats={ + [1]="10% increased Cooldown Recovery Rate", + [2]="Enemies in your Presence have 10% reduced Cooldown Recovery Rate" + } + }, + [44776]={ + connections={ + [1]={ + id=48773, + orbit=0 + }, + [2]={ + id=1841, + orbit=5 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=5, + orbitIndex=18, + skill=44776, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [44783]={ + connections={ + [1]={ + id=22949, + orbit=0 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area Damage", + orbit=2, + orbitIndex=20, + skill=44783, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [44787]={ + connections={ + [1]={ + id=14654, + orbit=0 + }, + [2]={ + id=49192, + orbit=0 + }, + [3]={ + id=51683, + orbit=-4 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=7, + orbitIndex=14, + skill=44787, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [44836]={ + connections={ + [1]={ + id=47150, + orbit=0 + } + }, + group=788, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Feel no Pain", + orbit=2, + orbitIndex=12, + skill=44836, + stats={ + [1]="20% increased Armour and Evasion Rating", + [2]="20% increased Stun Threshold" + } + }, + [44841]={ + connections={ + [1]={ + id=36927, + orbit=0 + }, + [2]={ + id=28258, + orbit=2 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Duration", + orbit=2, + orbitIndex=19, + skill=44841, + stats={ + [1]="Mark Skills have 25% increased Skill Effect Duration" + } + }, + [44850]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + connections={ + [1]={ + id=59438, + orbit=0 + }, + [2]={ + id=32128, + orbit=-3 + } + }, + group=628, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=44850 + }, + [44871]={ + connections={ + [1]={ + id=54447, + orbit=0 + }, + [2]={ + id=56216, + orbit=0 + } + }, + group=770, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=3, + orbitIndex=2, + skill=44871, + stats={ + [1]="+10 to maximum Energy Shield" + } + }, + [44872]={ + connections={ + [1]={ + id=11248, + orbit=0 + }, + [2]={ + id=22949, + orbit=0 + }, + [3]={ + id=4970, + orbit=0 + }, + [4]={ + id=3363, + orbit=0 + } + }, + group=355, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=44872, + stats={ + [1]="+5 to any Attribute" + } + }, + [44875]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connections={ + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=44875 + }, + [44891]={ + connections={ + [1]={ + id=52537, + orbit=0 + }, + [2]={ + id=15775, + orbit=0 + } + }, + group=1422, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=7, + skill=44891, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [44902]={ + connections={ + [1]={ + id=511, + orbit=3 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=7, + orbitIndex=2, + skill=44902, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [44917]={ + connections={ + [1]={ + id=34984, + orbit=0 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Self Mortification", + orbit=7, + orbitIndex=0, + skill=44917, + stats={ + [1]="Gain additional Stun Threshold equal to 20% of maximum Energy Shield", + [2]="20% increased Stun Threshold while on Full Life" + } + }, + [44932]={ + connections={ + [1]={ + id=54984, + orbit=0 + } + }, + group=1325, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Effect", + orbit=3, + orbitIndex=4, + skill=44932, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [44948]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=675, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=44948 + }, + [44951]={ + connections={ + [1]={ + id=5777, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isSwitchable=true, + name="Minion Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + id=48248, + name="Armour and Energy Shield", + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + } + }, + orbit=4, + orbitIndex=9, + skill=44951, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [44952]={ + connections={ + [1]={ + id=9163, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Made to Last", + orbit=3, + orbitIndex=11, + skill=44952, + stats={ + [1]="30% increased Armour", + [2]="5% of Physical Damage prevented Recouped as Life" + } + }, + [44974]={ + connections={ + }, + group=1219, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + isNotable=true, + name="Hail", + orbit=0, + orbitIndex=0, + skill=44974, + stats={ + [1]="Empowered Attacks Gain 16% of Damage as Extra Cold Damage" + } + }, + [44983]={ + connections={ + [1]={ + id=3685, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=2, + orbitIndex=22, + skill=44983, + stats={ + [1]="+3 to all Attributes" + } + }, + [45012]={ + connections={ + [1]={ + id=8246, + orbit=0 + }, + [2]={ + id=64462, + orbit=0 + }, + [3]={ + id=41017, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=3, + orbitIndex=12, + skill=45012, + stats={ + [1]="10% increased Attack Damage" + } + }, + [45013]={ + connections={ + [1]={ + id=58884, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Finishing Blows", + orbit=7, + orbitIndex=4, + skill=45013, + stats={ + [1]="60% increased Damage with Hits against Enemies that are on Low Life", + [2]="30% increased Stun Buildup against Enemies that are on Low Life" + } + }, + [45019]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=956, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=45019 + }, + [45037]={ + connections={ + [1]={ + id=9736, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=7, + orbitIndex=17, + skill=45037, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [45075]={ + connections={ + [1]={ + id=43507, + orbit=0 + }, + [2]={ + id=27439, + orbit=0 + } + }, + group=299, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=7, + orbitIndex=8, + skill=45075, + stats={ + [1]="5% increased Attack Damage", + [2]="6% increased Accuracy Rating" + } + }, + [45086]={ + connections={ + [1]={ + id=34520, + orbit=0 + } + }, + group=970, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical as Extra Chaos Damage", + orbit=2, + orbitIndex=21, + skill=45086, + stats={ + [1]="Gain 3% of Physical Damage as extra Chaos Damage" + } + }, + [45090]={ + connections={ + [1]={ + id=36027, + orbit=0 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Attack Damage", + orbit=7, + orbitIndex=19, + skill=45090, + stats={ + [1]="12% increased Attack Damage" + } + }, + [45100]={ + connections={ + [1]={ + id=56928, + orbit=-3 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Flask Duration", + orbit=4, + orbitIndex=37, + skill=45100, + stats={ + [1]="5% increased Flask Effect Duration", + [2]="2% increased Attack Speed" + } + }, + [45111]={ + connections={ + [1]={ + id=14446, + orbit=0 + } + }, + group=1267, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Duration", + orbit=7, + orbitIndex=2, + skill=45111, + stats={ + [1]="20% increased Curse Duration" + } + }, + [45137]={ + connections={ + [1]={ + id=44487, + orbit=0 + } + }, + group=1005, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=7, + orbitIndex=8, + skill=45137, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [45162]={ + connections={ + [1]={ + id=24801, + orbit=7 + }, + [2]={ + id=63031, + orbit=-2 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Presence Area", + orbit=7, + orbitIndex=18, + skill=45162, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [45177]={ + connections={ + }, + group=589, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Strike True", + orbit=2, + orbitIndex=4, + skill=45177, + stats={ + [1]="20% increased Accuracy Rating", + [2]="+10 to Dexterity" + } + }, + [45193]={ + connections={ + [1]={ + id=4083, + orbit=0 + } + }, + group=1125, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=2, + orbitIndex=17, + skill=45193, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [45202]={ + connections={ + [1]={ + id=59093, + orbit=0 + } + }, + flavourText="A wooden construct, mute and blind.\nBut fear the wrath of shackled mind.", + group=259, + icon="Art/2DArt/SkillIcons/passives/totemmax.png", + isKeystone=true, + name="Ancestral Bond", + orbit=0, + orbitIndex=0, + skill=45202, + stats={ + [1]="Your Totem Limit is doubled\nNo Charge requirement for placing Totems\nTotems reserve 75 Spirit each" + } + }, + [45215]={ + connections={ + [1]={ + id=53187, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Attack Damage with Ally", + orbit=2, + orbitIndex=2, + skill=45215, + stats={ + [1]="Allies in your Presence deal 8% increased Damage", + [2]="8% increased Attack Damage while you have an Ally in your Presence" + } + }, + [45226]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=21218, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=24, + skill=45226, + stats={ + [1]="16% increased Damage with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [45227]={ + connections={ + [1]={ + id=42111, + orbit=0 + } + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=1, + skill=45227, + stats={ + [1]="Break 20% increased Armour" + } + }, + [45228]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=39887, + orbit=4 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Companion Life and Area", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=14, + skill=45228, + stats={ + [1]="Companions have 10% increased Area of Effect", + [2]="Companions have 15% increased maximum Life" + } + }, + [45230]={ + connections={ + [1]={ + id=28229, + orbit=0 + } + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Area", + orbit=2, + orbitIndex=4, + skill=45230, + stats={ + [1]="10% increased Area of Effect of Curses" + } + }, + [45244]={ + connections={ + [1]={ + id=23343, + orbit=0 + }, + [2]={ + id=41016, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Refills", + orbit=2, + orbitIndex=16, + skill=45244, + stats={ + [1]="Life Flasks gain 0.15 charges per Second" + } + }, + [45248]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=14429, + orbit=0 + } + }, + group=407, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Skill Gem Quality", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=45248, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [45272]={ + connections={ + [1]={ + id=42280, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=5, + orbitIndex=0, + skill=45272, + stats={ + [1]="+3 to all Attributes" + } + }, + [45278]={ + connections={ + [1]={ + id=38138, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="Reduced Attribute Requirements", + orbit=7, + orbitIndex=14, + skill=45278, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [45301]={ + connections={ + [1]={ + id=31724, + orbit=0 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=2, + orbitIndex=18, + skill=45301, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [45304]={ + connections={ + [1]={ + id=6078, + orbit=-4 + } + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=3, + orbitIndex=18, + skill=45304, + stats={ + [1]="10% increased Poison Duration" + } + }, + [45319]={ + connections={ + [1]={ + id=55041, + orbit=0 + }, + [2]={ + id=26135, + orbit=0 + }, + [3]={ + id=3251, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Damage", + orbit=3, + orbitIndex=16, + skill=45319, + stats={ + [1]="8% increased Spell Damage" + } + }, + [45327]={ + connections={ + [1]={ + id=10251, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=3, + orbitIndex=16, + skill=45327, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [45329]={ + connections={ + [1]={ + id=2128, + orbit=0 + }, + [2]={ + id=40626, + orbit=0 + } + }, + group=1228, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + isNotable=true, + name="Delayed Danger", + orbit=0, + orbitIndex=0, + skill=45329, + stats={ + [1]="30% increased Hazard Duration", + [2]="40% increased Hazard Damage" + } + }, + [45331]={ + connections={ + [1]={ + id=23221, + orbit=7 + }, + [2]={ + id=60323, + orbit=9 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Chaining Projectiles", + orbit=7, + orbitIndex=21, + skill=45331, + stats={ + [1]="Projectiles have 5% chance to Chain an additional time from terrain" + } + }, + [45333]={ + connections={ + [1]={ + id=59781, + orbit=-2 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png", + name="Archon Effect", + orbit=2, + orbitIndex=6, + skill=45333, + stats={ + [1]="15% increased effect of Archon Buffs on you" + } + }, + [45343]={ + connections={ + [1]={ + id=50483, + orbit=0 + }, + [2]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Area", + orbit=7, + orbitIndex=19, + skill=45343, + stats={ + [1]="Minions have 8% increased Area of Effect" + } + }, + [45350]={ + connections={ + [1]={ + id=3438, + orbit=0 + } + }, + group=915, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Invocation Spell Damage", + orbit=7, + orbitIndex=6, + skill=45350, + stats={ + [1]="Invocated Spells deal 15% increased Damage" + } + }, + [45354]={ + connections={ + [1]={ + id=64948, + orbit=0 + }, + [2]={ + id=21568, + orbit=0 + } + }, + group=301, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Aura Effect", + orbit=2, + orbitIndex=18, + skill=45354, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [45363]={ + connections={ + [1]={ + id=31292, + orbit=0 + }, + [2]={ + id=58528, + orbit=0 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + isNotable=true, + name="Smash", + orbit=3, + orbitIndex=23, + skill=45363, + stats={ + [1]="20% increased Melee Damage", + [2]="40% increased Melee Damage against Heavy Stunned enemies" + } + }, + [45370]={ + connections={ + }, + group=1238, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.png", + isNotable=true, + name="The Raging Ox", + orbit=2, + orbitIndex=16, + skill=45370, + stats={ + [1]="Hits against you have 30% reduced Critical Damage Bonus", + [2]="15% reduced Duration of Ailments on You", + [3]="+10 to Strength" + } + }, + [45382]={ + connections={ + [1]={ + id=53265, + orbit=0 + } + }, + group=1429, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Ailment Chance and Elemental Damage", + orbit=3, + orbitIndex=3, + skill=45382, + stats={ + [1]="10% increased Elemental Damage", + [2]="6% increased chance to inflict Ailments" + } + }, + [45383]={ + connections={ + [1]={ + id=23930, + orbit=0 + }, + [2]={ + id=30662, + orbit=0 + } + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=4, + orbitIndex=36, + skill=45383, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [45390]={ + connections={ + [1]={ + id=13624, + orbit=0 + }, + [2]={ + id=28258, + orbit=2 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Use Speed", + orbit=2, + orbitIndex=7, + skill=45390, + stats={ + [1]="Mark Skills have 10% increased Use Speed" + } + }, + [45400]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=59908, + orbit=0 + }, + [2]={ + id=13691, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Mighty Trunk", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=45400, + stats={ + [1]="Totems gain +3% to all Maximum Elemental Resistances", + [2]="20% increased Area of Effect for Skills used by Totems" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [45422]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Anger Management", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=45422, + stats={ + [1]="+15 to Maximum Rage", + [2]="200% faster start of inherent Rage loss" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [45481]={ + connections={ + [1]={ + id=52765, + orbit=0 + } + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=16, + skill=45481, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [45488]={ + connections={ + [1]={ + id=4377, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + isNotable=true, + name="Cross Strike", + orbit=3, + orbitIndex=15, + skill=45488, + stats={ + [1]="20% increased Accuracy Rating while Dual Wielding", + [2]="3% increased Movement Speed while Dual Wielding" + } + }, + [45494]={ + connections={ + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Immobilisation Buildup", + orbit=3, + orbitIndex=9, + skill=45494, + stats={ + [1]="20% increased Ballista Immobilisation buildup" + } + }, + [45497]={ + connections={ + [1]={ + id=13333, + orbit=-7 + }, + [2]={ + id=17057, + orbit=0 + }, + [3]={ + id=61170, + orbit=7 + } + }, + group=698, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=0, + orbitIndex=0, + skill=45497, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [45503]={ + connections={ + [1]={ + id=37746, + orbit=4 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=0, + skill=45503, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [45522]={ + connections={ + [1]={ + id=22314, + orbit=5 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + isSwitchable=true, + name="Infused Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + id=40885, + name="Chaos Damage", + stats={ + [1]="10% increased Chaos Damage" + } + } + }, + orbit=3, + orbitIndex=6, + skill=45522, + stats={ + [1]="12% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [45530]={ + connections={ + [1]={ + id=55180, + orbit=-7 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Stun Buildup", + orbit=7, + orbitIndex=18, + skill=45530, + stats={ + [1]="Minions cause 15% increased Stun Buildup" + } + }, + [45569]={ + connections={ + [1]={ + id=55596, + orbit=0 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Spell Critical Damage", + orbit=2, + orbitIndex=22, + skill=45569, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [45570]={ + connections={ + [1]={ + id=43713, + orbit=0 + }, + [2]={ + id=29009, + orbit=0 + } + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Area", + orbit=7, + orbitIndex=18, + skill=45570, + stats={ + [1]="Offering Skills have 20% increased Area of Effect" + } + }, + [45576]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=7, + orbitIndex=3, + skill=45576 + }, + [45585]={ + connections={ + [1]={ + id=55617, + orbit=0 + }, + [2]={ + id=37258, + orbit=5 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Armour and Evasion while Surrounded", + orbit=3, + orbitIndex=23, + skill=45585, + stats={ + [1]="20% increased Armour while Surrounded", + [2]="20% increased Evasion Rating while Surrounded" + } + }, + [45586]={ + connections={ + [1]={ + id=14761, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Ally Attack Damage", + orbit=2, + orbitIndex=10, + skill=45586, + stats={ + [1]="Allies in your Presence deal 16% increased Damage" + } + }, + [45599]={ + connections={ + [1]={ + id=6689, + orbit=0 + }, + [2]={ + id=32885, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Lay Siege", + orbit=7, + orbitIndex=12, + skill=45599, + stats={ + [1]="1% increased Damage per 1% Chance to Block" + } + }, + [45602]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=32705, + orbit=-9 + } + }, + flavourText="\"Kelari, you deceiver! I fell for your words, but no longer. Your sentence is a fate too good for you! I would give anything to bring back those who fell to your lies. Instead... I mourn my choices.\"\n\nNavira lambasted Kelari a final time.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.png", + isNotable=true, + name="Navira's Oasis", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=7, + orbitIndex=7, + skill=45602, + stats={ + [1]="Grants Skill: Navira's Oasis" + } + }, + [45609]={ + connections={ + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=3, + orbitIndex=20, + skill=45609, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [45612]={ + connections={ + [1]={ + id=53901, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Defensive Reflexes", + orbit=2, + orbitIndex=12, + skill=45612, + stats={ + [1]="12% increased Block chance", + [2]="5 Mana gained when you Block" + } + }, + [45631]={ + connections={ + [1]={ + id=3630, + orbit=-5 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield Delay", + orbit=7, + orbitIndex=14, + skill=45631, + stats={ + [1]="12% increased Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [45632]={ + connections={ + [1]={ + id=24551, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Mind Eraser", + orbit=7, + orbitIndex=19, + skill=45632, + stats={ + [1]="20% increased Mana Regeneration Rate", + [2]="15% increased Mana Cost Efficiency" + } + }, + [45650]={ + connections={ + [1]={ + id=9572, + orbit=0 + }, + [2]={ + id=36997, + orbit=0 + } + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage if Projectile Hit", + orbit=3, + orbitIndex=14, + skill=45650, + stats={ + [1]="15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" + } + }, + [45693]={ + connections={ + [1]={ + id=64851, + orbit=0 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Shield Defences", + orbit=0, + orbitIndex=0, + skill=45693, + stats={ + [1]="25% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [45702]={ + connections={ + [1]={ + id=61333, + orbit=-3 + }, + [2]={ + id=31692, + orbit=3 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=19, + skill=45702, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [45709]={ + connections={ + [1]={ + id=52803, + orbit=0 + } + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charges", + orbit=7, + orbitIndex=21, + skill=45709, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [45712]={ + connections={ + [1]={ + id=65009, + orbit=0 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Flammability Magnitude", + orbit=5, + orbitIndex=60, + skill=45712, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="8% increased Elemental Damage" + } + }, + [45713]={ + connections={ + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + isNotable=true, + name="Savouring", + orbit=0, + orbitIndex=0, + skill=45713, + stats={ + [1]="20% increased Flask Effect Duration", + [2]="20% chance for Flasks you use to not consume Charges" + } + }, + [45736]={ + connections={ + [1]={ + id=15825, + orbit=-3 + } + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=12, + skill=45736, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [45751]={ + connections={ + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Frightening Shield", + orbit=2, + orbitIndex=0, + skill=45751, + stats={ + [1]="Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised" + } + }, + [45774]={ + connections={ + [1]={ + id=54975, + orbit=3 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect", + orbit=4, + orbitIndex=71, + skill=45774, + stats={ + [1]="Debuffs you inflict have 5% increased Slow Magnitude" + } + }, + [45777]={ + connections={ + [1]={ + id=47212, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Hidden Barb", + orbit=2, + orbitIndex=16, + skill=45777, + stats={ + [1]="20% increased chance to inflict Ailments", + [2]="20% increased Physical Damage" + } + }, + [45798]={ + connections={ + [1]={ + id=62578, + orbit=-7 + }, + [2]={ + id=46615, + orbit=7 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=3, + orbitIndex=13, + skill=45798, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [45808]={ + connections={ + [1]={ + id=35623, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=7, + orbitIndex=6, + skill=45808, + stats={ + [1]="+4% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [45824]={ + connections={ + [1]={ + id=61441, + orbit=0 + }, + [2]={ + id=8493, + orbit=0 + } + }, + group=599, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Damage", + orbit=0, + orbitIndex=0, + skill=45824, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [45874]={ + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Proliferating Weeds", + orbit=5, + orbitIndex=48, + skill=45874, + stats={ + [1]="Fissure Skills have +1 to Limit" + } + }, + [45885]={ + connections={ + [1]={ + id=54521, + orbit=0 + }, + [2]={ + id=59362, + orbit=0 + }, + [3]={ + id=45497, + orbit=4 + }, + [4]={ + id=13359, + orbit=9 + } + }, + group=726, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=45885, + stats={ + [1]="+5 to any Attribute" + } + }, + [45899]={ + connections={ + [1]={ + id=968, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage and Area", + orbit=3, + orbitIndex=5, + skill=45899, + stats={ + [1]="6% increased Fire Damage", + [2]="5% increased Area of Effect" + } + }, + [45916]={ + connections={ + [1]={ + id=27501, + orbit=-4 + }, + [2]={ + id=19330, + orbit=4 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=5, + orbitIndex=48, + skill=45916, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [45918]={ + connections={ + }, + flavourText="While the mind endures, so too will the body.", + group=424, + icon="Art/2DArt/SkillIcons/passives/heroicspirit.png", + isKeystone=true, + name="Mind Over Matter", + orbit=0, + orbitIndex=0, + skill=45918, + stats={ + [1]="All Damage is taken from Mana before Life\n50% less Mana Recovery Rate" + } + }, + [45923]={ + connections={ + [1]={ + id=50084, + orbit=0 + }, + [2]={ + id=52319, + orbit=0 + } + }, + group=624, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=31, + skill=45923, + stats={ + [1]="+5 to any Attribute" + } + }, + [45962]={ + connections={ + [1]={ + id=7183, + orbit=-6 + }, + [2]={ + id=15617, + orbit=0 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Recovery", + orbit=3, + orbitIndex=23, + skill=45962, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [45969]={ + connections={ + [1]={ + id=28693, + orbit=-7 + }, + [2]={ + id=24880, + orbit=0 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=36, + skill=45969, + stats={ + [1]="+5 to any Attribute" + } + }, + [45990]={ + connections={ + [1]={ + id=39448, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Attack Speed", + orbit=3, + orbitIndex=23, + skill=45990, + stats={ + [1]="4% increased Attack Speed with Axes" + } + }, + [45992]={ + connections={ + [1]={ + id=41657, + orbit=0 + } + }, + group=467, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=12, + skill=45992, + stats={ + [1]="15% increased Armour" + } + }, + [46016]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=24039, + orbit=7 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=54, + skill=46016, + stats={ + [1]="3% increased maximum Life" + } + }, + [46017]={ + connections={ + [1]={ + id=54962, + orbit=0 + } + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration while Stationary", + orbit=7, + orbitIndex=0, + skill=46017, + stats={ + [1]="15% increased Life Regeneration Rate while stationary" + } + }, + [46023]={ + connections={ + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=3, + skill=46023, + stats={ + [1]="15% increased Armour" + } + }, + [46024]={ + connections={ + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Sigil of Lightning", + orbit=4, + orbitIndex=44, + skill=46024, + stats={ + [1]="30% increased Damage with Hits against Shocked Enemies" + } + }, + [46034]={ + connections={ + [1]={ + id=41029, + orbit=0 + }, + [2]={ + id=10552, + orbit=0 + } + }, + group=1031, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=46034, + stats={ + [1]="+5 to any Attribute" + } + }, + [46051]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern.png", + connections={ + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=46051 + }, + [46060]={ + connections={ + [1]={ + id=29270, + orbit=-2 + }, + [2]={ + id=7488, + orbit=0 + } + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Voracious", + orbit=7, + orbitIndex=0, + skill=46060, + stats={ + [1]="15% increased Attack Speed while Leeching" + } + }, + [46069]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6088, + orbit=0 + } + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=0, + skill=46069, + stats={ + [1]="12% increased Magnitude of Poison you inflict" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [46070]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=62424, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.png", + isNotable=true, + name="Primal Bounty", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=38, + skill=46070, + stats={ + [1]="Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3\nExpend an Owl Feather when you Dodge to trigger Primal Bounty", + [2]="Grants Skill: Primal Bounty" + } + }, + [46071]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=9294, + orbit=0 + } + }, + group=1546, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Accuracy", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=46071, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [46088]={ + connections={ + [1]={ + id=13823, + orbit=0 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Chance", + orbit=3, + orbitIndex=9, + skill=46088, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [46091]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=30265, + orbit=-9 + }, + [2]={ + id=64223, + orbit=6 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.png", + isNotable=true, + name="The Fourth Teaching", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=56, + skill=46091, + stats={ + [1]="-1 second to base Energy Shield Recharge delay", + [2]="40% more Energy Shield Recharge Rate while on Low Energy Shield" + } + }, + [46124]={ + connections={ + [1]={ + id=37593, + orbit=0 + } + }, + group=849, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.png", + isNotable=true, + name="Arcane Remnants", + orbit=7, + orbitIndex=10, + skill=46124, + stats={ + [1]="Recover 3% of Maximum Mana when you collect a Remnant" + } + }, + [46146]={ + connections={ + [1]={ + id=43691, + orbit=0 + } + }, + group=1088, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=7, + orbitIndex=4, + skill=46146, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [46152]={ + connections={ + [1]={ + id=40110, + orbit=4 + } + }, + group=1469, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png", + name="Blind Effect", + orbit=1, + orbitIndex=6, + skill=46152, + stats={ + [1]="10% increased Blind Effect" + } + }, + [46157]={ + connections={ + [1]={ + id=37806, + orbit=0 + } + }, + group=1008, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Skill Chain Chance", + orbit=0, + orbitIndex=0, + skill=46157, + stats={ + [1]="20% chance for Lightning Skills to Chain an additional time" + } + }, + [46171]={ + connections={ + [1]={ + id=61421, + orbit=7 + } + }, + group=1440, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Critical Chance", + orbit=7, + orbitIndex=13, + skill=46171, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [46182]={ + connections={ + [1]={ + id=42460, + orbit=4 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Intense Dose", + orbit=0, + orbitIndex=0, + skill=46182, + stats={ + [1]="20% increased chance to inflict Ailments", + [2]="15% increased Duration of Damaging Ailments on Enemies" + } + }, + [46197]={ + connections={ + [1]={ + id=39237, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Careful Assassin", + orbit=2, + orbitIndex=7, + skill=46197, + stats={ + [1]="20% reduced Critical Damage Bonus", + [2]="50% increased Critical Hit Chance" + } + }, + [46205]={ + connections={ + [1]={ + id=2174, + orbit=7 + }, + [2]={ + id=33209, + orbit=-7 + }, + [3]={ + id=51683, + orbit=-7 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=3, + orbitIndex=0, + skill=46205, + stats={ + [1]="15% increased Totem Damage" + } + }, + [46224]={ + connections={ + [1]={ + id=24045, + orbit=0 + }, + [2]={ + id=45019, + orbit=0 + } + }, + group=956, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Arcane Alchemy", + orbit=2, + orbitIndex=2, + skill=46224, + stats={ + [1]="Mana Flasks gain 0.1 charges per Second", + [2]="+10 to Intelligence" + } + }, + [46268]={ + connections={ + [1]={ + id=5324, + orbit=-5 + }, + [2]={ + id=2397, + orbit=0 + } + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage while no remaining Life Flasks", + orbit=7, + orbitIndex=8, + skill=46268, + stats={ + [1]="20% increased Attack Damage while you have no Life Flask uses left" + } + }, + [46275]={ + connections={ + [1]={ + id=3894, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=4, + orbitIndex=35, + skill=46275, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [46296]={ + connections={ + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Short Shot", + orbit=1, + orbitIndex=4, + skill=46296, + stats={ + [1]="10% reduced Projectile Speed", + [2]="20% increased Projectile Damage" + } + }, + [46300]={ + connections={ + [1]={ + id=63021, + orbit=0 + }, + [2]={ + id=52774, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=14, + skill=46300, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [46318]={ + connections={ + [1]={ + id=32964, + orbit=3 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=7, + skill=46318, + stats={ + [1]="+6% of Armour also applies to Elemental Damage", + [2]="3% faster start of Energy Shield Recharge" + } + }, + [46325]={ + connections={ + [1]={ + id=3936, + orbit=0 + }, + [2]={ + id=33556, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=5, + skill=46325, + stats={ + [1]="10% increased Melee Damage" + } + }, + [46343]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + connections={ + [1]={ + id=13708, + orbit=0 + }, + [2]={ + id=25513, + orbit=0 + }, + [3]={ + id=47363, + orbit=0 + } + }, + group=731, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=46343 + }, + [46358]={ + connections={ + [1]={ + id=50423, + orbit=0 + }, + [2]={ + id=59376, + orbit=0 + }, + [3]={ + id=59442, + orbit=-5 + } + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=66, + skill=46358, + stats={ + [1]="+5 to any Attribute" + } + }, + [46365]={ + connections={ + }, + group=639, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + isNotable=true, + name="Gigantic Following", + orbit=0, + orbitIndex=0, + skill=46365, + stats={ + [1]="Your Minions are Gigantic", + [2]="25% reduced Reservation Efficiency of Minion Skills" + } + }, + [46380]={ + connections={ + [1]={ + id=21327, + orbit=0 + } + }, + group=319, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Energy Shield if Consumed Power Charge", + orbit=2, + orbitIndex=22, + skill=46380, + stats={ + [1]="20% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [46384]={ + connections={ + [1]={ + id=18746, + orbit=-5 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Wide Barrier", + orbit=4, + orbitIndex=24, + skill=46384, + stats={ + [1]="20% reduced Armour", + [2]="30% increased Block chance" + } + }, + [46386]={ + connections={ + [1]={ + id=39986, + orbit=0 + } + }, + group=1486, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=46386, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [46399]={ + connections={ + [1]={ + id=589, + orbit=0 + }, + [2]={ + id=50820, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Rage on Melee Hit", + orbit=7, + orbitIndex=11, + skill=46399, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [46402]={ + connections={ + [1]={ + id=18923, + orbit=0 + }, + [2]={ + id=37220, + orbit=0 + }, + [3]={ + id=50342, + orbit=0 + } + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=13, + skill=46402, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [46421]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=46421 + }, + [46431]={ + connections={ + [1]={ + id=11015, + orbit=0 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=0, + orbitIndex=0, + skill=46431, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [46454]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1527, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.png", + isNotable=true, + name="Traveller's Wisdom", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=46454, + stats={ + [1]="Attribute Passive Skills can instead grant 5% increased Damage\nAttribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield\nAttribute Passive Skills can instead grant 5% increased Cost Efficiency" + } + }, + [46475]={ + connections={ + [1]={ + id=18186, + orbit=5 + }, + [2]={ + id=51299, + orbit=0 + }, + [3]={ + id=16385, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=4, + orbitIndex=63, + skill=46475, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [46499]={ + connections={ + }, + group=207, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Guts", + orbit=0, + orbitIndex=0, + skill=46499, + stats={ + [1]="Recover 3% of maximum Life for each Endurance Charge consumed", + [2]="+1 to Maximum Endurance Charges" + } + }, + [46522]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=44746, + orbit=0 + } + }, + group=349, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Pin Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=46522, + stats={ + [1]="20% increased Pin Buildup" + } + }, + [46533]={ + connections={ + [1]={ + id=28329, + orbit=3 + } + }, + group=1276, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + name="Stun and Freeze Buildup", + orbit=2, + orbitIndex=18, + skill=46533, + stats={ + [1]="15% increased Stun Buildup", + [2]="15% increased Freeze Buildup" + } + }, + [46535]={ + ascendancyName="Witchhunter", + connections={ + }, + group=279, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.png", + isNotable=true, + name="No Mercy", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=46535, + stats={ + [1]="Deal up to 40% more Damage to Enemies based on their missing Concentration" + } + }, + [46554]={ + connections={ + [1]={ + id=62677, + orbit=0 + }, + [2]={ + id=36379, + orbit=0 + }, + [3]={ + id=10131, + orbit=0 + }, + [4]={ + id=42999, + orbit=-3 + } + }, + group=933, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=46554, + stats={ + [1]="+5 to any Attribute" + } + }, + [46561]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + connections={ + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Recovery Mastery", + orbit=2, + orbitIndex=6, + skill=46561 + }, + [46565]={ + connections={ + [1]={ + id=15855, + orbit=0 + } + }, + group=525, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + isNotable=true, + name="Stance Breaker", + orbit=0, + orbitIndex=0, + skill=46565, + stats={ + [1]="25% increased Damage with Swords" + } + }, + [46601]={ + connections={ + [1]={ + id=18568, + orbit=0 + }, + [2]={ + id=43720, + orbit=0 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=2, + orbitIndex=18, + skill=46601, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [46604]={ + connections={ + [1]={ + id=2138, + orbit=7 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=7, + orbitIndex=17, + skill=46604, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [46615]={ + connections={ + [1]={ + id=53177, + orbit=7 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility when Stunned", + orbit=7, + orbitIndex=10, + skill=46615, + stats={ + [1]="50% chance to gain Volatility when you are Stunned" + } + }, + [46628]={ + connections={ + [1]={ + id=40894, + orbit=0 + }, + [2]={ + id=44872, + orbit=0 + }, + [3]={ + id=50184, + orbit=0 + }, + [4]={ + id=25337, + orbit=0 + }, + [5]={ + id=20848, + orbit=-8 + } + }, + group=429, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=67, + skill=46628, + stats={ + [1]="+5 to any Attribute" + } + }, + [46644]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.png", + isNotable=true, + name="Beidat's Will", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=48, + skill=46644, + stats={ + [1]="Reserves 25% of Life", + [2]="+1 to Maximum Spirit per 25 Maximum Life" + } + }, + [46654]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=61983, + orbit=0 + } + }, + group=71, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Elemental Resistances", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=46654, + stats={ + [1]="+3% to all Elemental Resistances" + } + }, + [46665]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=253, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=46665 + }, + [46674]={ + connections={ + [1]={ + id=35921, + orbit=0 + }, + [2]={ + id=64807, + orbit=0 + } + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=16, + skill=46674, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [46683]={ + connections={ + [1]={ + id=30553, + orbit=0 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Inherited Strength ", + orbit=3, + orbitIndex=4, + skill=46683, + stats={ + [1]="Warcries have 15% chance to Empower 3 additional Attacks" + } + }, + [46688]={ + connections={ + [1]={ + id=4238, + orbit=-2 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Attack Speed", + orbit=7, + orbitIndex=1, + skill=46688, + stats={ + [1]="3% increased Attack Speed with One Handed Melee Weapons" + } + }, + [46692]={ + connections={ + [1]={ + id=9393, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + isNotable=true, + name="Efficient Alchemy", + orbit=7, + orbitIndex=16, + skill=46692, + stats={ + [1]="20% increased Flask and Charm Charges gained", + [2]="40% increased Life and Mana Recovery from Flasks while you have an active Charm" + } + }, + [46696]={ + connections={ + [1]={ + id=8629, + orbit=0 + } + }, + group=398, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + isNotable=true, + name="Impair", + orbit=4, + orbitIndex=68, + skill=46696, + stats={ + [1]="25% increased Damage with One Handed Weapons", + [2]="Attacks have 10% chance to Maim on Hit" + } + }, + [46705]={ + connections={ + [1]={ + id=12822, + orbit=0 + } + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage if Melee Hit", + orbit=2, + orbitIndex=6, + skill=46705, + stats={ + [1]="15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" + } + }, + [46741]={ + connections={ + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=22, + skill=46741, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [46742]={ + connections={ + }, + flavourText="Balance is good in all things, but especially in the realm of magic.", + group=494, + icon="Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", + isKeystone=true, + name="Elemental Equilibrium", + orbit=0, + orbitIndex=0, + skill=46742, + stats={ + [1]="Create Lightning Infusion Remnants instead of Fire\nCreate Cold Infusion Remnants instead of Lightning\nCreate Fire Infusion Remnants instead of Cold" + } + }, + [46748]={ + connections={ + [1]={ + id=51206, + orbit=5 + }, + [2]={ + id=60568, + orbit=-5 + } + }, + group=504, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=0, + orbitIndex=0, + skill=46748, + stats={ + [1]="16% increased Totem Life" + } + }, + [46760]={ + connections={ + [1]={ + id=51534, + orbit=0 + }, + [2]={ + id=8631, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=46760, + stats={ + [1]="16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" + } + }, + [46761]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=46761 + }, + [46782]={ + connections={ + [1]={ + id=53698, + orbit=3 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=16, + skill=46782, + stats={ + [1]="10% increased Attack Damage" + } + }, + [46819]={ + connections={ + [1]={ + id=8616, + orbit=0 + }, + [2]={ + id=13909, + orbit=0 + } + }, + group=771, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=46819, + stats={ + [1]="+5 to any Attribute" + } + }, + [46854]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=12033, + orbit=0 + }, + [2]={ + id=42416, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Projectile Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=3, + orbitIndex=8, + skill=46854, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [46857]={ + connections={ + [1]={ + id=52971, + orbit=-2 + } + }, + group=1269, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.png", + name="Energy Shield Delay", + orbit=0, + orbitIndex=0, + skill=46857, + stats={ + [1]="Gain Deflection Rating equal to 4% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge", + [3]="5% increased Mana Cost Efficiency" + } + }, + [46874]={ + connections={ + [1]={ + id=7449, + orbit=0 + }, + [2]={ + id=53696, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Attack Damage", + orbit=7, + orbitIndex=21, + skill=46874, + stats={ + [1]="12% increased Attack Physical Damage" + } + }, + [46882]={ + connections={ + }, + group=1198, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=8, + skill=46882 + }, + [46887]={ + connections={ + [1]={ + id=43720, + orbit=-6 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=3, + orbitIndex=6, + skill=46887, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [46931]={ + connections={ + [1]={ + id=23036, + orbit=0 + }, + [2]={ + id=28175, + orbit=5 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=11, + skill=46931, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [46961]={ + connections={ + [1]={ + id=5191, + orbit=0 + } + }, + group=1187, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Attack Speed", + orbit=0, + orbitIndex=0, + skill=46961, + stats={ + [1]="3% increased Attack Speed" + } + }, + [46972]={ + connections={ + [1]={ + id=54783, + orbit=0 + } + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Arcane Mixtures", + orbit=7, + orbitIndex=23, + skill=46972, + stats={ + [1]="10% increased Cast Speed if you've used a Mana Flask Recently", + [2]="Mana Flasks gain 0.1 charges per Second" + } + }, + [46989]={ + connections={ + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=7, + orbitIndex=12, + skill=46989, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [46990]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=3987, + orbit=0 + }, + [2]={ + id=39723, + orbit=0 + }, + [3]={ + id=49165, + orbit=0 + }, + [4]={ + id=24295, + orbit=0 + }, + [5]={ + id=61461, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Deadeye", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=48, + skill=46990 + }, + [47006]={ + connections={ + [1]={ + id=43174, + orbit=7 + } + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=3, + orbitIndex=14, + skill=47006, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [47009]={ + connections={ + [1]={ + id=37250, + orbit=-7 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage", + orbit=7, + orbitIndex=11, + skill=47009, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [47021]={ + connections={ + [1]={ + id=36217, + orbit=0 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility Detonation Time", + orbit=2, + orbitIndex=0, + skill=47021, + stats={ + [1]="15% increased Volatility Explosion delay" + } + }, + [47088]={ + connections={ + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Sic 'Em", + orbit=4, + orbitIndex=0, + skill=47088, + stats={ + [1]="Companions deal 60% increased damage against Immobilised enemies" + } + }, + [47097]={ + ascendancyName="Warbringer", + connections={ + }, + group=53, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.png", + isNotable=true, + name="Warcaller's Bellow", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=47097, + stats={ + [1]="Warcries Explode Corpses dealing 25% of their Life as Physical Damage", + [2]="Ignore Warcry Cooldowns" + } + }, + [47150]={ + connections={ + [1]={ + id=56910, + orbit=-5 + } + }, + group=788, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=16, + skill=47150, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [47155]={ + connections={ + [1]={ + id=35896, + orbit=0 + }, + [2]={ + id=63545, + orbit=2 + }, + [3]={ + id=17394, + orbit=-2 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=3, + skill=47155, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [47157]={ + connections={ + [1]={ + id=61347, + orbit=4 + }, + [2]={ + id=54818, + orbit=0 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=12, + skill=47157, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies further than 6m" + } + }, + [47168]={ + connections={ + [1]={ + id=6006, + orbit=-4 + }, + [2]={ + id=54521, + orbit=0 + }, + [3]={ + id=55412, + orbit=-4 + }, + [4]={ + id=25570, + orbit=0 + } + }, + group=569, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47168, + stats={ + [1]="+5 to any Attribute" + } + }, + [47173]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=47173 + }, + [47175]={ + classesStart={ + [1]="Marauder", + [2]="Warrior" + }, + connections={ + [1]={ + id=5852, + orbit=0 + }, + [2]={ + id=33812, + orbit=0 + }, + [3]={ + id=32534, + orbit=0 + }, + [4]={ + id=3936, + orbit=0 + }, + [5]={ + id=38646, + orbit=0 + } + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/blankStr.png", + name="MARAUDER", + orbit=0, + orbitIndex=0, + skill=47175 + }, + [47177]={ + connections={ + }, + group=935, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47177, + stats={ + [1]="+5 to any Attribute" + } + }, + [47184]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=17, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.png", + isNotable=true, + name="Living Weapon", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=47184, + stats={ + [1]="Grants Skill: Manifest Weapon" + } + }, + [47190]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=32905, + orbit=6 + } + }, + group=38, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Passive Point", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=47190, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [47191]={ + connections={ + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=4, + orbitIndex=58, + skill=47191, + stats={ + [1]="12% increased Fire Damage" + } + }, + [47212]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=47212 + }, + [47235]={ + connections={ + [1]={ + id=24570, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blinded Enemies Critical", + orbit=7, + orbitIndex=22, + skill=47235, + stats={ + [1]="Enemies Blinded by you have 15% reduced Critical Hit Chance" + } + }, + [47236]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=60298, + orbit=0 + } + }, + group=16, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png", + name="Melee Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=47236, + stats={ + [1]="20% increased Melee Damage" + } + }, + [47242]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=47242 + }, + [47252]={ + connections={ + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=7, + orbitIndex=16, + skill=47252, + stats={ + [1]="16% increased Mana Regeneration Rate while stationary" + } + }, + [47263]={ + connections={ + [1]={ + id=38707, + orbit=0 + }, + [2]={ + id=18448, + orbit=0 + }, + [3]={ + id=58295, + orbit=0 + }, + [4]={ + id=60068, + orbit=0 + } + }, + group=194, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47263, + stats={ + [1]="+5 to any Attribute" + } + }, + [47270]={ + connections={ + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Inescapable Cold", + orbit=4, + orbitIndex=66, + skill=47270, + stats={ + [1]="40% increased Freeze Buildup", + [2]="20% increased Freeze Duration on Enemies" + } + }, + [47284]={ + connections={ + [1]={ + id=3332, + orbit=0 + } + }, + group=618, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.png", + name="Minion Cold Resistance", + orbit=0, + orbitIndex=0, + skill=47284, + stats={ + [1]="Minions have +20% to Cold Resistance" + } + }, + [47307]={ + connections={ + [1]={ + id=2254, + orbit=5 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=4, + skill=47307, + stats={ + [1]="3% increased Cast Speed" + } + }, + [47312]={ + ascendancyName="Amazon", + connections={ + }, + group=1555, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.png", + isNotable=true, + name="Azmeri Brew", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=47312, + stats={ + [1]="Life Flasks also recover Mana\nMana Flasks also recover Life" + } + }, + [47316]={ + connections={ + [1]={ + id=2888, + orbit=0 + }, + [2]={ + id=28862, + orbit=0 + } + }, + group=435, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + isNotable=true, + name="Goring", + orbit=7, + orbitIndex=19, + skill=47316, + stats={ + [1]="3% increased maximum Life", + [2]="20% increased amount of Life Leeched" + } + }, + [47344]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=3781, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png", + name="Chaos Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=47344, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [47359]={ + connections={ + [1]={ + id=14231, + orbit=-7 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=17, + skill=47359, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [47363]={ + connections={ + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Colossal Weapon", + orbit=4, + orbitIndex=50, + skill=47363, + stats={ + [1]="12% increased Area of Effect for Attacks", + [2]="+10 to Strength" + } + }, + [47371]={ + connections={ + [1]={ + id=7668, + orbit=0 + } + }, + group=367, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage and Bleeding Chance", + orbit=2, + orbitIndex=22, + skill=47371, + stats={ + [1]="5% chance to inflict Bleeding on Hit", + [2]="Empowered Attacks deal 10% increased Damage" + } + }, + [47374]={ + connections={ + [1]={ + id=18049, + orbit=0 + } + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=66, + skill=47374, + stats={ + [1]="Projectiles deal 15% increased Damage with Hits against Enemies within 2m" + } + }, + [47375]={ + connections={ + [1]={ + id=63618, + orbit=5 + } + }, + group=1482, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=47375, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [47418]={ + connections={ + [1]={ + id=23839, + orbit=0 + }, + [2]={ + id=10738, + orbit=0 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Warding Potions", + orbit=2, + orbitIndex=9, + skill=47418, + stats={ + [1]="10% reduced Flask Charges used from Mana Flasks", + [2]="Remove a Curse when you use a Mana Flask" + } + }, + [47420]={ + connections={ + [1]={ + id=11048, + orbit=0 + }, + [2]={ + id=52676, + orbit=7 + } + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + isNotable=true, + name="Expendable Army", + orbit=1, + orbitIndex=9, + skill=47420, + stats={ + [1]="20% increased Minion Duration", + [2]="Temporary Minion Skills have +2 to Limit of Minions summoned" + } + }, + [47429]={ + connections={ + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown", + orbit=6, + orbitIndex=6, + skill=47429, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [47441]={ + connections={ + [1]={ + id=61992, + orbit=0 + } + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + isNotable=true, + name="Stigmata", + orbit=7, + orbitIndex=12, + skill=47441, + stats={ + [1]="Offerings have 30% increased Maximum Life", + [2]="Recover 3% of maximum Life when you create an Offering" + } + }, + [47442]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=65518, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Life Flasks", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=2, + skill=47442, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [47443]={ + connections={ + [1]={ + id=31129, + orbit=0 + } + }, + group=1494, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Reservation", + orbit=0, + orbitIndex=0, + skill=47443, + stats={ + [1]="8% increased Reservation Efficiency of Companion Skills" + } + }, + [47477]={ + connections={ + [1]={ + id=51774, + orbit=0 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility Detonation Time", + orbit=1, + orbitIndex=6, + skill=47477, + stats={ + [1]="15% reduced Volatility Explosion delay" + } + }, + [47514]={ + connections={ + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Dizzying Hits", + orbit=7, + orbitIndex=8, + skill=47514, + stats={ + [1]="10% chance to Daze on Hit", + [2]="25% increased Critical Hit Chance against Dazed Enemies" + } + }, + [47517]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=47517 + }, + [47555]={ + connections={ + [1]={ + id=51184, + orbit=0 + }, + [2]={ + id=18407, + orbit=0 + }, + [3]={ + id=39886, + orbit=0 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=22, + skill=47555, + stats={ + [1]="+5 to any Attribute" + } + }, + [47560]={ + connections={ + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Multi Shot", + orbit=8, + orbitIndex=54, + skill=47560, + stats={ + [1]="+24% Surpassing chance to fire an additional Projectile" + } + }, + [47591]={ + connections={ + [1]={ + id=9226, + orbit=-2 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Recoup", + orbit=2, + orbitIndex=16, + skill=47591, + stats={ + [1]="3% of Damage taken Recouped as Mana" + } + }, + [47606]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + connections={ + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + isOnlyImage=true, + name="Rage Mastery", + orbit=0, + orbitIndex=0, + skill=47606 + }, + [47614]={ + connections={ + [1]={ + id=22219, + orbit=-7 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=2, + orbitIndex=22, + skill=47614, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [47623]={ + connections={ + [1]={ + id=38570, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=2, + orbitIndex=14, + skill=47623, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [47633]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57002, + orbit=0 + } + }, + group=479, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=4, + skill=47633, + stats={ + [1]="20% increased Thorns damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [47635]={ + connections={ + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Overload", + orbit=3, + orbitIndex=8, + skill=47635, + stats={ + [1]="Damage Penetrates 10% Lightning Resistance if on Low Mana", + [2]="Damage Penetrates 15% Lightning Resistance" + } + }, + [47677]={ + connections={ + [1]={ + id=9472, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed", + orbit=7, + orbitIndex=17, + skill=47677, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [47683]={ + connections={ + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Chaining Projectiles", + orbit=2, + orbitIndex=23, + skill=47683, + stats={ + [1]="Projectiles have 5% chance to Chain an additional time from terrain" + } + }, + [47709]={ + connections={ + [1]={ + id=63814, + orbit=0 + }, + [2]={ + id=40336, + orbit=0 + } + }, + group=715, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=47709, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [47722]={ + connections={ + [1]={ + id=6514, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Damage", + orbit=3, + orbitIndex=4, + skill=47722, + stats={ + [1]="16% increased Damage with Warcries" + } + }, + [47733]={ + connections={ + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Ailment Chance", + orbit=2, + orbitIndex=7, + skill=47733, + stats={ + [1]="Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments" + } + }, + [47753]={ + connections={ + [1]={ + id=51868, + orbit=-6 + } + }, + group=87, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Penetration", + orbit=0, + orbitIndex=0, + skill=47753, + stats={ + [1]="Damage Penetrates 8% Fire Resistance" + } + }, + [47754]={ + connections={ + [1]={ + id=23455, + orbit=0 + } + }, + group=1063, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=7, + orbitIndex=16, + skill=47754, + stats={ + [1]="10% increased Cold Damage" + } + }, + [47759]={ + connections={ + [1]={ + id=62677, + orbit=0 + } + }, + flavourText="Your grandchildren will awaken screaming in memory of what I utter today.", + group=882, + icon="Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png", + isKeystone=true, + name="Whispers of Doom", + orbit=0, + orbitIndex=0, + skill=47759, + stats={ + [1]="You can apply an additional Curse\nDouble Activation Delay of Curses" + } + }, + [47782]={ + connections={ + [1]={ + id=38003, + orbit=4 + }, + [2]={ + id=28361, + orbit=-4 + } + }, + group=792, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Steady Footing", + orbit=4, + orbitIndex=54, + skill=47782, + stats={ + [1]="40% increased Stun Threshold", + [2]="20% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [47790]={ + connections={ + [1]={ + id=17625, + orbit=0 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=7, + orbitIndex=7, + skill=47790, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [47796]={ + connections={ + [1]={ + id=62640, + orbit=-4 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=12, + skill=47796, + stats={ + [1]="3% increased Attack Speed" + } + }, + [47821]={ + connections={ + [1]={ + id=41033, + orbit=9 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Effect", + orbit=2, + orbitIndex=17, + skill=47821, + stats={ + [1]="Offering Skills have 15% increased Buff effect" + } + }, + [47831]={ + connections={ + [1]={ + id=8734, + orbit=0 + }, + [2]={ + id=49996, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection and Energy Shield Delay", + orbit=2, + orbitIndex=18, + skill=47831, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="5% faster start of Energy Shield Recharge" + } + }, + [47833]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=47833 + }, + [47853]={ + connections={ + }, + group=1420, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.png", + isNotable=true, + name="Bond of the Mamba", + orbit=0, + orbitIndex=0, + skill=47853, + stats={ + [1]="Gain 4% of Physical Damage as extra Chaos Damage", + [2]="Companions gain 12% Damage as extra Chaos Damage" + } + }, + [47856]={ + connections={ + [1]={ + id=32561, + orbit=0 + } + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=2, + orbitIndex=15, + skill=47856, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [47893]={ + connections={ + [1]={ + id=57774, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Speed", + orbit=2, + orbitIndex=21, + skill=47893, + stats={ + [1]="3% increased Attack Speed while Dual Wielding" + } + }, + [47895]={ + connections={ + [1]={ + id=56493, + orbit=-2 + } + }, + group=1162, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Evasion Rating on Hit Recently", + orbit=2, + orbitIndex=6, + skill=47895, + stats={ + [1]="20% increased Evasion Rating if you have Hit an Enemy Recently" + } + }, + [47931]={ + connections={ + [1]={ + id=33722, + orbit=0 + }, + [2]={ + id=39131, + orbit=0 + }, + [3]={ + id=9324, + orbit=0 + }, + [4]={ + id=53329, + orbit=0 + }, + [5]={ + id=63170, + orbit=0 + } + }, + group=156, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47931, + stats={ + [1]="+5 to any Attribute" + } + }, + [47976]={ + connections={ + [1]={ + id=14446, + orbit=0 + }, + [2]={ + id=37876, + orbit=0 + } + }, + group=1328, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47976, + stats={ + [1]="+5 to any Attribute" + } + }, + [48006]={ + connections={ + [1]={ + id=33604, + orbit=0 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Devastation", + orbit=7, + orbitIndex=9, + skill=48006, + stats={ + [1]="15% increased Attack Area Damage", + [2]="12% increased Area of Effect for Attacks" + } + }, + [48007]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + [1]={ + id=36302, + orbit=0 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=48007 + }, + [48014]={ + connections={ + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Honourless", + orbit=5, + orbitIndex=63, + skill=48014, + stats={ + [1]="25% increased Armour if you've Hit an Enemy with a Melee Attack Recently", + [2]="50% increased Melee Damage against Immobilised Enemies" + } + }, + [48026]={ + connections={ + [1]={ + id=65439, + orbit=0 + }, + [2]={ + id=6623, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=2, + orbitIndex=14, + skill=48026, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [48030]={ + connections={ + [1]={ + id=62436, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=7, + orbitIndex=1, + skill=48030, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [48035]={ + connections={ + [1]={ + id=11329, + orbit=0 + } + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=3, + skill=48035, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [48079]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=60014, + orbit=-7 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=10, + skill=48079, + stats={ + [1]="10% increased Bleeding Duration", + [2]="20% chance for Attack Hits to apply Incision" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [48103]={ + connections={ + [1]={ + id=52875, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + isNotable=true, + name="Forcewave", + orbit=2, + orbitIndex=8, + skill=48103, + stats={ + [1]="20% increased Stun Buildup", + [2]="20% increased Knockback Distance", + [3]="20% increased Physical Damage" + } + }, + [48116]={ + connections={ + [1]={ + id=21112, + orbit=0 + }, + [2]={ + id=34015, + orbit=0 + }, + [3]={ + id=18624, + orbit=0 + } + }, + group=1434, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48116, + stats={ + [1]="+5 to any Attribute" + } + }, + [48121]={ + connections={ + [1]={ + id=24438, + orbit=-5 + } + }, + group=486, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Elemental Resistance", + orbit=0, + orbitIndex=0, + skill=48121, + stats={ + [1]="Totems gain +12% to all Elemental Resistances" + } + }, + [48135]={ + connections={ + [1]={ + id=12750, + orbit=0 + } + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=7, + orbitIndex=12, + skill=48135, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [48137]={ + connections={ + [1]={ + id=33887, + orbit=0 + } + }, + group=919, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Crossbow Reload Speed", + orbit=4, + orbitIndex=11, + skill=48137, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [48160]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=37778, + orbit=0 + } + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Ally Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=15, + skill=48160, + stats={ + [1]="Allies in your Presence deal 20% increased Damage", + [2]="10% reduced Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [48171]={ + connections={ + }, + group=249, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=4, + orbitIndex=13, + skill=48171, + stats={ + [1]="12% increased Cold Damage" + } + }, + [48198]={ + connections={ + [1]={ + id=29361, + orbit=3 + }, + [2]={ + id=65437, + orbit=-5 + }, + [3]={ + id=40068, + orbit=-6 + }, + [4]={ + id=1215, + orbit=0 + }, + [5]={ + id=13411, + orbit=6 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png", + isNotable=true, + name="Step Like Mist", + orbit=4, + orbitIndex=12, + skill=48198, + stats={ + [1]="4% increased Movement Speed", + [2]="15% increased Mana Regeneration Rate", + [3]="+5 to Dexterity and Intelligence" + } + }, + [48215]={ + connections={ + [1]={ + id=516, + orbit=0 + }, + [2]={ + id=7201, + orbit=0 + }, + [3]={ + id=64488, + orbit=0 + }, + [4]={ + id=61347, + orbit=0 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Headshot", + orbit=0, + orbitIndex=0, + skill=48215, + stats={ + [1]="Projectiles have 30% increased Critical Damage Bonus against Enemies further than 6m", + [2]="Projectiles have 20% increased Critical Hit Chance against Enemies further than 6m", + [3]="25% chance to inflict Daze with Hits against Enemies further than 6m" + } + }, + [48240]={ + connections={ + [1]={ + id=48505, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Quick Recovery", + orbit=3, + orbitIndex=15, + skill=48240, + stats={ + [1]="40% increased Stun Recovery", + [2]="Regenerate 5% of maximum Life over 1 second when Stunned" + } + }, + [48264]={ + connections={ + [1]={ + id=12964, + orbit=0 + } + }, + group=301, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Aura Effect", + orbit=2, + orbitIndex=1, + skill=48264, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [48267]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=48267 + }, + [48290]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + connections={ + [1]={ + id=55180, + orbit=0 + }, + [2]={ + id=49088, + orbit=0 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=2, + orbitIndex=15, + skill=48290 + }, + [48305]={ + connections={ + [1]={ + id=37629, + orbit=6 + } + }, + group=575, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48305, + stats={ + [1]="+5 to any Attribute" + } + }, + [48314]={ + connections={ + [1]={ + id=61896, + orbit=5 + }, + [2]={ + id=3348, + orbit=-7 + }, + [3]={ + id=55897, + orbit=-3 + } + }, + group=102, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Skill Speed", + orbit=0, + orbitIndex=0, + skill=48314, + stats={ + [1]="3% increased Skill Speed while Shapeshifted" + } + }, + [48387]={ + connections={ + [1]={ + id=34415, + orbit=-4 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=5, + orbitIndex=56, + skill=48387, + stats={ + [1]="12% increased Physical Damage" + } + }, + [48401]={ + connections={ + [1]={ + id=35987, + orbit=0 + }, + [2]={ + id=61312, + orbit=0 + }, + [3]={ + id=10909, + orbit=5 + } + }, + group=892, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=48401, + stats={ + [1]="+5 to any Attribute" + } + }, + [48418]={ + connections={ + [1]={ + id=38235, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Hefty Unit", + orbit=2, + orbitIndex=6, + skill=48418, + stats={ + [1]="+3 to Stun Threshold per Strength" + } + }, + [48429]={ + connections={ + [1]={ + id=58714, + orbit=0 + }, + [2]={ + id=36169, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Cooldown Recovery Rate", + orbit=3, + orbitIndex=20, + skill=48429, + stats={ + [1]="15% increased Cooldown Recovery Rate for Grenade Skills" + } + }, + [48462]={ + connections={ + [1]={ + id=11094, + orbit=5 + }, + [2]={ + id=62803, + orbit=5 + } + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Effect", + orbit=7, + orbitIndex=15, + skill=48462, + stats={ + [1]="Charms applied to you have 10% increased Effect" + } + }, + [48505]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=2, + orbitIndex=18, + skill=48505 + }, + [48524]={ + connections={ + [1]={ + id=43818, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + isNotable=true, + name="Blood Transfusion", + orbit=2, + orbitIndex=10, + skill=48524, + stats={ + [1]="25% increased Life Regeneration rate", + [2]="25% of Spell Mana Cost Converted to Life Cost" + } + }, + [48530]={ + connections={ + [1]={ + id=39130, + orbit=0 + }, + [2]={ + id=4623, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Spell Damage and Costs", + orbit=2, + orbitIndex=0, + skill=48530, + stats={ + [1]="6% increased Spell Damage with Spells that cost Life", + [2]="8% of Spell Mana Cost Converted to Life Cost" + } + }, + [48531]={ + connections={ + [1]={ + id=13987, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Attack Speed", + orbit=1, + orbitIndex=7, + skill=48531, + stats={ + [1]="3% increased Melee Attack Speed" + } + }, + [48537]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=25, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.png", + isNotable=true, + name="Forged in Flame", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=48537, + stats={ + [1]="Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance" + } + }, + [48544]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=40166, + orbit=0 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=48544 + }, + [48551]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=52703, + orbit=9 + } + }, + group=909, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Spell Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=48551, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [48552]={ + connections={ + [1]={ + id=43036, + orbit=0 + }, + [2]={ + id=7960, + orbit=0 + }, + [3]={ + id=23825, + orbit=0 + } + }, + group=432, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48552, + stats={ + [1]="+5 to any Attribute" + } + }, + [48565]={ + connections={ + [1]={ + id=47242, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + isNotable=true, + name="Bringer of Order", + orbit=3, + orbitIndex=2, + skill=48565, + stats={ + [1]="20% increased Damage", + [2]="Minions deal 20% increased Damage" + } + }, + [48568]={ + connections={ + [1]={ + id=16489, + orbit=0 + } + }, + group=941, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48568, + stats={ + [1]="+5 to any Attribute" + } + }, + [48581]={ + connections={ + [1]={ + id=33242, + orbit=0 + }, + [2]={ + id=13387, + orbit=0 + } + }, + group=659, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + isNotable=true, + name="Exploit the Elements", + orbit=6, + orbitIndex=0, + skill=48581, + stats={ + [1]="24% increased Damage with Hits against Enemies affected by Elemental Ailments", + [2]="30% increased chance to inflict Ailments against Rare or Unique Enemies" + } + }, + [48583]={ + connections={ + [1]={ + id=58783, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech. Armour and Evasion while Leeching", + orbit=2, + orbitIndex=23, + skill=48583, + stats={ + [1]="6% increased amount of Life Leeched", + [2]="8% increased Armour and Evasion Rating while Leeching" + } + }, + [48585]={ + connections={ + [1]={ + id=20831, + orbit=0 + }, + [2]={ + id=56325, + orbit=0 + } + }, + group=997, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion and Reduced Movement Penalty", + orbit=0, + orbitIndex=0, + skill=48585, + stats={ + [1]="10% increased Evasion Rating", + [2]="2% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [48588]={ + connections={ + [1]={ + id=2455, + orbit=0 + }, + [2]={ + id=13081, + orbit=0 + } + }, + group=764, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=5, + orbitIndex=14, + skill=48588, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [48589]={ + connections={ + [1]={ + id=7922, + orbit=-6 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Recovery", + orbit=2, + orbitIndex=11, + skill=48589, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [48611]={ + connections={ + [1]={ + id=4271, + orbit=0 + }, + [2]={ + id=46554, + orbit=0 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png", + name="Minion Resistances", + orbit=2, + orbitIndex=0, + skill=48611, + stats={ + [1]="Minions have +8% to all Elemental Resistances" + } + }, + [48614]={ + connections={ + [1]={ + id=9018, + orbit=2 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Area and Presence", + orbit=7, + orbitIndex=1, + skill=48614, + stats={ + [1]="20% increased Presence Area of Effect", + [2]="3% reduced Area of Effect" + } + }, + [48617]={ + connections={ + [1]={ + id=1915, + orbit=0 + }, + [2]={ + id=11667, + orbit=0 + }, + [3]={ + id=15839, + orbit=0 + }, + [4]={ + id=6266, + orbit=0 + }, + [5]={ + id=2978, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + isNotable=true, + name="Hunter", + orbit=7, + orbitIndex=3, + skill=48617, + stats={ + [1]="50% increased Damage against Demons", + [2]="50% increased Duration of Ailments on Beasts", + [3]="50% increased Critical Hit Chance against Humanoids", + [4]="50% increased Immobilisation buildup against Constructs" + } + }, + [48618]={ + connections={ + [1]={ + id=37327, + orbit=7 + } + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=12, + skill=48618, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [48631]={ + connections={ + [1]={ + id=35426, + orbit=0 + }, + [2]={ + id=59006, + orbit=-4 + } + }, + group=471, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48631, + stats={ + [1]="+5 to any Attribute" + } + }, + [48635]={ + connections={ + [1]={ + id=63526, + orbit=0 + }, + [2]={ + id=28361, + orbit=4 + }, + [3]={ + id=43444, + orbit=-4 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48635, + stats={ + [1]="+5 to any Attribute" + } + }, + [48649]={ + connections={ + [1]={ + id=51485, + orbit=0 + } + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + isNotable=true, + name="Insulating Hide", + orbit=2, + orbitIndex=22, + skill=48649, + stats={ + [1]="20% faster start of Energy Shield Recharge while Shapeshifted", + [2]="+20% of Armour also applies to Elemental Damage while Shapeshifted" + } + }, + [48658]={ + connections={ + }, + group=1089, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Shattering", + orbit=0, + orbitIndex=0, + skill=48658, + stats={ + [1]="30% increased Freeze Buildup", + [2]="20% increased Chill Duration on Enemies", + [3]="20% increased Magnitude of Chill you inflict" + } + }, + [48660]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=48660 + }, + [48670]={ + connections={ + [1]={ + id=13241, + orbit=0 + }, + [2]={ + id=53589, + orbit=0 + }, + [3]={ + id=51299, + orbit=0 + }, + [4]={ + id=49231, + orbit=0 + }, + [5]={ + id=1865, + orbit=0 + } + }, + group=653, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=42, + skill=48670, + stats={ + [1]="+5 to any Attribute" + } + }, + [48682]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=40915, + orbit=4 + } + }, + group=43, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Totem Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=48682, + stats={ + [1]="20% increased Totem Life" + } + }, + [48699]={ + connections={ + [1]={ + id=14601, + orbit=0 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/frostborn.png", + isNotable=true, + name="Frostwalker", + orbit=7, + orbitIndex=6, + skill=48699, + stats={ + [1]="40% reduced Effect of Chill on you", + [2]="Gain 15% of Damage as Extra Cold Damage while on Chilled Ground" + } + }, + [48714]={ + connections={ + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + name="Attack Speed", + orbit=2, + orbitIndex=10, + skill=48714, + stats={ + [1]="3% increased Attack Speed" + } + }, + [48717]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=199, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=7, + orbitIndex=16, + skill=48717 + }, + [48734]={ + connections={ + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.png", + isNotable=true, + name="The Howling Primate", + orbit=3, + orbitIndex=4, + skill=48734, + stats={ + [1]="15% increased Presence Area of Effect", + [2]="Aura Skills have 10% increased Magnitudes", + [3]="+10 to Intelligence" + } + }, + [48745]={ + connections={ + [1]={ + id=22558, + orbit=0 + }, + [2]={ + id=7878, + orbit=-2 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=0, + orbitIndex=0, + skill=48745, + stats={ + [1]="5% increased Block chance" + } + }, + [48761]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=479, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.png", + isOnlyImage=true, + name="Thorns Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=48761, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [48773]={ + connections={ + [1]={ + id=32763, + orbit=0 + }, + [2]={ + id=38493, + orbit=0 + }, + [3]={ + id=41873, + orbit=0 + }, + [4]={ + id=42226, + orbit=0 + }, + [5]={ + id=52800, + orbit=0 + } + }, + group=1460, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=48773, + stats={ + [1]="+5 to any Attribute" + } + }, + [48774]={ + connections={ + [1]={ + id=27492, + orbit=0 + } + }, + group=814, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Taut Flesh", + orbit=0, + orbitIndex=0, + skill=48774, + stats={ + [1]="20% of Physical Damage taken Recouped as Life" + } + }, + [48805]={ + connections={ + [1]={ + id=7782, + orbit=4 + }, + [2]={ + id=26563, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Spell Critical Chance", + orbit=7, + orbitIndex=4, + skill=48805, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [48821]={ + connections={ + [1]={ + id=15618, + orbit=-6 + } + }, + group=778, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + name="Spell Critical Damage", + orbit=2, + orbitIndex=6, + skill=48821, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [48828]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=34840, + orbit=0 + } + }, + group=481, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=4, + skill=48828, + stats={ + [1]="2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [48833]={ + connections={ + [1]={ + id=4, + orbit=0 + } + }, + group=1028, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=48833, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [48836]={ + connections={ + [1]={ + id=33542, + orbit=0 + } + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Surpassing Arrow Chance", + orbit=7, + orbitIndex=16, + skill=48836, + stats={ + [1]="+10% Surpassing chance to fire an additional Arrow" + } + }, + [48846]={ + connections={ + [1]={ + id=44566, + orbit=0 + } + }, + group=897, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=48846, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [48856]={ + connections={ + [1]={ + id=17882, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=7, + orbitIndex=4, + skill=48856, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [48889]={ + connections={ + [1]={ + id=28038, + orbit=0 + }, + [2]={ + id=56488, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=7, + orbitIndex=16, + skill=48889, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [48925]={ + connections={ + [1]={ + id=54887, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + isNotable=true, + name="Blessing of the Moon", + orbit=7, + orbitIndex=0, + skill=48925, + stats={ + [1]="8% increased Skill Effect Duration per Enemy you've Frozen in the last 8 seconds, up to 40%" + } + }, + [48935]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=61367, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Attack Added Lighting Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=3, + skill=48935, + stats={ + [1]="Adds 1 to 7 Lightning damage to Attacks" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [48974]={ + connections={ + [1]={ + id=47418, + orbit=0 + }, + [2]={ + id=10738, + orbit=0 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Altered Brain Chemistry", + orbit=2, + orbitIndex=15, + skill=48974, + stats={ + [1]="25% increased Mana Recovery from Flasks", + [2]="10% increased Mana Recovery Rate during Effect of any Mana Flask" + } + }, + [48979]={ + connections={ + [1]={ + id=51820, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=3, + orbitIndex=10, + skill=48979, + stats={ + [1]="16% increased Totem Life" + } + }, + [49023]={ + connections={ + [1]={ + id=12817, + orbit=3 + }, + [2]={ + id=22975, + orbit=0 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=1, + orbitIndex=6, + skill=49023, + stats={ + [1]="5% increased Block chance" + } + }, + [49046]={ + connections={ + [1]={ + id=8569, + orbit=0 + } + }, + group=942, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49046, + stats={ + [1]="+5 to any Attribute" + } + }, + [49049]={ + ascendancyName="Chronomancer", + connections={ + }, + group=391, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.png", + isNotable=true, + name="Apex of the Moment", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=49049, + stats={ + [1]="Enemies in your Presence are Slowed by 20%" + } + }, + [49088]={ + connections={ + [1]={ + id=17394, + orbit=7 + } + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Splintering Force", + orbit=0, + orbitIndex=0, + skill=49088, + stats={ + [1]="Minions Break Armour equal to 3% of Physical damage dealt" + } + }, + [49107]={ + connections={ + [1]={ + id=54562, + orbit=0 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Critical Chance", + orbit=2, + orbitIndex=14, + skill=49107, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [49110]={ + connections={ + [1]={ + id=54746, + orbit=-7 + } + }, + group=1106, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance and Effect", + orbit=0, + orbitIndex=0, + skill=49110, + stats={ + [1]="6% increased chance to inflict Ailments", + [2]="6% increased Magnitude of Damaging Ailments you inflict" + } + }, + [49111]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=49111 + }, + [49130]={ + connections={ + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Reduced Projectile Speed", + orbit=2, + orbitIndex=19, + skill=49130, + stats={ + [1]="6% reduced Projectile Speed" + } + }, + [49150]={ + connections={ + [1]={ + id=36759, + orbit=0 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Precise Invocations", + orbit=3, + orbitIndex=7, + skill=49150, + stats={ + [1]="Invocated Spells have 30% increased Critical Hit Chance" + } + }, + [49153]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=366, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Comradery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=66, + skill=49153, + stats={ + [1]="30% increased Damage", + [2]="Minions deal 30% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [49165]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=59913, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Mark Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=27, + skill=49165, + stats={ + [1]="12% increased Effect of your Mark Skills" + } + }, + [49172]={ + connections={ + [1]={ + id=33730, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.png", + name="Channelling Speed", + orbit=2, + orbitIndex=9, + skill=49172, + stats={ + [1]="3% increased Skill Speed with Channelling Skills" + } + }, + [49189]={ + ascendancyName="Stormweaver", + connections={ + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.png", + isNotable=true, + name="Storm's Recollection", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=17, + skill=49189, + stats={ + [1]="Remnants can be collected from 50% further away", + [2]="Remnants you create reappear once, 3 seconds after being collected" + } + }, + [49192]={ + connections={ + [1]={ + id=43396, + orbit=0 + }, + [2]={ + id=41615, + orbit=0 + } + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=7, + orbitIndex=12, + skill=49192, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [49198]={ + connections={ + [1]={ + id=49023, + orbit=3 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=7, + orbitIndex=22, + skill=49198, + stats={ + [1]="5% increased Block chance" + } + }, + [49214]={ + connections={ + [1]={ + id=50767, + orbit=0 + } + }, + group=125, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png", + isNotable=true, + name="Blood of the Wolf", + orbit=0, + orbitIndex=0, + skill=49214, + stats={ + [1]="15% increased amount of Life Leeched while Shapeshifted", + [2]="15% increased Life Regeneration rate while Shapeshifted", + [3]="+1% to Maximum Cold Resistance while Shapeshifted" + } + }, + [49220]={ + connections={ + [1]={ + id=10429, + orbit=0 + }, + [2]={ + id=44223, + orbit=-3 + }, + [3]={ + id=53960, + orbit=-6 + }, + [4]={ + id=21336, + orbit=5 + }, + [5]={ + id=36778, + orbit=6 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/Harrier.png", + isNotable=true, + name="Flow Like Water", + orbit=4, + orbitIndex=12, + skill=49220, + stats={ + [1]="8% increased Attack and Cast Speed", + [2]="+5 to Dexterity and Intelligence" + } + }, + [49231]={ + connections={ + [1]={ + id=43183, + orbit=0 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=7, + orbitIndex=0, + skill=49231, + stats={ + [1]="3% increased Attack Speed" + } + }, + [49235]={ + connections={ + [1]={ + id=42077, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=7, + skill=49235, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [49256]={ + connections={ + [1]={ + id=14439, + orbit=4 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=3, + orbitIndex=12, + skill=49256, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [49258]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49769, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=66, + skill=49258, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [49259]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=49259 + }, + [49280]={ + connections={ + [1]={ + id=36170, + orbit=3 + } + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=7, + orbitIndex=7, + skill=49280, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [49285]={ + connections={ + [1]={ + id=364, + orbit=9 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=2, + orbitIndex=22, + skill=49285, + stats={ + [1]="+8 to Strength" + } + }, + [49291]={ + connections={ + [1]={ + id=57945, + orbit=0 + } + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charge Generation", + orbit=7, + orbitIndex=9, + skill=49291, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [49320]={ + connections={ + [1]={ + id=52215, + orbit=0 + } + }, + group=1444, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Critical Chance", + orbit=6, + orbitIndex=31, + skill=49320, + stats={ + [1]="10% increased Critical Hit Chance with Daggers" + } + }, + [49340]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=49, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.png", + isNotable=true, + name="Support Straps", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=49340, + stats={ + [1]="Body Armour grants 20% increased Strength" + } + }, + [49356]={ + connections={ + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="First Principle of the Hollow", + orbit=3, + orbitIndex=4, + skill=49356, + stats={ + [1]="20% increased Evasion Rating", + [2]="20% increased maximum Energy Shield", + [3]="+5% to Cold Resistance", + [4]="+5% to Lightning Resistance" + } + }, + [49357]={ + connections={ + [1]={ + id=32194, + orbit=0 + }, + [2]={ + id=51618, + orbit=-9 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=0, + skill=49357, + stats={ + [1]="+5 to any Attribute" + } + }, + [49363]={ + connections={ + }, + flavourText="The world is a pattern, moving in natural waves.\nWith enough force, those waves can be made to converge...", + group=548, + icon="Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.png", + isKeystone=true, + name="Wildsurge Incantation", + orbit=0, + orbitIndex=0, + skill=49363, + stats={ + [1]="Storm and Plant Spells:\ndeal 50% more damage\ncost 50% less\nhave 75% less duration" + } + }, + [49370]={ + connections={ + [1]={ + id=6502, + orbit=0 + } + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + isNotable=true, + name="Morning Star", + orbit=2, + orbitIndex=18, + skill=49370, + stats={ + [1]="30% increased Critical Hit Chance with Flails", + [2]="20% increased Critical Damage Bonus with Flails" + } + }, + [49380]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=36659, + orbit=-7 + } + }, + group=28, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png", + name="Armour Break", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=49380, + stats={ + [1]="Break 25% increased Armour" + } + }, + [49388]={ + connections={ + [1]={ + id=37304, + orbit=0 + }, + [2]={ + id=38215, + orbit=-7 + }, + [3]={ + id=4806, + orbit=7 + } + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental", + orbit=2, + orbitIndex=19, + skill=49388, + stats={ + [1]="10% increased Magnitude of Chill you inflict", + [2]="10% increased Magnitude of Shock you inflict" + } + }, + [49391]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + connections={ + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Block Mastery", + orbit=0, + orbitIndex=0, + skill=49391 + }, + [49394]={ + connections={ + [1]={ + id=23786, + orbit=0 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Critical Bleeding Effect", + orbit=7, + orbitIndex=19, + skill=49394, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict with Critical Hits" + } + }, + [49406]={ + connections={ + [1]={ + id=52125, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=45, + skill=49406, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [49455]={ + connections={ + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=4, + orbitIndex=5, + skill=49455, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [49461]={ + connections={ + [1]={ + id=50912, + orbit=2 + } + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Speed", + orbit=2, + orbitIndex=23, + skill=49461, + stats={ + [1]="3% increased Attack Speed" + } + }, + [49466]={ + connections={ + [1]={ + id=30871, + orbit=0 + } + }, + group=1207, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=12, + skill=49466, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [49473]={ + connections={ + [1]={ + id=61104, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=0, + orbitIndex=0, + skill=49473, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [49485]={ + connections={ + [1]={ + id=12174, + orbit=-9 + }, + [2]={ + id=49107, + orbit=9 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Dexterity", + orbit=2, + orbitIndex=18, + skill=49485, + stats={ + [1]="+8 to Dexterity" + } + }, + [49497]={ + connections={ + [1]={ + id=23244, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Culling Strike Threshold", + orbit=7, + orbitIndex=6, + skill=49497, + stats={ + [1]="5% increased Culling Strike Threshold" + } + }, + [49503]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1519, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png", + name="Mana Flask Charges", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=49503, + stats={ + [1]="20% increased Mana Flask Charges gained" + } + }, + [49512]={ + connections={ + [1]={ + id=61419, + orbit=0 + }, + [2]={ + id=15885, + orbit=0 + }, + [3]={ + id=5936, + orbit=0 + } + }, + group=738, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49512, + stats={ + [1]="+5 to any Attribute" + } + }, + [49537]={ + connections={ + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Speed with Elemental Skills", + orbit=3, + orbitIndex=16, + skill=49537, + stats={ + [1]="3% increased Attack and Cast Speed with Elemental Skills" + } + }, + [49543]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=13108, + orbit=0 + } + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/minionattackspeed.png", + name="Ally Attack and Cast Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=23, + skill=49543, + stats={ + [1]="3% reduced Skill Speed", + [2]="Allies in your Presence have 6% increased Attack Speed", + [3]="Allies in your Presence have 6% increased Cast Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [49545]={ + connections={ + [1]={ + id=64851, + orbit=2 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Damage", + orbit=7, + orbitIndex=13, + skill=49545, + stats={ + [1]="20% increased Parry Damage" + } + }, + [49547]={ + connections={ + }, + flavourText="Hope is a mistake. Pain is the only truth.", + group=425, + icon="Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.png", + isKeystone=true, + name="Scarred Faith", + orbit=0, + orbitIndex=0, + skill=49547, + stats={ + [1]="5% of Physical Damage prevented Recouped as Energy Shield per enemy Power\nEnergy Shield does not Recharge\nYou cannot Recover Energy Shield from Regeneration\nYou cannot Recover Energy Shield to above Armour" + } + }, + [49550]={ + connections={ + }, + group=549, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Prolonged Fury", + orbit=7, + orbitIndex=12, + skill=49550, + stats={ + [1]="Inherent loss of Rage is 25% slower" + } + }, + [49593]={ + connections={ + [1]={ + id=4725, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + name="Sentinels", + orbit=7, + orbitIndex=21, + skill=49593, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [49618]={ + connections={ + [1]={ + id=38663, + orbit=0 + }, + [2]={ + id=55348, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="Deadly Flourish", + orbit=0, + orbitIndex=0, + skill=49618, + stats={ + [1]="25% increased Melee Critical Hit Chance" + } + }, + [49633]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=49633 + }, + [49642]={ + connections={ + [1]={ + id=4882, + orbit=0 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=7, + orbitIndex=1, + skill=49642, + stats={ + [1]="15% increased Totem Damage" + } + }, + [49657]={ + connections={ + [1]={ + id=54417, + orbit=0 + }, + [2]={ + id=63526, + orbit=6 + }, + [3]={ + id=43578, + orbit=6 + }, + [4]={ + id=58109, + orbit=0 + } + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=33, + skill=49657, + stats={ + [1]="+5 to any Attribute" + } + }, + [49661]={ + connections={ + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Perfectly Placed Knife", + orbit=1, + orbitIndex=2, + skill=49661, + stats={ + [1]="25% increased Critical Hit Chance against Bleeding Enemies", + [2]="20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks" + } + }, + [49691]={ + connections={ + [1]={ + id=13828, + orbit=0 + }, + [2]={ + id=31409, + orbit=0 + }, + [3]={ + id=61106, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=21, + skill=49691, + stats={ + [1]="+16 to Evasion Rating" + } + }, + [49696]={ + connections={ + [1]={ + id=10273, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=5, + orbitIndex=12, + skill=49696, + stats={ + [1]="+3 to all Attributes" + } + }, + [49734]={ + connections={ + [1]={ + id=46741, + orbit=0 + }, + [2]={ + id=9414, + orbit=0 + }, + [3]={ + id=32768, + orbit=0 + } + }, + group=229, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49734, + stats={ + [1]="+5 to any Attribute" + } + }, + [49740]={ + connections={ + [1]={ + id=27274, + orbit=0 + } + }, + group=1063, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Shattered Crystal", + orbit=7, + orbitIndex=0, + skill=49740, + stats={ + [1]="60% reduced Ice Crystal Life" + } + }, + [49759]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=2857, + orbit=6 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Shock Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=71, + skill=49759, + stats={ + [1]="20% increased chance to Shock" + } + }, + [49769]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=21374, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Corruption Endures", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=21, + skill=49769, + stats={ + [1]="7% chance to Avoid Death from Hits" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [49799]={ + connections={ + [1]={ + id=46224, + orbit=0 + } + }, + group=956, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=2, + orbitIndex=20, + skill=49799, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [49804]={ + connections={ + [1]={ + id=24035, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Exposure Effect", + orbit=2, + orbitIndex=22, + skill=49804, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [49929]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=31757, + orbit=0 + } + }, + group=137, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Everlasting Bloom", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=0, + skill=49929, + stats={ + [1]="30% increased Skill Effect Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [49938]={ + connections={ + [1]={ + id=26196, + orbit=0 + }, + [2]={ + id=28002, + orbit=0 + }, + [3]={ + id=51795, + orbit=0 + }, + [4]={ + id=18822, + orbit=0 + }, + [5]={ + id=15580, + orbit=0 + } + }, + group=348, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49938, + stats={ + [1]="+5 to any Attribute" + } + }, + [49952]={ + connections={ + [1]={ + id=13856, + orbit=0 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Ailment Effect", + orbit=7, + orbitIndex=6, + skill=49952, + stats={ + [1]="12% increased Magnitude of Ailments you inflict" + } + }, + [49968]={ + connections={ + [1]={ + id=20008, + orbit=0 + } + }, + group=1164, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Stun Buildup", + orbit=1, + orbitIndex=5, + skill=49968, + stats={ + [1]="18% increased Stun Buildup with Melee Damage" + } + }, + [49976]={ + connections={ + [1]={ + id=62936, + orbit=7 + }, + [2]={ + id=47976, + orbit=-3 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + name="Damage from Mana", + orbit=7, + orbitIndex=5, + skill=49976, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [49984]={ + connections={ + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Spellblade", + orbit=5, + orbitIndex=57, + skill=49984, + stats={ + [1]="32% increased Spell Damage while wielding a Melee Weapon", + [2]="+10 to Dexterity" + } + }, + [49993]={ + connections={ + [1]={ + id=40632, + orbit=2 + }, + [2]={ + id=64434, + orbit=0 + }, + [3]={ + id=7526, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=7, + orbitIndex=8, + skill=49993, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [49996]={ + connections={ + [1]={ + id=32183, + orbit=0 + }, + [2]={ + id=38215, + orbit=-4 + }, + [3]={ + id=5163, + orbit=3 + }, + [4]={ + id=33463, + orbit=0 + } + }, + group=1331, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49996, + stats={ + [1]="+5 to any Attribute" + } + }, + [50023]={ + connections={ + [1]={ + id=4921, + orbit=0 + }, + [2]={ + id=259, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Invigorating Grandeur", + orbit=4, + orbitIndex=39, + skill=50023, + stats={ + [1]="Recover 1% of maximum Life per Glory consumed" + } + }, + [50062]={ + connections={ + [1]={ + id=37641, + orbit=0 + } + }, + group=273, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + isNotable=true, + name="Barrier of Venarius", + orbit=2, + orbitIndex=2, + skill=50062, + stats={ + [1]="20% increased maximum Energy Shield", + [2]="25% reduced Armour Break taken", + [3]="Defend with 120% of Armour while not on Low Energy Shield" + } + }, + [50084]={ + connections={ + [1]={ + id=61525, + orbit=0 + } + }, + group=692, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Spell and Attack Damage", + orbit=0, + orbitIndex=0, + skill=50084, + stats={ + [1]="10% increased Spell Damage", + [2]="10% increased Attack Damage" + } + }, + [50098]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=11771, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.png", + isNotable=true, + name="Waking Dream", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=16, + skill=50098, + stats={ + [1]="Grants Skill: Into the Breach" + } + }, + [50104]={ + connections={ + [1]={ + id=47168, + orbit=0 + }, + [2]={ + id=37594, + orbit=0 + }, + [3]={ + id=7960, + orbit=0 + }, + [4]={ + id=46742, + orbit=0 + } + }, + group=482, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=50104, + stats={ + [1]="+5 to any Attribute" + } + }, + [50107]={ + connections={ + [1]={ + id=50881, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect on Self", + orbit=2, + orbitIndex=16, + skill=50107, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [50118]={ + connections={ + [1]={ + id=55450, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Resistance and Life", + orbit=1, + orbitIndex=4, + skill=50118, + stats={ + [1]="Companions have +12% to all Elemental Resistances", + [2]="Companions have 12% increased maximum Life" + } + }, + [50121]={ + connections={ + [1]={ + id=3128, + orbit=0 + } + }, + group=1222, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=50121, + stats={ + [1]="10% increased Cold Damage" + } + }, + [50124]={ + connections={ + [1]={ + id=62237, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=4, + skill=50124, + stats={ + [1]="+2% to Cold Resistance", + [2]="8% increased Armour and Evasion Rating" + } + }, + [50142]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=58197, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=58, + skill=50142, + stats={ + [1]="15% increased Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [50146]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern.png", + connections={ + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Buckler Mastery", + orbit=3, + orbitIndex=8, + skill=50146 + }, + [50150]={ + connections={ + [1]={ + id=37279, + orbit=0 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Mana Regeneration", + orbit=3, + orbitIndex=12, + skill=50150, + stats={ + [1]="8% increased Mana Regeneration Rate", + [2]="8% increased Elemental Damage" + } + }, + [50184]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=46069, + orbit=0 + } + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=1, + skill=50184, + stats={ + [1]="12% increased Magnitude of Poison you inflict" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [50192]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=31223, + orbit=-9 + } + }, + group=1018, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=50192, + stats={ + [1]="3% increased maximum Life" + } + }, + [50216]={ + connections={ + [1]={ + id=44951, + orbit=3 + }, + [2]={ + id=17655, + orbit=4 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration and Skill Speed", + orbit=2, + orbitIndex=18, + skill=50216, + stats={ + [1]="2% increased Skill Speed", + [2]="5% increased Mana Regeneration Rate" + } + }, + [50219]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=42035, + orbit=0 + } + }, + group=358, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=2, + orbitIndex=21, + skill=50219, + stats={ + [1]="8% increased Area of Effect" + } + }, + [50228]={ + connections={ + [1]={ + id=20511, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Fire Damage", + orbit=3, + orbitIndex=10, + skill=50228, + stats={ + [1]="10% increased Fire Damage" + } + }, + [50239]={ + connections={ + [1]={ + id=37434, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/coldresist.png", + isNotable=true, + name="Mutewind Agility", + orbit=7, + orbitIndex=5, + skill=50239, + stats={ + [1]="3% increased Movement Speed", + [2]="+8% to Cold Resistance", + [3]="+30% of Armour also applies to Cold Damage" + } + }, + [50253]={ + connections={ + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Aftershocks", + orbit=0, + orbitIndex=0, + skill=50253, + stats={ + [1]="Slam Skills you use yourself have 30% increased Aftershock Area of Effect" + } + }, + [50268]={ + connections={ + [1]={ + id=2446, + orbit=0 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + name="Cold and Lightning Damage", + orbit=2, + orbitIndex=20, + skill=50268, + stats={ + [1]="8% increased Cold Damage", + [2]="8% increased Lightning Damage" + } + }, + [50273]={ + connections={ + [1]={ + id=47893, + orbit=0 + }, + [2]={ + id=63267, + orbit=0 + }, + [3]={ + id=3131, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Damage", + orbit=0, + orbitIndex=0, + skill=50273, + stats={ + [1]="12% increased Attack Damage while Dual Wielding" + } + }, + [50277]={ + connections={ + [1]={ + id=50701, + orbit=0 + } + }, + group=1324, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Effect", + orbit=0, + orbitIndex=0, + skill=50277, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [50302]={ + connections={ + [1]={ + id=63470, + orbit=0 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs", + orbit=3, + orbitIndex=11, + skill=50302, + stats={ + [1]="6% of Skill Mana Costs Converted to Life Costs" + } + }, + [50328]={ + connections={ + [1]={ + id=28992, + orbit=0 + }, + [2]={ + id=10053, + orbit=0 + } + }, + group=967, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Life and Mana Flask Recovery", + orbit=3, + orbitIndex=23, + skill=50328, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [50342]={ + connections={ + [1]={ + id=5227, + orbit=0 + } + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=2, + orbitIndex=17, + skill=50342, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [50383]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern.png", + connections={ + }, + group=752, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=50383 + }, + [50392]={ + connections={ + }, + group=206, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + isNotable=true, + name="Brute Strength", + orbit=0, + orbitIndex=0, + skill=50392, + stats={ + [1]="10% reduced maximum Mana", + [2]="1% increased Damage per 15 Strength" + } + }, + [50403]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=50403 + }, + [50420]={ + connections={ + [1]={ + id=51241, + orbit=-2 + }, + [2]={ + id=31364, + orbit=0 + } + }, + group=1391, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=2, + orbitIndex=2, + skill=50420, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [50423]={ + connections={ + [1]={ + id=38856, + orbit=0 + }, + [2]={ + id=23364, + orbit=0 + }, + [3]={ + id=56547, + orbit=0 + } + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=57, + skill=50423, + stats={ + [1]="+5 to any Attribute" + } + }, + [50437]={ + connections={ + [1]={ + id=35987, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=8, + skill=50437, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [50459]={ + classesStart={ + [1]="Ranger", + [2]="Huntress" + }, + connections={ + [1]={ + id=46990, + orbit=0 + }, + [2]={ + id=1583, + orbit=0 + }, + [3]={ + id=41736, + orbit=0 + }, + [4]={ + id=63493, + orbit=0 + }, + [5]={ + id=36365, + orbit=0 + }, + [6]={ + id=13828, + orbit=0 + }, + [7]={ + id=56651, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/blankDex.png", + name="RANGER", + orbit=0, + orbitIndex=0, + skill=50459 + }, + [50469]={ + connections={ + [1]={ + id=32701, + orbit=0 + } + }, + group=1105, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=50469, + stats={ + [1]="+5 to any Attribute" + } + }, + [50483]={ + connections={ + [1]={ + id=61842, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Area", + orbit=3, + orbitIndex=22, + skill=50483, + stats={ + [1]="Minions have 8% increased Area of Effect" + } + }, + [50485]={ + connections={ + [1]={ + id=22959, + orbit=0 + } + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Zone of Control", + orbit=2, + orbitIndex=18, + skill=50485, + stats={ + [1]="20% increased Area of Effect of Curses", + [2]="10% increased Curse Magnitudes", + [3]="Enemies you Curse are Hindered, with 15% reduced Movement Speed" + } + }, + [50510]={ + connections={ + [1]={ + id=46384, + orbit=0 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=4, + orbitIndex=18, + skill=50510, + stats={ + [1]="5% increased Block chance" + } + }, + [50516]={ + connections={ + [1]={ + id=2814, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Flammability Magnitude", + orbit=7, + orbitIndex=2, + skill=50516, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="4% increased Area of Effect for Attacks" + } + }, + [50535]={ + connections={ + [1]={ + id=10612, + orbit=2 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect", + orbit=2, + orbitIndex=18, + skill=50535, + stats={ + [1]="15% increased effect of Archon Buffs on you" + } + }, + [50540]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + connections={ + [1]={ + id=16499, + orbit=0 + } + }, + group=854, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.png", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=50540 + }, + [50558]={ + connections={ + [1]={ + id=32194, + orbit=0 + }, + [2]={ + id=12462, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.png", + id=36908, + name="Damage", + stats={ + [1]="8% increased Damage" + } + } + }, + orbit=4, + orbitIndex=60, + skill=50558, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [50561]={ + connections={ + [1]={ + id=12418, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=3, + orbitIndex=18, + skill=50561, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [50562]={ + connections={ + [1]={ + id=43142, + orbit=0 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Barbaric Strength", + orbit=7, + orbitIndex=8, + skill=50562, + stats={ + [1]="45% increased Critical Damage Bonus", + [2]="10% increased Mana Cost of Skills", + [3]="+10 to Strength" + } + }, + [50574]={ + connections={ + [1]={ + id=19426, + orbit=0 + }, + [2]={ + id=46034, + orbit=0 + } + }, + group=1052, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Life Recoup", + orbit=2, + orbitIndex=20, + skill=50574, + stats={ + [1]="3% of Physical Damage taken Recouped as Life", + [2]="5% increased Physical Damage" + } + }, + [50588]={ + connections={ + [1]={ + id=6010, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=2, + orbitIndex=2, + skill=50588, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [50609]={ + connections={ + [1]={ + id=11916, + orbit=0 + } + }, + group=801, + icon="Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + isNotable=true, + name="Hard to Kill", + orbit=3, + orbitIndex=18, + skill=50609, + stats={ + [1]="40% increased Flask Life Recovery rate", + [2]="Regenerate 0.75% of maximum Life per second" + } + }, + [50616]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=252, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=50616 + }, + [50626]={ + connections={ + [1]={ + id=32597, + orbit=0 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=7, + skill=50626, + stats={ + [1]="+10 to Armour", + [2]="+5 to maximum Energy Shield" + } + }, + [50629]={ + connections={ + [1]={ + id=3218, + orbit=0 + }, + [2]={ + id=23930, + orbit=0 + }, + [3]={ + id=24430, + orbit=0 + } + }, + group=266, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=0, + orbitIndex=0, + skill=50629, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [50635]={ + connections={ + [1]={ + id=25971, + orbit=0 + }, + [2]={ + id=42750, + orbit=5 + }, + [3]={ + id=9050, + orbit=-5 + } + }, + group=1216, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=3, + orbitIndex=13, + skill=50635, + stats={ + [1]="3% increased Attack Speed" + } + }, + [50673]={ + connections={ + [1]={ + id=58526, + orbit=-2 + }, + [2]={ + id=62427, + orbit=-2 + } + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Avoiding Deflection", + orbit=3, + orbitIndex=18, + skill=50673, + stats={ + [1]="-5% to amount of Damage Prevented by Deflection", + [2]="20% increased Deflection Rating" + } + }, + [50687]={ + connections={ + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Coursing Energy", + orbit=7, + orbitIndex=14, + skill=50687, + stats={ + [1]="40% increased Electrocute Buildup", + [2]="30% increased Shock Chance against Electrocuted Enemies" + } + }, + [50701]={ + connections={ + [1]={ + id=44932, + orbit=0 + } + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Effect", + orbit=0, + orbitIndex=0, + skill=50701, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [50715]={ + connections={ + [1]={ + id=50383, + orbit=0 + } + }, + group=753, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Frozen Limit", + orbit=7, + orbitIndex=21, + skill=50715, + stats={ + [1]="+1 to maximum Cold Infusions" + } + }, + [50720]={ + connections={ + [1]={ + id=43557, + orbit=0 + }, + [2]={ + id=11376, + orbit=-3 + }, + [3]={ + id=34199, + orbit=3 + }, + [4]={ + id=30523, + orbit=3 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=23, + skill=50720, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [50755]={ + connections={ + [1]={ + id=10131, + orbit=9 + }, + [2]={ + id=39567, + orbit=0 + }, + [3]={ + id=19355, + orbit=8 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=5, + orbitIndex=5, + skill=50755, + stats={ + [1]="+8 to Intelligence" + } + }, + [50757]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connections={ + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=50757 + }, + [50767]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=112, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=0, + skill=50767 + }, + [50795]={ + connections={ + [1]={ + id=58013, + orbit=0 + }, + [2]={ + id=20744, + orbit=0 + } + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Careful Aim", + orbit=7, + orbitIndex=7, + skill=50795, + stats={ + [1]="15% increased Accuracy Rating", + [2]="20% increased Projectile Damage" + } + }, + [50816]={ + connections={ + [1]={ + id=46554, + orbit=-9 + }, + [2]={ + id=39567, + orbit=0 + }, + [3]={ + id=37974, + orbit=-5 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=5, + orbitIndex=67, + skill=50816, + stats={ + [1]="+8 to Intelligence" + } + }, + [50817]={ + connections={ + [1]={ + id=61355, + orbit=2 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + name="Damage from Mana", + orbit=7, + orbitIndex=11, + skill=50817, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [50820]={ + connections={ + [1]={ + id=65472, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=7, + orbitIndex=17, + skill=50820, + stats={ + [1]="15% increased Glory generation" + } + }, + [50837]={ + connections={ + [1]={ + id=14598, + orbit=0 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png", + name="Minion Damage and Command Speed", + orbit=3, + orbitIndex=15, + skill=50837, + stats={ + [1]="Minions deal 6% increased Damage", + [2]="Minions have 8% increased Cooldown Recovery Rate for Command Skills" + } + }, + [50847]={ + connections={ + [1]={ + id=1130, + orbit=0 + } + }, + group=142, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Damage", + orbit=7, + orbitIndex=5, + skill=50847, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [50879]={ + connections={ + [1]={ + id=14211, + orbit=7 + } + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Hazard Damage", + orbit=7, + orbitIndex=4, + skill=50879, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [50881]={ + connections={ + [1]={ + id=55420, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect on Self", + orbit=2, + orbitIndex=20, + skill=50881, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [50884]={ + connections={ + [1]={ + id=53696, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + isNotable=true, + name="Primal Sundering", + orbit=7, + orbitIndex=14, + skill=50884, + stats={ + [1]="Damage Penetrates 12% Elemental Resistances", + [2]="8% increased Area of Effect for Attacks" + } + }, + [50908]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=633, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Strength of the Deep", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=50908, + stats={ + [1]="2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + [2]="+1 to Maximum Endurance Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [50912]={ + connections={ + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Imbibed Power", + orbit=7, + orbitIndex=20, + skill=50912, + stats={ + [1]="6% increased Attack Speed during any Flask Effect", + [2]="25% increased Damage during any Flask Effect" + } + }, + [50986]={ + classesStart={ + [1]="Duelist", + [2]="Mercenary" + }, + connections={ + [1]={ + id=36252, + orbit=0 + }, + [2]={ + id=7120, + orbit=0 + }, + [3]={ + id=55536, + orbit=0 + }, + [4]={ + id=59915, + orbit=0 + } + }, + group=786, + icon="Art/2DArt/SkillIcons/passives/damagedualwield.png", + name="DUELIST", + orbit=0, + orbitIndex=0, + skill=50986 + }, + [51006]={ + connections={ + [1]={ + id=41877, + orbit=0 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Charges Used", + orbit=3, + orbitIndex=1, + skill=51006, + stats={ + [1]="4% reduced Flask Charges used from Mana Flasks" + } + }, + [51040]={ + connections={ + [1]={ + id=9652, + orbit=0 + } + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Deflection and Energy Shield Delay", + orbit=0, + orbitIndex=0, + skill=51040, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="5% faster start of Energy Shield Recharge" + } + }, + [51048]={ + connections={ + [1]={ + id=17702, + orbit=0 + }, + [2]={ + id=58814, + orbit=0 + }, + [3]={ + id=33946, + orbit=0 + }, + [4]={ + id=30910, + orbit=0 + } + }, + group=1068, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=51048, + stats={ + [1]="+5 to any Attribute" + } + }, + [51052]={ + connections={ + [1]={ + id=22558, + orbit=0 + }, + [2]={ + id=761, + orbit=-8 + }, + [3]={ + id=51183, + orbit=0 + } + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=60, + skill=51052, + stats={ + [1]="+5 to any Attribute" + } + }, + [51105]={ + connections={ + [1]={ + id=48979, + orbit=0 + }, + [2]={ + id=21127, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Spirit Bond", + orbit=1, + orbitIndex=5, + skill=51105, + stats={ + [1]="30% increased Totem Life", + [2]="30% increased Totem Duration" + } + }, + [51129]={ + connections={ + [1]={ + id=15892, + orbit=0 + }, + [2]={ + id=48717, + orbit=0 + } + }, + group=183, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png", + isNotable=true, + name="Pile On", + orbit=7, + orbitIndex=16, + skill=51129, + stats={ + [1]="30% increased effect of Fully Broken Armour" + } + }, + [51142]={ + ascendancyName="Lich", + connections={ + [1]={ + id=26085, + orbit=-4 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=15373, + name="Minion Reservation Efficiency", + stats={ + [1]="6% increased Reservation Efficiency of Minion Skills" + } + } + }, + orbit=9, + orbitIndex=135, + skill=51142, + stats={ + [1]="3% increased maximum Mana" + } + }, + [51169]={ + connections={ + }, + group=793, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + isNotable=true, + name="Soul Bloom", + orbit=7, + orbitIndex=21, + skill=51169, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [51183]={ + connections={ + [1]={ + id=45301, + orbit=0 + }, + [2]={ + id=10635, + orbit=0 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=12, + skill=51183, + stats={ + [1]="10% increased Armour", + [2]="10% increased maximum Energy Shield" + } + }, + [51184]={ + connections={ + [1]={ + id=41965, + orbit=-4 + }, + [2]={ + id=29502, + orbit=6 + }, + [3]={ + id=3242, + orbit=-4 + } + }, + group=746, + icon="Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png", + isNotable=true, + isSwitchable=true, + name="Raw Power", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png", + id=5788, + name="Raw Destruction", + stats={ + [1]="16% increased Spell Damage", + [2]="Minions deal 16% increased Damage", + [3]="+10 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=51184, + stats={ + [1]="20% increased Spell Damage", + [2]="+10 to Intelligence" + } + }, + [51194]={ + connections={ + [1]={ + id=24060, + orbit=4 + }, + [2]={ + id=18793, + orbit=-5 + }, + [3]={ + id=49512, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Duration", + orbit=2, + orbitIndex=0, + skill=51194, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [51206]={ + connections={ + [1]={ + id=49642, + orbit=-6 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=3, + orbitIndex=17, + skill=51206, + stats={ + [1]="15% increased Totem Damage" + } + }, + [51210]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=195, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=51210 + }, + [51213]={ + connections={ + [1]={ + id=64747, + orbit=5 + } + }, + group=1122, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + isNotable=true, + name="Wasting", + orbit=0, + orbitIndex=0, + skill=51213, + stats={ + [1]="15% increased Duration of Damaging Ailments on Enemies", + [2]="30% increased Damage with Hits against Enemies affected by Ailments" + } + }, + [51234]={ + connections={ + [1]={ + id=15991, + orbit=-2 + }, + [2]={ + id=27434, + orbit=7 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect", + orbit=2, + orbitIndex=6, + skill=51234, + stats={ + [1]="15% increased effect of Archon Buffs on you" + } + }, + [51241]={ + connections={ + [1]={ + id=55118, + orbit=-2 + } + }, + group=1391, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=2, + orbitIndex=10, + skill=51241, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [51248]={ + connections={ + [1]={ + id=38292, + orbit=0 + }, + [2]={ + id=6015, + orbit=4 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=2, + orbitIndex=9, + skill=51248, + stats={ + [1]="10% increased Fire Damage" + } + }, + [51267]={ + connections={ + [1]={ + id=11886, + orbit=0 + } + }, + group=423, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=7, + orbitIndex=19, + skill=51267, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [51299]={ + connections={ + [1]={ + id=35265, + orbit=0 + }, + [2]={ + id=19802, + orbit=0 + }, + [3]={ + id=44419, + orbit=0 + } + }, + group=565, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=0, + skill=51299, + stats={ + [1]="+5 to any Attribute" + } + }, + [51303]={ + connections={ + [1]={ + id=38965, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + name="Infusion Duration", + orbit=1, + orbitIndex=11, + skill=51303, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [51335]={ + connections={ + [1]={ + id=51968, + orbit=-6 + }, + [2]={ + id=5726, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + isNotable=true, + isSwitchable=true, + name="Affliction Enforcer", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + id=64801, + name="Jagged Shards", + stats={ + [1]="20% increased Critical Hit Chance for Spells", + [2]="20% increased Physical Damage" + } + } + }, + orbit=7, + orbitIndex=21, + skill=51335, + stats={ + [1]="40% increased Flammability Magnitude", + [2]="20% increased Freeze Buildup", + [3]="20% increased chance to Shock" + } + }, + [51336]={ + connections={ + [1]={ + id=56818, + orbit=4 + }, + [2]={ + id=53965, + orbit=0 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=4, + orbitIndex=45, + skill=51336, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [51369]={ + connections={ + [1]={ + id=56061, + orbit=0 + }, + [2]={ + id=45503, + orbit=0 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Damage against Burning Enemies", + orbit=2, + orbitIndex=6, + skill=51369, + stats={ + [1]="14% increased Damage with Hits against Burning Enemies" + } + }, + [51394]={ + connections={ + [1]={ + id=29993, + orbit=0 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Unimpeded", + orbit=3, + orbitIndex=2, + skill=51394, + stats={ + [1]="24% reduced Slowing Potency of Debuffs on You" + } + }, + [51416]={ + connections={ + [1]={ + id=32016, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=6, + orbitIndex=54, + skill=51416, + stats={ + [1]="3% increased Cast Speed" + } + }, + [51446]={ + connections={ + [1]={ + id=53647, + orbit=-7 + }, + [2]={ + id=19750, + orbit=0 + } + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Leather Bound Gauntlets", + orbit=3, + orbitIndex=16, + skill=51446, + stats={ + [1]="+1 to Evasion Rating per 1 Item Armour on Equipped Gloves" + } + }, + [51454]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=51454, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [51463]={ + connections={ + [1]={ + id=4364, + orbit=0 + } + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + name="Attack Damage while Moving", + orbit=7, + orbitIndex=14, + skill=51463, + stats={ + [1]="12% increased Attack Damage while moving" + } + }, + [51485]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=51485 + }, + [51509]={ + connections={ + [1]={ + id=35848, + orbit=7 + }, + [2]={ + id=9393, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + isNotable=true, + name="Waters of Life", + orbit=0, + orbitIndex=0, + skill=51509, + stats={ + [1]="Recover 2% of maximum Life when you use a Mana Flask", + [2]="Mana Flasks gain 0.1 charges per Second" + } + }, + [51522]={ + connections={ + [1]={ + id=56493, + orbit=-7 + } + }, + group=1162, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=22, + skill=51522, + stats={ + [1]="3% increased Attack Speed" + } + }, + [51534]={ + connections={ + [1]={ + id=24483, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=3, + orbitIndex=14, + skill=51534, + stats={ + [1]="16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" + } + }, + [51535]={ + connections={ + [1]={ + id=8852, + orbit=0 + } + }, + group=138, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=13, + skill=51535, + stats={ + [1]="12% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [51546]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.png", + isNotable=true, + name="Way of the Mountain", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=57, + skill=51546, + stats={ + [1]="100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30\nLose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings" + } + }, + [51561]={ + connections={ + [1]={ + id=25312, + orbit=0 + }, + [2]={ + id=2491, + orbit=0 + }, + [3]={ + id=7716, + orbit=0 + } + }, + group=323, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=51561, + stats={ + [1]="+5 to any Attribute" + } + }, + [51565]={ + connections={ + [1]={ + id=2335, + orbit=0 + }, + [2]={ + id=22682, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=3, + orbitIndex=6, + skill=51565, + stats={ + [1]="6% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [51583]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=51583 + }, + [51602]={ + connections={ + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + isNotable=true, + name="Unsight", + orbit=0, + orbitIndex=0, + skill=51602, + stats={ + [1]="Enemies near Enemies you Mark are Blinded", + [2]="Enemies you Mark cannot deal Critical Hits" + } + }, + [51606]={ + connections={ + [1]={ + id=65207, + orbit=-7 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Freedom of Movement", + orbit=4, + orbitIndex=48, + skill=51606, + stats={ + [1]="20% increased Evasion Rating", + [2]="10% reduced Slowing Potency of Debuffs on You", + [3]="5% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [51618]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11580, + orbit=0 + }, + [2]={ + id=43324, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs and Regeneration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=10, + skill=51618, + stats={ + [1]="15% increased Life Regeneration rate", + [2]="6% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [51672]={ + connections={ + [1]={ + id=31955, + orbit=0 + } + }, + group=275, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=10, + skill=51672, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [51683]={ + connections={ + }, + group=375, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=2, + orbitIndex=22, + skill=51683, + stats={ + [1]="15% increased Totem Damage" + } + }, + [51690]={ + ascendancyName="Titan", + connections={ + [1]={ + id=12000, + orbit=-5 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Life Regeneration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=43, + skill=51690, + stats={ + [1]="Regenerate 0.5% of maximum Life per second" + } + }, + [51702]={ + connections={ + }, + group=385, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=7, + orbitIndex=16, + skill=51702, + stats={ + [1]="+8 to Strength" + } + }, + [51707]={ + connections={ + [1]={ + id=38728, + orbit=5 + }, + [2]={ + id=41163, + orbit=0 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Enhanced Reflexes", + orbit=5, + orbitIndex=66, + skill=51707, + stats={ + [1]="20% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating", + [3]="8% increased Dexterity" + } + }, + [51708]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + connections={ + }, + group=1094, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=51708 + }, + [51728]={ + connections={ + [1]={ + id=6505, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Pierce Chance", + orbit=2, + orbitIndex=7, + skill=51728, + stats={ + [1]="15% chance to Pierce an Enemy" + } + }, + [51732]={ + connections={ + [1]={ + id=26568, + orbit=0 + } + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=16, + skill=51732, + stats={ + [1]="3% increased Attack Speed" + } + }, + [51735]={ + connections={ + [1]={ + id=44707, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Damage", + orbit=2, + orbitIndex=17, + skill=51735, + stats={ + [1]="Attack Skills deal 10% increased Damage while holding a Shield" + } + }, + [51737]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=8272, + orbit=-8 + } + }, + group=235, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=51737, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [51741]={ + connections={ + [1]={ + id=61834, + orbit=0 + }, + [2]={ + id=57230, + orbit=-4 + }, + [3]={ + id=57821, + orbit=0 + }, + [4]={ + id=45798, + orbit=0 + }, + [5]={ + id=15424, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=51741, + stats={ + [1]="+5 to any Attribute" + } + }, + [51743]={ + connections={ + [1]={ + id=57617, + orbit=3 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Attack Damage", + orbit=4, + orbitIndex=0, + skill=51743, + stats={ + [1]="15% increased Attack Damage if you have Shapeshifted to an Animal form Recently" + } + }, + [51749]={ + connections={ + [1]={ + id=30141, + orbit=0 + } + }, + flavourText="Lay open your veins, and draw power from your own spilled life.", + group=129, + icon="Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", + isKeystone=true, + name="Blood Magic", + orbit=0, + orbitIndex=0, + skill=51749, + stats={ + [1]="You have no Mana\nSkill Mana Costs Converted to Life Costs" + } + }, + [51774]={ + connections={ + [1]={ + id=34425, + orbit=2 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility Detonation Time", + orbit=2, + orbitIndex=16, + skill=51774, + stats={ + [1]="15% reduced Volatility Explosion delay" + } + }, + [51788]={ + connections={ + [1]={ + id=5066, + orbit=-2 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Curse Effect on you", + orbit=2, + orbitIndex=4, + skill=51788, + stats={ + [1]="10% reduced effect of Curses on you" + } + }, + [51795]={ + connections={ + [1]={ + id=32271, + orbit=-2 + }, + [2]={ + id=53632, + orbit=7 + } + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude and Fire Damage", + orbit=7, + orbitIndex=12, + skill=51795, + stats={ + [1]="8% increased Fire Damage", + [2]="15% increased Flammability Magnitude" + } + }, + [51797]={ + connections={ + [1]={ + id=23939, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=8, + skill=51797, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [51807]={ + connections={ + [1]={ + id=57089, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=2, + orbitIndex=0, + skill=51807, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [51812]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=51812 + }, + [51820]={ + connections={ + [1]={ + id=21127, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Conduits", + orbit=6, + orbitIndex=30, + skill=51820, + stats={ + [1]="12% increased Attack and Cast Speed if you've summoned a Totem Recently" + } + }, + [51821]={ + connections={ + [1]={ + id=20115, + orbit=0 + }, + [2]={ + id=25014, + orbit=0 + }, + [3]={ + id=39102, + orbit=0 + } + }, + group=247, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=51821, + stats={ + [1]="+5 to any Attribute" + } + }, + [51825]={ + connections={ + [1]={ + id=47363, + orbit=0 + }, + [2]={ + id=9164, + orbit=0 + }, + [3]={ + id=13708, + orbit=0 + } + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=4, + orbitIndex=45, + skill=51825, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [51832]={ + connections={ + [1]={ + id=47722, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Damage", + orbit=2, + orbitIndex=6, + skill=51832, + stats={ + [1]="16% increased Damage with Warcries" + } + }, + [51847]={ + connections={ + [1]={ + id=33974, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=24, + skill=51847, + stats={ + [1]="8% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [51850]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=9535, + orbit=0 + }, + [2]={ + id=37434, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Path of the Renegade", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=10, + skill=51850, + stats={ + [1]="+8% to Chaos Resistance", + [2]="+20% of Armour also applies to Chaos Damage" + }, + unlockConstraint={ + nodes={ + [1]=50239, + [2]=9535, + [3]=61309 + } + } + }, + [51867]={ + connections={ + }, + group=386, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Finality", + orbit=0, + orbitIndex=0, + skill=51867, + stats={ + [1]="120% increased Damage with Hits against Enemies that are on Low Life", + [2]="5% increased Damage taken while on Low Life" + } + }, + [51868]={ + connections={ + [1]={ + id=19794, + orbit=3 + }, + [2]={ + id=38320, + orbit=0 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Molten Carapace", + orbit=5, + orbitIndex=64, + skill=51868, + stats={ + [1]="50% increased Armour while Ignited", + [2]="+2% to Maximum Fire Resistance while Ignited", + [3]="50% increased Fire Damage while Ignited" + } + }, + [51871]={ + connections={ + [1]={ + id=8045, + orbit=0 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + isNotable=true, + name="Immortal Thirst", + orbit=0, + orbitIndex=0, + skill=51871, + stats={ + [1]="15% increased maximum Energy Shield", + [2]="25% increased amount of Mana Leeched" + } + }, + [51891]={ + connections={ + [1]={ + id=25528, + orbit=0 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Lucidity", + orbit=7, + orbitIndex=17, + skill=51891, + stats={ + [1]="8% of Damage is taken from Mana before Life", + [2]="+15 to Intelligence" + } + }, + [51892]={ + connections={ + [1]={ + id=59387, + orbit=0 + }, + [2]={ + id=64427, + orbit=0 + }, + [3]={ + id=44188, + orbit=0 + } + }, + group=930, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Infusion and Power Charge Duration", + orbit=2, + orbitIndex=23, + skill=51892, + stats={ + [1]="6% increased Power Charge Duration", + [2]="6% increased Elemental Infusion duration" + } + }, + [51903]={ + connections={ + [1]={ + id=55058, + orbit=0 + }, + [2]={ + id=39347, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=17, + skill=51903, + stats={ + [1]="10% increased Melee Damage" + } + }, + [51921]={ + connections={ + [1]={ + id=36629, + orbit=-4 + } + }, + group=625, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=51921, + stats={ + [1]="+5 to any Attribute" + } + }, + [51934]={ + connections={ + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Invocated Efficiency", + orbit=0, + orbitIndex=0, + skill=51934, + stats={ + [1]="10% increased Mana Cost Efficiency", + [2]="Triggered Spells deal 40% increased Spell Damage" + } + }, + [51944]={ + connections={ + [1]={ + id=49406, + orbit=0 + }, + [2]={ + id=51728, + orbit=0 + }, + [3]={ + id=47683, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=3, + orbitIndex=15, + skill=51944, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [51968]={ + connections={ + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + isSwitchable=true, + name="Elemental Ailment Chance", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + id=18040, + name="Physical Damage", + stats={ + [1]="10% increased Physical Damage" + } + } + }, + orbit=3, + orbitIndex=18, + skill=51968, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="10% increased Freeze Buildup", + [3]="10% increased chance to Shock" + } + }, + [51974]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + connections={ + [1]={ + id=25711, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + isOnlyImage=true, + name="Fortify Mastery", + orbit=0, + orbitIndex=0, + skill=51974 + }, + [52003]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=742, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCast.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=2, + orbitIndex=18, + skill=52003 + }, + [52038]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + }, + group=542, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=52038 + }, + [52053]={ + connections={ + [1]={ + id=14048, + orbit=3 + }, + [2]={ + id=24120, + orbit=-4 + } + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=16, + skill=52053, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [52060]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + connections={ + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=52060 + }, + [52068]={ + ascendancyName="Warbringer", + connections={ + }, + group=60, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.png", + isNotable=true, + name="Turtle Charm", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=52068, + stats={ + [1]="You take 20% of damage from Blocked Hits", + [2]="Maximum Block chance is 75%" + } + }, + [52106]={ + connections={ + [1]={ + id=44005, + orbit=0 + }, + [2]={ + id=10295, + orbit=0 + } + }, + group=270, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=6, + orbitIndex=34, + skill=52106, + stats={ + [1]="3% increased Cast Speed" + } + }, + [52115]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=51454, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Nurturing Nature", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=0, + skill=52115, + stats={ + [1]="40% increased Mana Regeneration Rate while on Full Life" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [52125]={ + connections={ + [1]={ + id=2847, + orbit=0 + }, + [2]={ + id=21721, + orbit=0 + } + }, + group=781, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=52125, + stats={ + [1]="+5 to any Attribute" + } + }, + [52126]={ + connections={ + [1]={ + id=21885, + orbit=3 + } + }, + group=258, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold and Strength", + orbit=2, + orbitIndex=0, + skill=52126, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [52180]={ + connections={ + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Trained Deflection", + orbit=1, + orbitIndex=9, + skill=52180, + stats={ + [1]="Prevent +6% of Damage from Deflected Hits" + } + }, + [52191]={ + connections={ + [1]={ + id=57724, + orbit=-7 + } + }, + group=1247, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Event Horizon", + orbit=0, + orbitIndex=0, + skill=52191, + stats={ + [1]="53% increased Chaos Damage", + [2]="Lose 3% of maximum Life and Energy Shield when you use a Chaos Skill" + } + }, + [52199]={ + connections={ + [1]={ + id=44498, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Overexposure", + orbit=0, + orbitIndex=0, + skill=52199, + stats={ + [1]="30% increased Exposure Effect" + } + }, + [52215]={ + connections={ + [1]={ + id=56366, + orbit=0 + } + }, + group=1467, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Critical Chance", + orbit=0, + orbitIndex=0, + skill=52215, + stats={ + [1]="10% increased Critical Hit Chance with Daggers" + } + }, + [52220]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=0, + orbitIndex=0, + skill=52220 + }, + [52229]={ + connections={ + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.png", + isNotable=true, + name="Secrets of the Orb", + orbit=0, + orbitIndex=0, + skill=52229, + stats={ + [1]="Orb Skills have +1 to Limit" + } + }, + [52241]={ + connections={ + [1]={ + id=94, + orbit=2 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana on Kill", + orbit=1, + orbitIndex=3, + skill=52241, + stats={ + [1]="Recover 1% of maximum Mana on Kill" + } + }, + [52245]={ + connections={ + }, + group=1431, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png", + isNotable=true, + name="Distant Dreamer", + orbit=0, + orbitIndex=0, + skill=52245, + stats={ + [1]="+10% to Chaos Resistance", + [2]="Gain 5% of Damage as Extra Chaos Damage", + [3]="50% reduced effect of Withered on you" + } + }, + [52254]={ + connections={ + [1]={ + id=42290, + orbit=0 + } + }, + group=853, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=7, + orbitIndex=14, + skill=52254, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [52257]={ + connections={ + }, + group=1412, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Conductive Embrace", + orbit=0, + orbitIndex=0, + skill=52257, + stats={ + [1]="+10% to Lightning Resistance", + [2]="+2% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed" + } + }, + [52260]={ + connections={ + [1]={ + id=3688, + orbit=-2 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=2, + orbitIndex=8, + skill=52260, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [52274]={ + connections={ + [1]={ + id=3109, + orbit=0 + }, + [2]={ + id=21077, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Damage", + orbit=3, + orbitIndex=9, + skill=52274, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [52295]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=39595, + orbit=7 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Evasion and Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=15, + skill=52295, + stats={ + [1]="15% increased Evasion Rating", + [2]="15% increased maximum Energy Shield" + } + }, + [52298]={ + connections={ + [1]={ + id=4527, + orbit=0 + }, + [2]={ + id=26725, + orbit=0 + }, + [3]={ + id=53308, + orbit=0 + }, + [4]={ + id=31805, + orbit=0 + }, + [5]={ + id=52126, + orbit=0 + } + }, + group=257, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=52298, + stats={ + [1]="+5 to any Attribute" + } + }, + [52300]={ + connections={ + [1]={ + id=53440, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Rage on Hit", + orbit=3, + orbitIndex=9, + skill=52300, + stats={ + [1]="Gain 1 Rage on Melee Axe Hit" + } + }, + [52319]={ + connections={ + [1]={ + id=48305, + orbit=-6 + } + }, + group=624, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=36, + skill=52319, + stats={ + [1]="+5 to any Attribute" + } + }, + [52348]={ + connections={ + [1]={ + id=51206, + orbit=-5 + }, + [2]={ + id=34487, + orbit=0 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Carved Earth", + orbit=7, + orbitIndex=15, + skill=52348, + stats={ + [1]="20% increased Totem Damage", + [2]="6% increased Attack and Cast Speed if you've summoned a Totem Recently" + } + }, + [52351]={ + connections={ + [1]={ + id=52260, + orbit=0 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=2, + orbitIndex=12, + skill=52351, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [52354]={ + connections={ + [1]={ + id=41171, + orbit=0 + } + }, + group=975, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Damage", + orbit=0, + orbitIndex=0, + skill=52354, + stats={ + [1]="16% increased Attack Damage against Rare or Unique Enemies" + } + }, + [52361]={ + connections={ + [1]={ + id=26107, + orbit=7 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=2, + orbitIndex=9, + skill=52361, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [52373]={ + connections={ + [1]={ + id=37276, + orbit=-2 + }, + [2]={ + id=56342, + orbit=7 + } + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + orbit=2, + orbitIndex=20, + skill=52373, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [52374]={ + ascendancyName="Oracle", + connections={ + }, + group=21, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.png", + isNotable=true, + name="Unnamed Heartwood", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=52374, + stats={ + [1]="+1 to maximum number of Summoned Totems", + [2]="Totems die 6 seconds after their Life is reduced to 0" + } + }, + [52392]={ + connections={ + [1]={ + id=25934, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Singular Purpose", + orbit=3, + orbitIndex=17, + skill=52392, + stats={ + [1]="5% reduced Attack Speed", + [2]="20% increased Stun Buildup", + [3]="40% increased Damage with Two Handed Weapons" + } + }, + [52395]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=56331, + orbit=0 + }, + [2]={ + id=26283, + orbit=0 + }, + [3]={ + id=664, + orbit=0 + } + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.png", + isMultipleChoice=true, + isNotable=true, + name="Lucid Dreaming", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=27, + skill=52395 + }, + [52399]={ + connections={ + [1]={ + id=9444, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Critical Damage", + orbit=5, + orbitIndex=38, + skill=52399, + stats={ + [1]="18% increased Critical Damage Bonus with Quarterstaves" + } + }, + [52410]={ + connections={ + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Stun Threshold during Parry", + orbit=4, + orbitIndex=26, + skill=52410, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [52415]={ + connections={ + [1]={ + id=32655, + orbit=0 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Attack Speed with Companion in Presence", + orbit=2, + orbitIndex=22, + skill=52415, + stats={ + [1]="4% increased Attack Speed while your Companion is in your Presence" + } + }, + [52429]={ + connections={ + [1]={ + id=58930, + orbit=7 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=3, + orbitIndex=13, + skill=52429, + stats={ + [1]="3% increased Cast Speed" + } + }, + [52440]={ + connections={ + [1]={ + id=53893, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=2, + orbitIndex=18, + skill=52440, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [52442]={ + connections={ + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=2, + orbitIndex=20, + skill=52442, + stats={ + [1]="3% increased Attack Speed" + } + }, + [52445]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + connections={ + }, + group=1315, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=52445 + }, + [52448]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.png", + isNotable=true, + name="...and Scatter Them to the Winds", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=53, + skill=52448, + stats={ + [1]="Trigger Elemental Expression on Melee Critical Hit", + [2]="Grants Skill: Elemental Expression" + } + }, + [52454]={ + connections={ + [1]={ + id=46604, + orbit=3 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=3, + orbitIndex=21, + skill=52454, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [52462]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=52462 + }, + [52464]={ + connections={ + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=6, + orbitIndex=24, + skill=52464, + stats={ + [1]="Recover 1% of maximum Life on Kill" + } + }, + [52501]={ + connections={ + [1]={ + id=60700, + orbit=0 + } + }, + group=1219, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Empowered Attack Freeze Buildup", + orbit=7, + orbitIndex=8, + skill=52501, + stats={ + [1]="20% increased Freeze Buildup with Empowered Attacks" + } + }, + [52537]={ + connections={ + }, + group=1422, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Penetration", + orbit=2, + orbitIndex=13, + skill=52537, + stats={ + [1]="10% increased Magnitude of Chill you inflict" + } + }, + [52556]={ + connections={ + [1]={ + id=16347, + orbit=-7 + }, + [2]={ + id=28304, + orbit=0 + } + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage", + orbit=2, + orbitIndex=8, + skill=52556, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [52568]={ + connections={ + [1]={ + id=3665, + orbit=-7 + }, + [2]={ + id=62779, + orbit=0 + } + }, + group=987, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.png", + isNotable=true, + name="Bond of the Owl", + orbit=0, + orbitIndex=0, + skill=52568, + stats={ + [1]="Gain 6% of Damage as Extra Cold Damage", + [2]="Companions gain 12% Damage as extra Cold Damage" + } + }, + [52574]={ + connections={ + [1]={ + id=55478, + orbit=-7 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=7, + orbitIndex=21, + skill=52574, + stats={ + [1]="6% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [52576]={ + connections={ + [1]={ + id=64550, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Damage vs Immobilised", + orbit=2, + orbitIndex=9, + skill=52576, + stats={ + [1]="20% increased Damage against Immobilised Enemies" + } + }, + [52615]={ + connections={ + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Spell Area of Effect", + orbit=7, + orbitIndex=18, + skill=52615, + stats={ + [1]="Spell Skills have 6% increased Area of Effect" + } + }, + [52618]={ + connections={ + [1]={ + id=32777, + orbit=0 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Boon of the Beast", + orbit=3, + orbitIndex=18, + skill=52618, + stats={ + [1]="When you Shapeshift to Human form, gain 10% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds" + } + }, + [52630]={ + connections={ + [1]={ + id=61800, + orbit=0 + }, + [2]={ + id=28371, + orbit=0 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Critical Damage vs Full Life", + orbit=7, + orbitIndex=13, + skill=52630, + stats={ + [1]="40% increased Critical Damage Bonus against Enemies that are on Full Life" + } + }, + [52659]={ + connections={ + [1]={ + id=10362, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=7, + orbitIndex=20, + skill=52659, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [52676]={ + connections={ + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Duration", + orbit=7, + orbitIndex=3, + skill=52676, + stats={ + [1]="16% increased Minion Duration" + } + }, + [52684]={ + connections={ + [1]={ + id=8115, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Eroding Chains", + orbit=4, + orbitIndex=32, + skill=52684, + stats={ + [1]="Break 50% of Armour on Pinning an Enemy" + } + }, + [52695]={ + connections={ + [1]={ + id=57230, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=7, + orbitIndex=1, + skill=52695, + stats={ + [1]="10% increased Physical Damage" + } + }, + [52703]={ + ascendancyName="Blood Mage", + connections={ + }, + group=940, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.png", + isNotable=true, + name="Gore Spike", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=52703, + stats={ + [1]="1% increased Critical Damage Bonus per 50 current Life" + } + }, + [52743]={ + connections={ + [1]={ + id=34541, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=10, + skill=52743, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [52746]={ + connections={ + [1]={ + id=9796, + orbit=0 + }, + [2]={ + id=64471, + orbit=3 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=2, + orbitIndex=12, + skill=52746, + stats={ + [1]="12% increased Fire Damage" + } + }, + [52764]={ + connections={ + [1]={ + id=47606, + orbit=0 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Mystical Rage", + orbit=1, + orbitIndex=0, + skill=52764, + stats={ + [1]="Every Rage also grants 2% increased Spell Damage" + } + }, + [52765]={ + connections={ + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=12, + skill=52765, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [52774]={ + connections={ + [1]={ + id=5084, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=18, + skill=52774, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [52796]={ + connections={ + [1]={ + id=30371, + orbit=-6 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Damage", + orbit=4, + orbitIndex=66, + skill=52796, + stats={ + [1]="Attack Skills deal 10% increased Damage while holding a Shield" + } + }, + [52799]={ + connections={ + [1]={ + id=47270, + orbit=-4 + }, + [2]={ + id=19955, + orbit=4 + }, + [3]={ + id=44455, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=3, + orbitIndex=0, + skill=52799, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [52800]={ + connections={ + [1]={ + id=57615, + orbit=0 + } + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Surpassing Arrow Chance", + orbit=6, + orbitIndex=54, + skill=52800, + stats={ + [1]="+8% Surpassing chance to fire an additional Arrow" + } + }, + [52803]={ + connections={ + [1]={ + id=59356, + orbit=0 + } + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Hale Traveller", + orbit=7, + orbitIndex=0, + skill=52803, + stats={ + [1]="20% increased Life Recovery from Flasks", + [2]="Life Flasks gain 0.1 charges per Second" + } + }, + [52807]={ + connections={ + [1]={ + id=60551, + orbit=0 + }, + [2]={ + id=61836, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=10, + skill=52807, + stats={ + [1]="15% increased Presence Area of Effect" + } + }, + [52829]={ + connections={ + [1]={ + id=375, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Mace Damage and Stun Buildup", + orbit=4, + orbitIndex=63, + skill=52829, + stats={ + [1]="12% increased Stun Buildup", + [2]="10% increased Damage with Maces" + } + }, + [52836]={ + connections={ + [1]={ + id=11980, + orbit=7 + }, + [2]={ + id=56806, + orbit=0 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=4, + orbitIndex=66, + skill=52836, + stats={ + [1]="5% increased Block chance" + } + }, + [52860]={ + connections={ + [1]={ + id=45494, + orbit=0 + }, + [2]={ + id=40975, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Damage", + orbit=7, + orbitIndex=12, + skill=52860, + stats={ + [1]="15% increased Ballista damage" + } + }, + [52875]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=52875 + }, + [52971]={ + connections={ + [1]={ + id=21227, + orbit=-2 + }, + [2]={ + id=25528, + orbit=0 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.png", + isNotable=true, + name="The Soul Meridian", + orbit=4, + orbitIndex=45, + skill=52971, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating", + [2]="8% faster start of Energy Shield Recharge", + [3]="10% increased Mana Cost Efficiency", + [4]="10% increased Reservation Efficiency of Minion Skills" + } + }, + [52973]={ + connections={ + [1]={ + id=12851, + orbit=0 + }, + [2]={ + id=57555, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Impale Chance", + orbit=2, + orbitIndex=11, + skill=52973, + stats={ + [1]="15% chance to Impale on Spell Hit" + } + }, + [52980]={ + connections={ + [1]={ + id=18970, + orbit=0 + }, + [2]={ + id=44343, + orbit=-4 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=4, + orbitIndex=48, + skill=52980, + stats={ + [1]="+8 to Evasion Rating", + [2]="+5 to maximum Energy Shield" + } + }, + [52993]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=9414, + orbit=0 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=4, + skill=52993, + stats={ + [1]="16% increased Elemental Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [53030]={ + connections={ + [1]={ + id=11525, + orbit=0 + }, + [2]={ + id=48267, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Immolation", + orbit=2, + orbitIndex=2, + skill=53030, + stats={ + [1]="25% increased Ignite Magnitude", + [2]="+10 to Strength" + } + }, + [53089]={ + connections={ + [1]={ + id=9918, + orbit=0 + }, + [2]={ + id=10474, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=12, + skill=53089, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [53094]={ + connections={ + [1]={ + id=38703, + orbit=0 + }, + [2]={ + id=51048, + orbit=0 + } + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=20, + skill=53094, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [53108]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=36822, + orbit=0 + } + }, + group=532, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.png", + isNotable=true, + name="Adaptive Capability", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=53108, + stats={ + [1]="Attribute Requirements of Gems can be satisified by your highest Attribute" + } + }, + [53123]={ + connections={ + [1]={ + id=8421, + orbit=-2 + }, + [2]={ + id=54982, + orbit=-2 + }, + [3]={ + id=5862, + orbit=-2 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/ElementalDominion2.png", + name="Shaman", + orbit=7, + orbitIndex=18, + skill=53123, + stats={ + [1]="+3% to all Elemental Resistances" + } + }, + [53131]={ + connections={ + [1]={ + id=7060, + orbit=0 + }, + [2]={ + id=46665, + orbit=0 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + isNotable=true, + name="Tukohama's Brew", + orbit=7, + orbitIndex=16, + skill=53131, + stats={ + [1]="50% of Skill Mana costs Converted to Life Costs during any Life Flask Effect" + } + }, + [53149]={ + connections={ + [1]={ + id=24647, + orbit=-5 + } + }, + group=1023, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Freeze Buildup", + orbit=4, + orbitIndex=22, + skill=53149, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [53150]={ + connections={ + [1]={ + id=15270, + orbit=0 + }, + [2]={ + id=17589, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Sharp Sight", + orbit=3, + orbitIndex=18, + skill=53150, + stats={ + [1]="5% increased Attack Speed", + [2]="30% increased Accuracy Rating against Rare or Unique Enemies" + } + }, + [53166]={ + connections={ + [1]={ + id=26194, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=7, + orbitIndex=21, + skill=53166, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [53177]={ + connections={ + [1]={ + id=43944, + orbit=0 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility when Stunned", + orbit=2, + orbitIndex=3, + skill=53177, + stats={ + [1]="50% chance to gain Volatility when you are Stunned" + } + }, + [53185]={ + connections={ + }, + group=1449, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.png", + isNotable=true, + name="The Winter Owl", + orbit=3, + orbitIndex=19, + skill=53185, + stats={ + [1]="3% increased Evasion Rating per 10 Intelligence", + [2]="Gain Accuracy Rating equal to your Intelligence", + [3]="+10 to Intelligence" + } + }, + [53187]={ + connections={ + [1]={ + id=35011, + orbit=0 + }, + [2]={ + id=57775, + orbit=0 + } + }, + group=426, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Warlord Berserker", + orbit=2, + orbitIndex=22, + skill=53187, + stats={ + [1]="40% reduced Presence Area of Effect", + [2]="Allies in your Presence Regenerate 5 Rage per second if you have gained Rage Recently" + } + }, + [53188]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=53188 + }, + [53194]={ + connections={ + [1]={ + id=38130, + orbit=3 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown Speed", + orbit=2, + orbitIndex=16, + skill=53194, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [53196]={ + connections={ + [1]={ + id=46692, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask and Charm Charges Gained", + orbit=7, + orbitIndex=12, + skill=53196, + stats={ + [1]="8% increased Flask and Charm Charges gained" + } + }, + [53207]={ + connections={ + [1]={ + id=47635, + orbit=0 + }, + [2]={ + id=56914, + orbit=0 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=1, + orbitIndex=4, + skill=53207, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [53216]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=258, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=53216 + }, + [53261]={ + connections={ + [1]={ + id=30780, + orbit=-2 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Area and Damage", + orbit=7, + orbitIndex=11, + skill=53261, + stats={ + [1]="4% increased Area of Effect of Ancestrally Boosted Attacks", + [2]="Ancestrally Boosted Attacks deal 8% increased Damage" + } + }, + [53265]={ + connections={ + }, + group=1429, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Nature's Bite", + orbit=0, + orbitIndex=0, + skill=53265, + stats={ + [1]="20% increased Elemental Damage", + [2]="15% increased chance to inflict Ailments" + } + }, + [53266]={ + connections={ + [1]={ + id=13576, + orbit=0 + }, + [2]={ + id=20387, + orbit=0 + }, + [3]={ + id=53560, + orbit=0 + } + }, + group=955, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Skill Speed", + orbit=0, + orbitIndex=0, + skill=53266, + stats={ + [1]="3% increased Attack and Cast Speed with Lightning Skills" + } + }, + [53272]={ + connections={ + [1]={ + id=2560, + orbit=0 + }, + [2]={ + id=2582, + orbit=0 + } + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=3, + orbitIndex=20, + skill=53272, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [53280]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=41751, + orbit=3 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Attack Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=3, + orbitIndex=3, + skill=53280, + stats={ + [1]="4% increased Attack Speed" + } + }, + [53294]={ + connections={ + [1]={ + id=33397, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Burn Away", + orbit=0, + orbitIndex=0, + skill=53294, + stats={ + [1]="15% increased Fire Damage", + [2]="10% increased Ignite Magnitude", + [3]="Damage Penetrates 10% Fire Resistance" + } + }, + [53308]={ + connections={ + [1]={ + id=17138, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=5, + skill=53308, + stats={ + [1]="10% increased Melee Damage" + } + }, + [53320]={ + connections={ + [1]={ + id=43791, + orbit=0 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=2, + orbitIndex=22, + skill=53320, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [53324]={ + connections={ + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=3, + orbitIndex=8, + skill=53324, + stats={ + [1]="15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [53329]={ + connections={ + [1]={ + id=64724, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability and Ignite Magnitude", + orbit=2, + orbitIndex=20, + skill=53329, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="8% increased Ignite Magnitude" + } + }, + [53354]={ + connections={ + [1]={ + id=36250, + orbit=4 + }, + [2]={ + id=33408, + orbit=5 + }, + [3]={ + id=20289, + orbit=0 + } + }, + group=118, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Life Leech", + orbit=0, + orbitIndex=0, + skill=53354, + stats={ + [1]="10% increased amount of Life Leeched while Shapeshifted" + } + }, + [53367]={ + connections={ + [1]={ + id=12821, + orbit=0 + }, + [2]={ + id=65353, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + isNotable=true, + name="Symbol of Defiance", + orbit=3, + orbitIndex=0, + skill=53367, + stats={ + [1]="Banner Skills have 30% increased Area of Effect", + [2]="Banner Skills have 30% increased Duration" + } + }, + [53373]={ + connections={ + [1]={ + id=39517, + orbit=3 + }, + [2]={ + id=36629, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=4, + orbitIndex=45, + skill=53373, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [53386]={ + connections={ + [1]={ + id=57388, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Damage", + orbit=7, + orbitIndex=0, + skill=53386, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [53396]={ + connections={ + [1]={ + id=10156, + orbit=6 + } + }, + group=624, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=53396, + stats={ + [1]="+5 to any Attribute" + } + }, + [53405]={ + connections={ + [1]={ + id=17468, + orbit=0 + }, + [2]={ + id=16090, + orbit=6 + }, + [3]={ + id=26798, + orbit=4 + }, + [4]={ + id=8693, + orbit=0 + } + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=42, + skill=53405, + stats={ + [1]="+5 to any Attribute" + } + }, + [53440]={ + connections={ + [1]={ + id=11306, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Rage on Hit", + orbit=3, + orbitIndex=7, + skill=53440, + stats={ + [1]="Gain 2 Rage on Melee Axe Hit" + } + }, + [53443]={ + connections={ + [1]={ + id=5710, + orbit=-6 + }, + [2]={ + id=59767, + orbit=0 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=3, + orbitIndex=8, + skill=53443, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [53444]={ + connections={ + [1]={ + id=752, + orbit=5 + } + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Duration", + orbit=4, + orbitIndex=31, + skill=53444, + stats={ + [1]="12% increased Minion Duration" + } + }, + [53471]={ + connections={ + [1]={ + id=11836, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Critical vs Blinded", + orbit=7, + orbitIndex=4, + skill=53471, + stats={ + [1]="12% increased Critical Hit Chance against Blinded Enemies" + } + }, + [53505]={ + connections={ + [1]={ + id=21468, + orbit=6 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech", + orbit=2, + orbitIndex=18, + skill=53505, + stats={ + [1]="Leech Life 8% faster" + } + }, + [53524]={ + connections={ + [1]={ + id=32727, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Armour Break", + orbit=7, + orbitIndex=19, + skill=53524, + stats={ + [1]="Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt" + } + }, + [53527]={ + connections={ + [1]={ + id=58855, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Shattering Blow", + orbit=7, + orbitIndex=0, + skill=53527, + stats={ + [1]="Break 50% of Armour on Heavy Stunning an Enemy" + } + }, + [53539]={ + connections={ + [1]={ + id=46705, + orbit=0 + }, + [2]={ + id=13379, + orbit=0 + } + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage if Melee Hit", + orbit=3, + orbitIndex=6, + skill=53539, + stats={ + [1]="15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" + } + }, + [53560]={ + connections={ + [1]={ + id=46157, + orbit=0 + } + }, + group=988, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Skill Chain Chance", + orbit=0, + orbitIndex=0, + skill=53560, + stats={ + [1]="20% chance for Lightning Skills to Chain an additional time" + } + }, + [53566]={ + connections={ + }, + group=1104, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + isNotable=true, + name="Run and Gun", + orbit=4, + orbitIndex=29, + skill=53566, + stats={ + [1]="5% reduced Movement Speed Penalty from using Skills while moving", + [2]="Projectile Attacks have a 12% chance to fire two additional Projectiles while moving" + } + }, + [53589]={ + connections={ + [1]={ + id=25374, + orbit=0 + } + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=53589, + stats={ + [1]="+5 to any Attribute" + } + }, + [53595]={ + connections={ + [1]={ + id=29458, + orbit=7 + }, + [2]={ + id=38628, + orbit=0 + } + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=3, + orbitIndex=19, + skill=53595, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [53607]={ + connections={ + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + isNotable=true, + name="Fortified Location", + orbit=4, + orbitIndex=3, + skill=53607, + stats={ + [1]="10% increased Armour and Evasion Rating per Summoned Totem in your Presence", + [2]="10% increased Attack Damage per Summoned Totem in your Presence" + } + }, + [53632]={ + connections={ + [1]={ + id=28482, + orbit=3 + } + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage", + orbit=2, + orbitIndex=8, + skill=53632, + stats={ + [1]="12% increased Fire Damage" + } + }, + [53647]={ + connections={ + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=12, + skill=53647, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [53675]={ + connections={ + [1]={ + id=59498, + orbit=0 + } + }, + group=445, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=0, + skill=53675, + stats={ + [1]="15% increased Presence Area of Effect" + } + }, + [53683]={ + connections={ + [1]={ + id=30082, + orbit=0 + }, + [2]={ + id=61432, + orbit=0 + } + }, + group=921, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Efficient Loading", + orbit=0, + orbitIndex=0, + skill=53683, + stats={ + [1]="30% chance when you Reload a Crossbow to be immediate" + } + }, + [53696]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=53696 + }, + [53697]={ + connections={ + [1]={ + id=47555, + orbit=7 + }, + [2]={ + id=3041, + orbit=-3 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=26, + skill=53697, + stats={ + [1]="+5 to any Attribute" + } + }, + [53698]={ + connections={ + [1]={ + id=20916, + orbit=-3 + }, + [2]={ + id=59355, + orbit=0 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=7, + orbitIndex=22, + skill=53698, + stats={ + [1]="10% increased Attack Damage" + } + }, + [53719]={ + connections={ + [1]={ + id=27082, + orbit=0 + } + }, + group=161, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=53719, + stats={ + [1]="+5 to any Attribute" + } + }, + [53762]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=36728, + orbit=0 + } + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=53762, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [53771]={ + connections={ + [1]={ + id=52361, + orbit=-2 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=3, + orbitIndex=9, + skill=53771, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [53785]={ + connections={ + [1]={ + id=1170, + orbit=0 + }, + [2]={ + id=23307, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=3, + orbitIndex=18, + skill=53785, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [53795]={ + connections={ + [1]={ + id=62210, + orbit=5 + }, + [2]={ + id=53324, + orbit=-4 + }, + [3]={ + id=64804, + orbit=-5 + } + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=0, + orbitIndex=0, + skill=53795, + stats={ + [1]="15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [53804]={ + connections={ + [1]={ + id=56112, + orbit=7 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Fire Damage", + orbit=4, + orbitIndex=48, + skill=53804, + stats={ + [1]="10% increased Fire Damage" + } + }, + [53822]={ + connections={ + }, + group=133, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=7, + orbitIndex=14, + skill=53822, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [53823]={ + connections={ + [1]={ + id=10508, + orbit=-3 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Towering Shield", + orbit=3, + orbitIndex=18, + skill=53823, + stats={ + [1]="25% increased Chance to Block if you've Blocked with a raised Shield Recently", + [2]="50% increased Armour, Evasion and Energy Shield from Equipped Shield" + } + }, + [53853]={ + connections={ + [1]={ + id=57320, + orbit=0 + } + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Backup Plan", + orbit=7, + orbitIndex=19, + skill=53853, + stats={ + [1]="20% increased Armour and Evasion Rating", + [2]="40% increased Evasion Rating if you have been Hit Recently", + [3]="40% increased Armour if you haven't been Hit Recently" + } + }, + [53893]={ + connections={ + [1]={ + id=21784, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=2, + orbitIndex=14, + skill=53893, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [53895]={ + connections={ + [1]={ + id=17303, + orbit=2 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + name="Grenade Fuse Duration", + orbit=3, + orbitIndex=8, + skill=53895, + stats={ + [1]="15% reduced Grenade Detonation Time" + } + }, + [53901]={ + connections={ + [1]={ + id=34375, + orbit=7 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=3, + orbitIndex=12, + skill=53901, + stats={ + [1]="5% increased Block chance" + } + }, + [53910]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=9212, + orbit=0 + }, + [2]={ + id=58368, + orbit=7 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + isNotable=true, + name="Forbidden Path", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=53910, + stats={ + [1]="5% reduced maximum Life", + [2]="-10% to all Elemental Resistances", + [3]="Minions Recoup 30% of Damage taken as Life", + [4]="Minions Gain 20% of Elemental Damage as Extra Chaos Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [53921]={ + connections={ + [1]={ + id=58838, + orbit=0 + }, + [2]={ + id=40596, + orbit=0 + } + }, + group=305, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Unbreaking", + orbit=5, + orbitIndex=48, + skill=53921, + stats={ + [1]="30% increased Stun Threshold", + [2]="30% increased Elemental Ailment Threshold" + } + }, + [53935]={ + connections={ + [1]={ + id=10677, + orbit=2 + }, + [2]={ + id=25281, + orbit=0 + } + }, + group=995, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Briny Carapace", + orbit=2, + orbitIndex=14, + skill=53935, + stats={ + [1]="100% increased Stun Threshold for each time you've been Stunned Recently" + } + }, + [53938]={ + connections={ + [1]={ + id=36931, + orbit=0 + } + }, + group=1075, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage", + orbit=2, + orbitIndex=18, + skill=53938, + stats={ + [1]="10% increased Attack Damage" + } + }, + [53941]={ + connections={ + [1]={ + id=17283, + orbit=0 + } + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Shimmering", + orbit=3, + orbitIndex=12, + skill=53941, + stats={ + [1]="10% faster start of Energy Shield Recharge", + [2]="20% increased Evasion Rating if you haven't been Hit Recently", + [3]="3% increased Movement Speed while you have Energy Shield" + } + }, + [53958]={ + connections={ + [1]={ + id=51006, + orbit=2 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=3, + orbitIndex=23, + skill=53958, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [53960]={ + connections={ + [1]={ + id=8975, + orbit=-5 + } + }, + group=978, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=54, + skill=53960, + stats={ + [1]="+5 to any Attribute" + } + }, + [53965]={ + connections={ + [1]={ + id=12337, + orbit=0 + } + }, + group=1026, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=53965, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [53975]={ + connections={ + [1]={ + id=33254, + orbit=0 + } + }, + group=760, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=2, + orbitIndex=8, + skill=53975, + stats={ + [1]="10% increased Spell Damage" + } + }, + [53989]={ + connections={ + [1]={ + id=29372, + orbit=8 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=6, + orbitIndex=59, + skill=53989, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [53996]={ + connections={ + [1]={ + id=9941, + orbit=7 + }, + [2]={ + id=28556, + orbit=3 + } + }, + group=884, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=22, + skill=53996, + stats={ + [1]="8% increased Melee Damage" + } + }, + [54031]={ + connections={ + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.png", + isNotable=true, + name="The Great Boar", + orbit=0, + orbitIndex=0, + skill=54031, + stats={ + [1]="+1 Life per 4 Dexterity", + [2]="+1 to Stun Threshold per Dexterity", + [3]="+5 to Strength" + } + }, + [54036]={ + connections={ + [1]={ + id=30720, + orbit=0 + }, + [2]={ + id=15809, + orbit=-7 + }, + [3]={ + id=17501, + orbit=-7 + }, + [4]={ + id=18485, + orbit=0 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage", + orbit=3, + orbitIndex=2, + skill=54036, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [54058]={ + connections={ + [1]={ + id=62001, + orbit=0 + } + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + name="Dagger Critical Damage", + orbit=0, + orbitIndex=0, + skill=54058, + stats={ + [1]="10% increased Critical Damage Bonus with Daggers" + } + }, + [54067]={ + connections={ + [1]={ + id=27626, + orbit=0 + }, + [2]={ + id=2244, + orbit=-4 + } + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Arcane Surge on Critical Hit", + orbit=5, + orbitIndex=49, + skill=54067, + stats={ + [1]="5% chance to Gain Arcane Surge when you deal a Critical Hit" + } + }, + [54099]={ + connections={ + [1]={ + id=8493, + orbit=0 + }, + [2]={ + id=2847, + orbit=0 + }, + [3]={ + id=55700, + orbit=0 + } + }, + group=707, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54099, + stats={ + [1]="+5 to any Attribute" + } + }, + [54127]={ + connections={ + [1]={ + id=54282, + orbit=0 + }, + [2]={ + id=15182, + orbit=0 + }, + [3]={ + id=56978, + orbit=0 + } + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=54127 + }, + [54138]={ + connections={ + [1]={ + id=38564, + orbit=0 + }, + [2]={ + id=37963, + orbit=0 + } + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Speed", + orbit=2, + orbitIndex=12, + skill=54138, + stats={ + [1]="3% increased Attack Speed with Swords" + } + }, + [54148]={ + connections={ + [1]={ + id=52746, + orbit=0 + }, + [2]={ + id=56934, + orbit=0 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + isNotable=true, + name="Smoke Inhalation", + orbit=2, + orbitIndex=6, + skill=54148, + stats={ + [1]="Damage Penetrates 15% Fire Resistance", + [2]="15% increased Duration of Damaging Ailments on Enemies" + } + }, + [54152]={ + connections={ + [1]={ + id=43453, + orbit=0 + } + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Sprint Movement Speed", + orbit=0, + orbitIndex=0, + skill=54152, + stats={ + [1]="3% increased Movement Speed while Sprinting" + } + }, + [54176]={ + connections={ + [1]={ + id=55463, + orbit=0 + }, + [2]={ + id=26598, + orbit=0 + } + }, + group=1195, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=54176, + stats={ + [1]="15% increased chance to Shock" + } + }, + [54194]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=10987, + orbit=0 + } + }, + group=358, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Cast Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=2, + orbitIndex=3, + skill=54194, + stats={ + [1]="6% increased Cast Speed" + } + }, + [54198]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1185, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=54198 + }, + [54228]={ + connections={ + [1]={ + id=64240, + orbit=0 + } + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=2, + orbitIndex=2, + skill=54228, + stats={ + [1]="10% increased Physical Damage" + } + }, + [54232]={ + connections={ + [1]={ + id=44659, + orbit=5 + } + }, + group=661, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54232, + stats={ + [1]="+5 to any Attribute" + } + }, + [54282]={ + connections={ + [1]={ + id=52125, + orbit=0 + }, + [2]={ + id=11066, + orbit=0 + } + }, + group=797, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=0, + skill=54282, + stats={ + [1]="+5 to any Attribute" + } + }, + [54283]={ + connections={ + [1]={ + id=26324, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=3, + orbitIndex=21, + skill=54283, + stats={ + [1]="15% increased Armour" + } + }, + [54288]={ + connections={ + [1]={ + id=35966, + orbit=7 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=8, + skill=54288, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [54289]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=230, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Gift of the Plains", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=54289, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges", + [2]="+1 to Maximum Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [54297]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=25678, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=24, + skill=54297, + stats={ + [1]="21% increased Chaos Damage", + [2]="11% increased Life Cost of Skills", + [3]="3% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [54311]={ + connections={ + [1]={ + id=28482, + orbit=7 + } + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=18, + skill=54311, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [54340]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=2, + orbitIndex=3, + skill=54340 + }, + [54351]={ + connections={ + [1]={ + id=52464, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=7, + orbitIndex=7, + skill=54351, + stats={ + [1]="Recover 1% of maximum Life on Kill" + } + }, + [54378]={ + connections={ + [1]={ + id=26863, + orbit=0 + }, + [2]={ + id=58198, + orbit=0 + } + }, + group=361, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Recover Mana on consuming Power Charge", + orbit=2, + orbitIndex=13, + skill=54378, + stats={ + [1]="Recover 2% of maximum Mana when you consume a Power Charge" + } + }, + [54380]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.png", + isOnlyImage=true, + name="Poison Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=54380, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [54413]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + connections={ + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=3, + orbitIndex=10, + skill=54413 + }, + [54416]={ + connections={ + [1]={ + id=60274, + orbit=4 + } + }, + group=153, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=6, + skill=54416, + stats={ + [1]="20% increased Armour if you have been Hit Recently" + } + }, + [54417]={ + connections={ + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=21, + skill=54417, + stats={ + [1]="+5 to any Attribute" + } + }, + [54437]={ + connections={ + [1]={ + id=16111, + orbit=-5 + }, + [2]={ + id=2397, + orbit=0 + }, + [3]={ + id=8493, + orbit=0 + } + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Attack Damage on Low Life", + orbit=7, + orbitIndex=20, + skill=54437, + stats={ + [1]="20% increased Attack Damage while on Low Life" + } + }, + [54447]={ + classesStart={ + [1]="Witch", + [2]="Sorceress" + }, + connections={ + [1]={ + id=23710, + orbit=0 + }, + [2]={ + id=59822, + orbit=0 + }, + [3]={ + id=32699, + orbit=0 + }, + [4]={ + id=40721, + orbit=0 + }, + [5]={ + id=22147, + orbit=0 + }, + [6]={ + id=8305, + orbit=0 + }, + [7]={ + id=4739, + orbit=0 + } + }, + group=780, + icon="Art/2DArt/SkillIcons/passives/blankInt.png", + name="WITCH", + orbit=0, + orbitIndex=0, + skill=54447 + }, + [54453]={ + connections={ + [1]={ + id=19006, + orbit=0 + }, + [2]={ + id=61042, + orbit=0 + } + }, + group=639, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage and Life", + orbit=2, + orbitIndex=12, + skill=54453, + stats={ + [1]="Minions have 6% increased maximum Life", + [2]="Minions deal 6% increased Damage" + } + }, + [54485]={ + connections={ + [1]={ + id=25482, + orbit=0 + } + }, + group=385, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=7, + orbitIndex=22, + skill=54485, + stats={ + [1]="+8 to Strength" + } + }, + [54512]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=56933, + orbit=6 + } + }, + group=64, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Maximum Rage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=54512, + stats={ + [1]="+3 to Maximum Rage" + } + }, + [54521]={ + connections={ + [1]={ + id=13537, + orbit=5 + }, + [2]={ + id=58789, + orbit=0 + }, + [3]={ + id=22185, + orbit=4 + } + }, + group=652, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54521, + stats={ + [1]="+5 to any Attribute" + } + }, + [54545]={ + connections={ + [1]={ + id=38342, + orbit=0 + } + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Daze Magnitude", + orbit=2, + orbitIndex=0, + skill=54545, + stats={ + [1]="15% increased Magnitude of Daze" + } + }, + [54557]={ + connections={ + [1]={ + id=9421, + orbit=-6 + } + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=2, + skill=54557, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [54562]={ + connections={ + [1]={ + id=2745, + orbit=0 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png", + name="Critical Chance", + orbit=2, + orbitIndex=10, + skill=54562, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [54631]={ + connections={ + [1]={ + id=30132, + orbit=0 + } + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Quiver Effect", + orbit=0, + orbitIndex=0, + skill=54631, + stats={ + [1]="6% increased bonuses gained from Equipped Quiver" + } + }, + [54632]={ + connections={ + [1]={ + id=36507, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Chaos Resistance", + orbit=2, + orbitIndex=12, + skill=54632, + stats={ + [1]="Minions have 8% increased maximum Life", + [2]="Minions have +7% to Chaos Resistance" + } + }, + [54640]={ + connections={ + [1]={ + id=64042, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Constricting", + orbit=0, + orbitIndex=0, + skill=54640, + stats={ + [1]="Debuffs you inflict have 5% increased Slow Magnitude", + [2]="25% increased Physical Damage" + } + }, + [54675]={ + connections={ + [1]={ + id=58814, + orbit=0 + } + }, + group=947, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=54675, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [54676]={ + connections={ + [1]={ + id=39759, + orbit=0 + }, + [2]={ + id=37612, + orbit=0 + } + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=2, + orbitIndex=15, + skill=54676, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [54678]={ + connections={ + [1]={ + id=41877, + orbit=0 + } + }, + group=1264, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=54678, + stats={ + [1]="15% increased chance to Shock" + } + }, + [54701]={ + connections={ + [1]={ + id=21089, + orbit=2 + }, + [2]={ + id=1286, + orbit=-7 + } + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + orbit=7, + orbitIndex=16, + skill=54701, + stats={ + [1]="16% increased Thorns damage" + } + }, + [54708]={ + connections={ + [1]={ + id=13855, + orbit=0 + }, + [2]={ + id=3918, + orbit=0 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=11, + skill=54708, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [54725]={ + connections={ + [1]={ + id=56336, + orbit=0 + } + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Activation Speed and Effect", + orbit=7, + orbitIndex=0, + skill=54725, + stats={ + [1]="3% increased Curse Magnitudes", + [2]="10% faster Curse Activation" + } + }, + [54733]={ + connections={ + [1]={ + id=5314, + orbit=-4 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=4, + orbitIndex=55, + skill=54733, + stats={ + [1]="15% increased Effect of Puppet Master" + } + }, + [54746]={ + connections={ + [1]={ + id=14343, + orbit=7 + } + }, + group=1096, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance and Effect", + orbit=0, + orbitIndex=0, + skill=54746, + stats={ + [1]="6% increased chance to inflict Ailments", + [2]="6% increased Magnitude of Damaging Ailments you inflict" + } + }, + [54783]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + connections={ + }, + group=895, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + isOnlyImage=true, + name="Mana Mastery", + orbit=1, + orbitIndex=10, + skill=54783 + }, + [54785]={ + connections={ + [1]={ + id=32885, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=2, + orbitIndex=7, + skill=54785, + stats={ + [1]="5% increased Block chance" + } + }, + [54805]={ + connections={ + }, + group=1077, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Hindered Capabilities", + orbit=5, + orbitIndex=27, + skill=54805, + stats={ + [1]="30% increased Damage with Hits against Hindered Enemies", + [2]="Debuffs you inflict have 10% increased Slow Magnitude" + } + }, + [54811]={ + connections={ + [1]={ + id=13474, + orbit=0 + } + }, + group=399, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54811, + stats={ + [1]="+5 to any Attribute" + } + }, + [54814]={ + connections={ + [1]={ + id=16114, + orbit=0 + } + }, + group=445, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Profane Commander", + orbit=2, + orbitIndex=14, + skill=54814, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="4% increased Spirit" + } + }, + [54818]={ + connections={ + [1]={ + id=18801, + orbit=0 + } + }, + group=721, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54818, + stats={ + [1]="+5 to any Attribute" + } + }, + [54838]={ + ascendancyName="Tactician", + connections={ + }, + group=339, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.png", + isNotable=true, + name="Right Where We Want Them", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=54838, + stats={ + [1]="Projectile Damage builds Pin", + [2]="Pinned enemies cannot perform actions" + } + }, + [54849]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=54849 + }, + [54883]={ + connections={ + [1]={ + id=34473, + orbit=-2 + } + }, + group=1272, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=54883, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [54886]={ + connections={ + [1]={ + id=56997, + orbit=-4 + } + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage and Stun", + orbit=7, + orbitIndex=20, + skill=54886, + stats={ + [1]="10% increased Stun Buildup", + [2]="10% increased Damage with Two Handed Weapons" + } + }, + [54887]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=54887 + }, + [54892]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=44371, + orbit=0 + } + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png", + name="Armour and Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=54892, + stats={ + [1]="15% increased Armour and Evasion Rating" + } + }, + [54911]={ + connections={ + [1]={ + id=11505, + orbit=0 + }, + [2]={ + id=39716, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + isNotable=true, + name="Firestarter", + orbit=2, + orbitIndex=6, + skill=54911, + stats={ + [1]="80% increased Flammability Magnitude", + [2]="Enemies Ignited by you have -5% to Fire Resistance" + } + }, + [54923]={ + connections={ + [1]={ + id=27638, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=7, + orbitIndex=7, + skill=54923, + stats={ + [1]="15% increased Glory generation" + } + }, + [54934]={ + connections={ + [1]={ + id=15494, + orbit=0 + } + }, + group=619, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Fire Damage when consuming an Endurance Charge", + orbit=2, + orbitIndex=4, + skill=54934, + stats={ + [1]="3% increased Fire Damage per Endurance Charge consumed Recently" + } + }, + [54937]={ + connections={ + }, + group=133, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + isNotable=true, + name="Vengeful Fury", + orbit=1, + orbitIndex=9, + skill=54937, + stats={ + [1]="Gain 5 Rage when Hit by an Enemy", + [2]="Every Rage also grants 1% increased Armour" + } + }, + [54962]={ + connections={ + [1]={ + id=35849, + orbit=0 + } + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration while Stationary", + orbit=7, + orbitIndex=4, + skill=54962, + stats={ + [1]="15% increased Life Regeneration Rate while stationary" + } + }, + [54964]={ + connections={ + [1]={ + id=23078, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + name="Sentinels", + orbit=2, + orbitIndex=16, + skill=54964, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [54975]={ + connections={ + [1]={ + id=7526, + orbit=-9 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect", + orbit=5, + orbitIndex=66, + skill=54975, + stats={ + [1]="Debuffs you inflict have 5% increased Slow Magnitude" + } + }, + [54982]={ + connections={ + [1]={ + id=34818, + orbit=-9 + } + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.png", + name="Fire Resistance", + orbit=1, + orbitIndex=7, + skill=54982, + stats={ + [1]="+5% to Fire Resistance" + } + }, + [54983]={ + connections={ + [1]={ + id=39369, + orbit=3 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=7, + orbitIndex=2, + skill=54983, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [54984]={ + connections={ + [1]={ + id=34015, + orbit=0 + }, + [2]={ + id=34702, + orbit=-4 + }, + [3]={ + id=55118, + orbit=0 + }, + [4]={ + id=37951, + orbit=0 + } + }, + group=1368, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=54984, + stats={ + [1]="+5 to any Attribute" + } + }, + [54985]={ + connections={ + [1]={ + id=14602, + orbit=0 + } + }, + group=568, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bolt Speed", + orbit=7, + orbitIndex=7, + skill=54985, + stats={ + [1]="8% increased Bolt Speed" + } + }, + [54990]={ + connections={ + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Bloodletting", + orbit=7, + orbitIndex=1, + skill=54990, + stats={ + [1]="10% chance to inflict Bleeding on Hit", + [2]="15% increased Magnitude of Bleeding you inflict" + } + }, + [54998]={ + connections={ + [1]={ + id=29993, + orbit=0 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Protraction", + orbit=2, + orbitIndex=5, + skill=54998, + stats={ + [1]="20% increased Skill Effect Duration", + [2]="15% increased Duration of Damaging Ailments on Enemies" + } + }, + [54999]={ + connections={ + [1]={ + id=14511, + orbit=-3 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Attack Damage and Stun", + orbit=3, + orbitIndex=2, + skill=54999, + stats={ + [1]="10% increased Stun Buildup", + [2]="Ancestrally Boosted Attacks deal 16% increased Damage" + } + }, + [55011]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connections={ + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=55011 + }, + [55033]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=17059, + orbit=-3 + } + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.png", + name="Channelling Life Recoup", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=14, + skill=55033, + stats={ + [1]="10% of Damage taken Recouped as Life while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [55041]={ + connections={ + [1]={ + id=35564, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Damage and Projectile Speed", + orbit=3, + orbitIndex=21, + skill=55041, + stats={ + [1]="8% increased Spell Damage", + [2]="5% reduced Projectile Speed for Spell Skills" + } + }, + [55048]={ + connections={ + }, + flavourText="Embrace the pain, drink it in.\nYour enemies will know your agony tenfold.", + group=201, + icon="Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", + isKeystone=true, + name="Pain Attunement", + orbit=0, + orbitIndex=0, + skill=55048, + stats={ + [1]="30% less Critical Damage Bonus when on Full Life\n30% more Critical Damage Bonus when on Low Life" + } + }, + [55058]={ + connections={ + [1]={ + id=63790, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage against Immobilised", + orbit=5, + orbitIndex=48, + skill=55058, + stats={ + [1]="20% increased Melee Damage against Immobilised Enemies" + } + }, + [55060]={ + connections={ + [1]={ + id=33037, + orbit=0 + }, + [2]={ + id=45576, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Shrapnel", + orbit=5, + orbitIndex=9, + skill=55060, + stats={ + [1]="30% chance to Pierce an Enemy", + [2]="Projectiles have 10% chance to Chain an additional time from terrain" + } + }, + [55063]={ + connections={ + [1]={ + id=51535, + orbit=4 + } + }, + group=138, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=5, + skill=55063, + stats={ + [1]="12% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [55066]={ + connections={ + [1]={ + id=19796, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Attack Damage vs Bleeding Enemies", + orbit=2, + orbitIndex=21, + skill=55066, + stats={ + [1]="16% increased Attack Damage against Bleeding Enemies" + } + }, + [55088]={ + connections={ + [1]={ + id=61196, + orbit=5 + } + }, + group=977, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + name="Critical Chance", + orbit=7, + orbitIndex=2, + skill=55088, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [55101]={ + connections={ + [1]={ + id=58016, + orbit=7 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=12, + skill=55101, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [55104]={ + connections={ + [1]={ + id=33254, + orbit=-7 + }, + [2]={ + id=19125, + orbit=7 + } + }, + group=760, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + name="Spell Damage", + orbit=7, + orbitIndex=22, + skill=55104, + stats={ + [1]="10% increased Spell Damage" + } + }, + [55118]={ + connections={ + [1]={ + id=50420, + orbit=0 + } + }, + group=1391, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.png", + name="Charm Charges", + orbit=2, + orbitIndex=18, + skill=55118, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [55131]={ + connections={ + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + isNotable=true, + name="Light on your Feet", + orbit=4, + orbitIndex=38, + skill=55131, + stats={ + [1]="3% increased Movement Speed", + [2]="Immune to Hinder", + [3]="Immune to Maim" + } + }, + [55135]={ + ascendancyName="Oracle", + connections={ + }, + group=23, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.png", + isNotable=true, + name="Forced Outcome", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=16, + skill=55135, + stats={ + [1]="Inevitable Critical Hits" + } + }, + [55149]={ + connections={ + }, + group=1284, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Pure Chaos", + orbit=0, + orbitIndex=0, + skill=55149, + stats={ + [1]="Gain 11% of Damage as Extra Chaos Damage" + } + }, + [55152]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + [1]={ + id=5580, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=3, + orbitIndex=1, + skill=55152 + }, + [55180]={ + connections={ + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Relentless Fallen", + orbit=3, + orbitIndex=15, + skill=55180, + stats={ + [1]="3% increased Movement Speed", + [2]="Minions have 20% increased Movement Speed", + [3]="Minions have 8% increased Attack and Cast Speed" + } + }, + [55190]={ + connections={ + }, + group=95, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=0, + skill=55190 + }, + [55193]={ + connections={ + [1]={ + id=10944, + orbit=-2 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Subterfuge Mask", + orbit=1, + orbitIndex=4, + skill=55193, + stats={ + [1]="+1 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet" + } + }, + [55227]={ + connections={ + [1]={ + id=29479, + orbit=0 + }, + [2]={ + id=15829, + orbit=0 + } + }, + group=1088, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=7, + orbitIndex=13, + skill=55227, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [55231]={ + connections={ + [1]={ + id=37361, + orbit=0 + }, + [2]={ + id=9857, + orbit=0 + } + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=7, + orbitIndex=13, + skill=55231, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [55235]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + connections={ + [1]={ + id=63830, + orbit=0 + }, + [2]={ + id=44756, + orbit=0 + }, + [3]={ + id=36976, + orbit=0 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkMastery.png", + isOnlyImage=true, + name="Mark Mastery", + orbit=1, + orbitIndex=4, + skill=55235 + }, + [55241]={ + connections={ + [1]={ + id=38614, + orbit=0 + } + }, + group=1011, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=1, + orbitIndex=4, + skill=55241, + stats={ + [1]="4% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [55250]={ + connections={ + [1]={ + id=56649, + orbit=-4 + }, + [2]={ + id=41669, + orbit=4 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=4, + orbitIndex=30, + skill=55250, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [55260]={ + connections={ + [1]={ + id=19751, + orbit=-5 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Threshold", + orbit=2, + orbitIndex=23, + skill=55260, + stats={ + [1]="15% increased Freeze Threshold" + } + }, + [55270]={ + connections={ + [1]={ + id=60083, + orbit=0 + } + }, + group=1101, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=7, + orbitIndex=1, + skill=55270, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [55275]={ + connections={ + [1]={ + id=12890, + orbit=6 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=3, + orbitIndex=2, + skill=55275, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [55276]={ + connections={ + [1]={ + id=13411, + orbit=5 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=24, + skill=55276, + stats={ + [1]="+5 to any Attribute" + } + }, + [55308]={ + connections={ + [1]={ + id=38313, + orbit=0 + }, + [2]={ + id=30701, + orbit=0 + } + }, + group=418, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + isNotable=true, + name="Sling Shots", + orbit=7, + orbitIndex=12, + skill=55308, + stats={ + [1]="20% increased Projectile Damage", + [2]="20% increased chance to inflict Ailments with Projectiles" + } + }, + [55329]={ + connections={ + [1]={ + id=42036, + orbit=0 + } + }, + group=1442, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parried Duration", + orbit=4, + orbitIndex=12, + skill=55329, + stats={ + [1]="15% increased Parried Debuff Duration" + } + }, + [55342]={ + connections={ + [1]={ + id=17248, + orbit=-5 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=61, + skill=55342, + stats={ + [1]="+5 to any Attribute" + } + }, + [55348]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + [1]={ + id=23227, + orbit=0 + } + }, + group=615, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=55348 + }, + [55375]={ + connections={ + [1]={ + id=62748, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.png", + isNotable=true, + name="Licking Wounds", + orbit=2, + orbitIndex=21, + skill=55375, + stats={ + [1]="Minions have 15% increased maximum Life", + [2]="5% increased Life and Mana Regeneration Rate for each Minion in your Presence, up to a maximum of 40%" + } + }, + [55377]={ + connections={ + [1]={ + id=26211, + orbit=0 + }, + [2]={ + id=33463, + orbit=0 + } + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area and Combo", + orbit=2, + orbitIndex=0, + skill=55377, + stats={ + [1]="4% increased Area of Effect for Attacks", + [2]="5% Chance to build an additional Combo on Hit" + } + }, + [55397]={ + connections={ + [1]={ + id=44527, + orbit=0 + } + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + isSwitchable=true, + name="Flask Charges Gained", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + id=1247, + name="Ailment Threshold", + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + } + }, + orbit=7, + orbitIndex=21, + skill=55397, + stats={ + [1]="15% increased Flask Charges gained" + } + }, + [55400]={ + connections={ + [1]={ + id=30372, + orbit=0 + } + }, + group=1224, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=2, + orbitIndex=5, + skill=55400, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [55405]={ + connections={ + [1]={ + id=25620, + orbit=0 + } + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Corpses", + orbit=1, + orbitIndex=10, + skill=55405, + stats={ + [1]="15% increased Damage if you have Consumed a Corpse Recently" + } + }, + [55412]={ + connections={ + [1]={ + id=22538, + orbit=0 + }, + [2]={ + id=17796, + orbit=-4 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=15, + skill=55412, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [55420]={ + connections={ + [1]={ + id=30061, + orbit=0 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Effect", + orbit=2, + orbitIndex=0, + skill=55420, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [55422]={ + connections={ + [1]={ + id=54640, + orbit=4 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=3, + orbitIndex=17, + skill=55422, + stats={ + [1]="12% increased Physical Damage" + } + }, + [55429]={ + connections={ + [1]={ + id=22049, + orbit=0 + } + }, + group=1041, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png", + id=24854, + name="Melee and Projectile Damage", + stats={ + [1]="10% increased Melee Damage", + [2]="10% increased Projectile Damage" + } + } + }, + orbit=0, + orbitIndex=0, + skill=55429, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [55450]={ + connections={ + [1]={ + id=57089, + orbit=0 + }, + [2]={ + id=34443, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + isNotable=true, + name="Rallying Form", + orbit=7, + orbitIndex=7, + skill=55450, + stats={ + [1]="Companions in your Presence have Onslaught while you are Shapeshifted" + } + }, + [55463]={ + connections={ + [1]={ + id=27875, + orbit=0 + } + }, + group=1221, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=3, + orbitIndex=14, + skill=55463, + stats={ + [1]="15% increased chance to Shock" + } + }, + [55473]={ + connections={ + [1]={ + id=43164, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=23, + skill=55473, + stats={ + [1]="8% increased Melee Damage" + } + }, + [55478]={ + connections={ + [1]={ + id=48006, + orbit=4 + }, + [2]={ + id=16168, + orbit=-3 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=2, + orbitIndex=2, + skill=55478, + stats={ + [1]="6% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [55491]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/MasteryAuras.png", + isOnlyImage=true, + name="Reservation Mastery", + orbit=1, + orbitIndex=7, + skill=55491 + }, + [55507]={ + connections={ + [1]={ + id=22359, + orbit=-6 + }, + [2]={ + id=38338, + orbit=6 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=3, + orbitIndex=16, + skill=55507, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [55536]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=34882, + orbit=0 + }, + [2]={ + id=1442, + orbit=0 + }, + [3]={ + id=3084, + orbit=0 + } + }, + group=457, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Gambler", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=72, + skill=55536 + }, + [55554]={ + connections={ + [1]={ + id=8821, + orbit=0 + }, + [2]={ + id=22271, + orbit=0 + } + }, + group=859, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=55554, + stats={ + [1]="15% increased chance to Shock" + } + }, + [55568]={ + connections={ + [1]={ + id=41522, + orbit=0 + }, + [2]={ + id=44690, + orbit=0 + } + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Forthcoming", + orbit=2, + orbitIndex=21, + skill=55568, + stats={ + [1]="16% reduced Skill Effect Duration", + [2]="10% increased Cooldown Recovery Rate" + } + }, + [55572]={ + connections={ + [1]={ + id=57626, + orbit=0 + } + }, + group=822, + icon="Art/2DArt/SkillIcons/passives/ColdFireNode.png", + name="Cold and Fire Damage", + orbit=7, + orbitIndex=20, + skill=55572, + stats={ + [1]="10% increased Fire Damage", + [2]="10% increased Cold Damage" + } + }, + [55575]={ + connections={ + [1]={ + id=58002, + orbit=0 + } + }, + group=970, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical as Extra Chaos Damage", + orbit=2, + orbitIndex=9, + skill=55575, + stats={ + [1]="Gain 3% of Physical Damage as extra Chaos Damage" + } + }, + [55582]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=60287, + orbit=0 + } + }, + group=384, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png", + name="Skill Gem Quality", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=55582, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [55596]={ + connections={ + [1]={ + id=8509, + orbit=0 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=3, + orbitIndex=16, + skill=55596, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [55598]={ + connections={ + [1]={ + id=15644, + orbit=4 + }, + [2]={ + id=9112, + orbit=-3 + }, + [3]={ + id=28050, + orbit=0 + } + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=3, + orbitIndex=2, + skill=55598, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [55611]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=64031, + orbit=-2 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=15, + skill=55611, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [55617]={ + connections={ + [1]={ + id=29914, + orbit=0 + }, + [2]={ + id=19546, + orbit=2 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Armour and Evasion while Surrounded", + orbit=3, + orbitIndex=3, + skill=55617, + stats={ + [1]="20% increased Armour while Surrounded", + [2]="20% increased Evasion Rating while Surrounded" + } + }, + [55621]={ + connections={ + [1]={ + id=38537, + orbit=-3 + } + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=7, + orbitIndex=16, + skill=55621, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [55635]={ + connections={ + [1]={ + id=52440, + orbit=0 + }, + [2]={ + id=51807, + orbit=0 + }, + [3]={ + id=33722, + orbit=0 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Damage and Companion Damage", + orbit=7, + orbitIndex=21, + skill=55635, + stats={ + [1]="Companions deal 12% increased Damage", + [2]="10% increased Damage while your Companion is in your Presence" + } + }, + [55664]={ + connections={ + [1]={ + id=31826, + orbit=-3 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Presence Area and Companion Area", + orbit=4, + orbitIndex=0, + skill=55664, + stats={ + [1]="10% increased Presence Area of Effect", + [2]="Companions have 10% increased Area of Effect" + } + }, + [55668]={ + connections={ + [1]={ + id=25557, + orbit=0 + }, + [2]={ + id=47754, + orbit=0 + }, + [3]={ + id=55420, + orbit=0 + } + }, + group=1032, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=55668, + stats={ + [1]="+5 to any Attribute" + } + }, + [55672]={ + connections={ + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Accuracy Rating", + orbit=5, + orbitIndex=46, + skill=55672, + stats={ + [1]="10% increased Accuracy Rating while Shapeshifted" + } + }, + [55680]={ + connections={ + [1]={ + id=61112, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.png", + name="Spear Attack Speed", + orbit=4, + orbitIndex=14, + skill=55680, + stats={ + [1]="3% increased Attack Speed with Spears" + } + }, + [55700]={ + connections={ + [1]={ + id=44983, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + name="All Attributes", + orbit=2, + orbitIndex=8, + skill=55700, + stats={ + [1]="+3 to all Attributes" + } + }, + [55708]={ + connections={ + }, + group=879, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Electric Amplification", + orbit=7, + orbitIndex=10, + skill=55708, + stats={ + [1]="Damage Penetrates 18% Lightning Resistance", + [2]="Gain 6% of Elemental Damage as Extra Lightning Damage" + } + }, + [55724]={ + connections={ + [1]={ + id=42714, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=4, + orbitIndex=58, + skill=55724, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [55746]={ + connections={ + [1]={ + id=61935, + orbit=-2 + } + }, + group=549, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=7, + orbitIndex=4, + skill=55746, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [55789]={ + connections={ + [1]={ + id=41665, + orbit=-2 + } + }, + group=337, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=4, + orbitIndex=3, + skill=55789, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [55796]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=43095, + orbit=0 + } + }, + group=1543, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.png", + isNotable=true, + name="Predatory Instinct", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=55796, + stats={ + [1]="Reveal Weaknesses against Rare and Unique enemies", + [2]="50% more damage against enemies with an Open Weakness" + } + }, + [55802]={ + connections={ + [1]={ + id=2847, + orbit=0 + }, + [2]={ + id=3717, + orbit=0 + } + }, + group=863, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=55802, + stats={ + [1]="+5 to any Attribute" + } + }, + [55807]={ + connections={ + [1]={ + id=6686, + orbit=-4 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isSwitchable=true, + name="Mana Regeneration", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + id=21429, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=2, + orbitIndex=5, + skill=55807, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [55817]={ + connections={ + [1]={ + id=58674, + orbit=0 + } + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Alchemical Oil", + orbit=7, + orbitIndex=1, + skill=55817, + stats={ + [1]="30% increased Exposure Effect" + } + }, + [55829]={ + connections={ + [1]={ + id=1420, + orbit=0 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=0, + skill=55829, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [55835]={ + connections={ + [1]={ + id=52537, + orbit=0 + }, + [2]={ + id=20909, + orbit=-9 + }, + [3]={ + id=7023, + orbit=0 + } + }, + group=1422, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Exposed to the Cosmos", + orbit=2, + orbitIndex=19, + skill=55835, + stats={ + [1]="Damage Penetrates 18% Cold Resistance", + [2]="20% increased chance to inflict Ailments against Enemies with Exposure" + } + }, + [55843]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=55843 + }, + [55846]={ + connections={ + [1]={ + id=24239, + orbit=0 + } + }, + group=1060, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=1, + orbitIndex=5, + skill=55846, + stats={ + [1]="Gain 5 Life per enemy killed" + } + }, + [55847]={ + connections={ + [1]={ + id=27274, + orbit=0 + } + }, + group=1063, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + isNotable=true, + name="Ice Walls", + orbit=7, + orbitIndex=8, + skill=55847, + stats={ + [1]="200% increased Ice Crystal Life" + } + }, + [55872]={ + connections={ + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Effect", + orbit=3, + orbitIndex=23, + skill=55872, + stats={ + [1]="Offering Skills have 15% increased Buff effect" + } + }, + [55888]={ + connections={ + [1]={ + id=18746, + orbit=0 + }, + [2]={ + id=49256, + orbit=0 + }, + [3]={ + id=440, + orbit=0 + } + }, + group=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=0, + orbitIndex=0, + skill=55888, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [55897]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=14432, + orbit=0 + } + }, + group=111, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Mana Regeneration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=55897, + stats={ + [1]="20% increased Mana Regeneration Rate while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [55909]={ + connections={ + [1]={ + id=64046, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.png", + isSwitchable=true, + name="Infused Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + id=10903, + name="Chaos Damage", + stats={ + [1]="10% increased Chaos Damage" + } + } + }, + orbit=4, + orbitIndex=3, + skill=55909, + stats={ + [1]="12% increased Spell Damage if you have consumed an Elemental Infusion Recently" + } + }, + [55925]={ + connections={ + [1]={ + id=37290, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Maximum Rage while Shapeshifted", + orbit=7, + orbitIndex=8, + skill=55925, + stats={ + [1]="+3 to maximum Rage while Shapeshifted" + } + }, + [55930]={ + connections={ + [1]={ + id=40687, + orbit=0 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=2, + orbitIndex=16, + skill=55930, + stats={ + [1]="15% increased Glory generation" + } + }, + [55931]={ + connections={ + [1]={ + id=62034, + orbit=0 + }, + [2]={ + id=62313, + orbit=0 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/fireresist.png", + name="Armour Applies to Fire Damage Hits", + orbit=3, + orbitIndex=18, + skill=55931, + stats={ + [1]="+15% of Armour also applies to Fire Damage" + } + }, + [55933]={ + connections={ + [1]={ + id=60886, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=55933, + stats={ + [1]="+5 to any Attribute" + } + }, + [55938]={ + connections={ + [1]={ + id=41394, + orbit=7 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect", + orbit=3, + orbitIndex=9, + skill=55938, + stats={ + [1]="10% increased effect of Archon Buffs on you" + } + }, + [55947]={ + connections={ + [1]={ + id=46088, + orbit=3 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Chance", + orbit=2, + orbitIndex=1, + skill=55947, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [55995]={ + connections={ + [1]={ + id=41873, + orbit=0 + } + }, + group=1474, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=4, + skill=55995, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [56016]={ + connections={ + [1]={ + id=65149, + orbit=-8 + }, + [2]={ + id=35594, + orbit=0 + } + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + isNotable=true, + name="Passthrough Rounds", + orbit=2, + orbitIndex=2, + skill=56016, + stats={ + [1]="Projectiles Pierce enemies with Fully Broken Armour" + } + }, + [56023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=1322, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=56023 + }, + [56045]={ + connections={ + [1]={ + id=24647, + orbit=4 + }, + [2]={ + id=11604, + orbit=0 + } + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56045, + stats={ + [1]="+5 to any Attribute" + } + }, + [56061]={ + connections={ + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Damage against Burning Enemies", + orbit=2, + orbitIndex=12, + skill=56061, + stats={ + [1]="14% increased Damage with Hits against Burning Enemies" + } + }, + [56063]={ + connections={ + }, + group=950, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Lingering Horror", + orbit=0, + orbitIndex=0, + skill=56063, + stats={ + [1]="23% increased Chaos Damage", + [2]="15% increased Skill Effect Duration" + } + }, + [56090]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=59136, + orbit=0 + } + }, + group=606, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=16, + skill=56090, + stats={ + [1]="12% increased Spell Damage", + [2]="8% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56104]={ + connections={ + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=3, + orbitIndex=16, + skill=56104, + stats={ + [1]="Break 20% increased Armour" + } + }, + [56112]={ + connections={ + [1]={ + id=42059, + orbit=-2 + }, + [2]={ + id=49259, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + isNotable=true, + name="Extinguishing Exhalation", + orbit=3, + orbitIndex=18, + skill=56112, + stats={ + [1]="Remove Ignite when you Warcry" + } + }, + [56118]={ + connections={ + [1]={ + id=19341, + orbit=-5 + }, + [2]={ + id=22976, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=4, + orbitIndex=12, + skill=56118, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [56162]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=50192, + orbit=-9 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.png", + isNotable=true, + name="Grasping Wounds", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=13, + skill=56162, + stats={ + [1]="25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead" + } + }, + [56174]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=1887, + orbit=0 + } + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=5, + skill=56174, + stats={ + [1]="30% increased Armour while stationary" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56214]={ + connections={ + [1]={ + id=30334, + orbit=0 + } + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Duration", + orbit=3, + orbitIndex=3, + skill=56214, + stats={ + [1]="8% increased Ignite Duration on Enemies" + } + }, + [56216]={ + connections={ + [1]={ + id=9485, + orbit=0 + } + }, + group=818, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56216, + stats={ + [1]="+5 to any Attribute" + } + }, + [56219]={ + connections={ + [1]={ + id=52764, + orbit=-2 + } + }, + group=186, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage Decay", + orbit=7, + orbitIndex=2, + skill=56219, + stats={ + [1]="Inherent loss of Rage is 15% slower" + } + }, + [56237]={ + connections={ + [1]={ + id=1825, + orbit=0 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + isNotable=true, + name="Enhancing Attacks", + orbit=3, + orbitIndex=23, + skill=56237, + stats={ + [1]="12% increased Spell Damage for each different Non-Instant Attack you've used in the past 8 seconds" + } + }, + [56265]={ + connections={ + [1]={ + id=42802, + orbit=0 + } + }, + group=1451, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Throatseeker", + orbit=2, + orbitIndex=2, + skill=56265, + stats={ + [1]="60% increased Critical Damage Bonus", + [2]="20% reduced Critical Hit Chance" + } + }, + [56284]={ + connections={ + [1]={ + id=1928, + orbit=-2 + } + }, + group=523, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Attack and Cast Speed", + orbit=0, + orbitIndex=0, + skill=56284, + stats={ + [1]="Minions have 5% increased Attack and Cast Speed" + } + }, + [56320]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.png", + isOnlyImage=true, + name="Armour Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56320, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56325]={ + connections={ + [1]={ + id=21280, + orbit=0 + } + }, + group=1024, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion and Reduced Movement Penalty", + orbit=0, + orbitIndex=0, + skill=56325, + stats={ + [1]="10% increased Evasion Rating", + [2]="2% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [56330]={ + connections={ + [1]={ + id=39570, + orbit=0 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance on Critical", + orbit=7, + orbitIndex=22, + skill=56330, + stats={ + [1]="10% chance to inflict Bleeding on Critical Hit with Attacks" + } + }, + [56331]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1539, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.png", + isMultipleChoiceOption=true, + name="Choice of Life", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56331, + stats={ + [1]="Remnants you create have 50% increased effect", + [2]="Remnants can be collected from 50% further away", + [3]="All Flames of Chayula that you manifest are Red" + } + }, + [56334]={ + connections={ + [1]={ + id=46171, + orbit=7 + }, + [2]={ + id=41753, + orbit=0 + } + }, + group=1440, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy and Critical Chance", + orbit=7, + orbitIndex=7, + skill=56334, + stats={ + [1]="Meta Skills gain 4% increased Energy", + [2]="5% increased Critical Hit Chance" + } + }, + [56336]={ + connections={ + [1]={ + id=21208, + orbit=0 + } + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + name="Curse Activation Speed and Effect", + orbit=7, + orbitIndex=20, + skill=56336, + stats={ + [1]="3% increased Curse Magnitudes", + [2]="10% faster Curse Activation" + } + }, + [56342]={ + connections={ + [1]={ + id=7341, + orbit=3 + } + }, + group=346, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage when Hit", + orbit=0, + orbitIndex=0, + skill=56342, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [56349]={ + connections={ + }, + flavourText="Give up everything in pursuit of greatness - even life itself.", + group=1240, + icon="Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", + isKeystone=true, + name="Chaos Inoculation", + orbit=0, + orbitIndex=0, + skill=56349, + stats={ + [1]="Maximum Life is 1\nImmune to Chaos Damage and Bleeding" + } + }, + [56360]={ + connections={ + [1]={ + id=24812, + orbit=0 + } + }, + group=1054, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Power Charge Duration", + orbit=2, + orbitIndex=19, + skill=56360, + stats={ + [1]="20% increased Power Charge Duration" + } + }, + [56366]={ + connections={ + [1]={ + id=35755, + orbit=0 + } + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + isNotable=true, + name="Silent Shiv", + orbit=3, + orbitIndex=16, + skill=56366, + stats={ + [1]="5% increased Attack Speed with Daggers", + [2]="15% increased Critical Hit Chance with Daggers" + } + }, + [56368]={ + connections={ + [1]={ + id=61393, + orbit=-4 + } + }, + group=124, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Life Regeneration", + orbit=0, + orbitIndex=0, + skill=56368, + stats={ + [1]="15% increased Life Regeneration rate while Shapeshifted" + } + }, + [56388]={ + connections={ + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + isNotable=true, + name="Reinforced Rallying", + orbit=5, + orbitIndex=0, + skill=56388, + stats={ + [1]="+1 to maximum number of placed Banners" + } + }, + [56409]={ + connections={ + [1]={ + id=25101, + orbit=0 + }, + [2]={ + id=43139, + orbit=0 + }, + [3]={ + id=65248, + orbit=0 + } + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Ailment Chance", + orbit=4, + orbitIndex=12, + skill=56409, + stats={ + [1]="24% increased Flammability Magnitude", + [2]="12% increased Freeze Buildup", + [3]="12% increased chance to Shock" + } + }, + [56453]={ + connections={ + [1]={ + id=37691, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isNotable=true, + name="Killer Instinct", + orbit=5, + orbitIndex=39, + skill=56453, + stats={ + [1]="40% increased Attack Damage while on Full Life", + [2]="60% increased Attack Damage while on Low Life" + } + }, + [56466]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=606, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Night's Bite", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56466, + stats={ + [1]="Spells Gain 12% of Damage as extra Chaos Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56472]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=56472 + }, + [56488]={ + connections={ + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Glancing Deflection", + orbit=0, + orbitIndex=0, + skill=56488, + stats={ + [1]="10% increased Deflection Rating" + } + }, + [56489]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.png", + isNotable=true, + name="Idolatry", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=10, + skill=56489, + stats={ + [1]="Companions deal 10% increased damage per Idol in your Equipment", + [2]="2% increased Reservation Efficiency of Skills per Idol in your Equipment", + [3]="-4% to all Elemental Resistances per non-Idol Augment in your Equipment" + } + }, + [56493]={ + connections={ + }, + group=1162, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + isNotable=true, + name="Agile Succession", + orbit=3, + orbitIndex=3, + skill=56493, + stats={ + [1]="6% increased Attack Speed", + [2]="30% increased Evasion Rating if you have Hit an Enemy Recently" + } + }, + [56505]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=4197, + orbit=-6 + } + }, + group=13, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png", + name="Immobilisation Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56505, + stats={ + [1]="20% increased Immobilisation buildup" + } + }, + [56547]={ + connections={ + [1]={ + id=12189, + orbit=4 + } + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Plant Skill Damage", + orbit=5, + orbitIndex=21, + skill=56547, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [56564]={ + connections={ + [1]={ + id=8349, + orbit=0 + } + }, + group=712, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Intelligence", + orbit=2, + orbitIndex=15, + skill=56564, + stats={ + [1]="+8 to Intelligence" + } + }, + [56567]={ + connections={ + [1]={ + id=151, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=7, + orbitIndex=11, + skill=56567, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [56595]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=56595 + }, + [56605]={ + connections={ + }, + flavourText="In battle, certainty is worth a little pain.", + group=484, + icon="Art/2DArt/SkillIcons/passives/BulwarkKeystone.png", + isKeystone=true, + name="Bulwark", + orbit=0, + orbitIndex=0, + skill=56605, + stats={ + [1]="Dodge Roll cannot Avoid Damage\nTake 30% less Damage from Hits while Dodge Rolling" + } + }, + [56616]={ + connections={ + [1]={ + id=13562, + orbit=3 + }, + [2]={ + id=41415, + orbit=0 + } + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + isNotable=true, + name="Desperate Times", + orbit=2, + orbitIndex=0, + skill=56616, + stats={ + [1]="Regenerate 1.5% of maximum Life per second while on Low Life", + [2]="40% increased Life Recovery from Flasks used when on Low Life" + } + }, + [56618]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1520, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.png", + isMultipleChoiceOption=true, + name="Fulminating Concoction", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56618, + stats={ + [1]="Grants Skill: Fulminating Concoction" + } + }, + [56638]={ + connections={ + }, + group=995, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold if not Stunned recently", + orbit=2, + orbitIndex=2, + skill=56638, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [56640]={ + connections={ + [1]={ + id=10398, + orbit=-3 + } + }, + group=734, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + name="Spell Critical Damage", + orbit=7, + orbitIndex=0, + skill=56640, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [56649]={ + connections={ + [1]={ + id=44455, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=3, + orbitIndex=8, + skill=56649, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [56651]={ + connections={ + [1]={ + id=38143, + orbit=0 + } + }, + group=888, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + id=39263, + name="Attack Damage", + stats={ + [1]="10% increased Attack Damage" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56651, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [56701]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1411, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=56701 + }, + [56703]={ + connections={ + [1]={ + id=15782, + orbit=0 + }, + [2]={ + id=28839, + orbit=0 + } + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=8, + skill=56703, + stats={ + [1]="3% increased Cast Speed" + } + }, + [56714]={ + connections={ + [1]={ + id=47212, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + isNotable=true, + name="Swift Flight", + orbit=3, + orbitIndex=10, + skill=56714, + stats={ + [1]="15% increased Projectile Speed", + [2]="20% increased Physical Damage" + } + }, + [56729]={ + connections={ + [1]={ + id=26308, + orbit=0 + }, + [2]={ + id=34201, + orbit=0 + } + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.png", + name="Evasion while Moving", + orbit=2, + orbitIndex=16, + skill=56729, + stats={ + [1]="20% increased Evasion Rating while moving" + } + }, + [56757]={ + connections={ + [1]={ + id=10100, + orbit=0 + } + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=2, + orbitIndex=10, + skill=56757, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [56761]={ + connections={ + [1]={ + id=8560, + orbit=0 + }, + [2]={ + id=48531, + orbit=0 + }, + [3]={ + id=2408, + orbit=0 + } + }, + group=1383, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=18, + skill=56761, + stats={ + [1]="8% increased Melee Damage" + } + }, + [56762]={ + connections={ + [1]={ + id=28839, + orbit=0 + } + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=2, + orbitIndex=20, + skill=56762, + stats={ + [1]="3% increased Cast Speed" + } + }, + [56767]={ + connections={ + [1]={ + id=19461, + orbit=0 + }, + [2]={ + id=1416, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Electrifying Daze", + orbit=7, + orbitIndex=13, + skill=56767, + stats={ + [1]="5% chance to Daze on Hit", + [2]="Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies" + } + }, + [56776]={ + connections={ + [1]={ + id=45609, + orbit=5 + }, + [2]={ + id=24129, + orbit=0 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Cooked", + orbit=1, + orbitIndex=7, + skill=56776, + stats={ + [1]="60% increased Critical Damage Bonus", + [2]="25% reduced Armour, Evasion and Energy Shield" + } + }, + [56783]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=648, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png", + name="Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56783, + stats={ + [1]="8% increased Area of Effect" + } + }, + [56806]={ + connections={ + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + isNotable=true, + name="Swift Blocking", + orbit=7, + orbitIndex=22, + skill=56806, + stats={ + [1]="12% increased Block chance", + [2]="1% increased Movement Speed for each time you've Blocked in the past 10 seconds" + } + }, + [56818]={ + connections={ + [1]={ + id=43423, + orbit=-3 + }, + [2]={ + id=62510, + orbit=-6 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=18, + skill=56818, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [56838]={ + connections={ + [1]={ + id=42805, + orbit=-4 + }, + [2]={ + id=62624, + orbit=5 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=2, + skill=56838, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [56841]={ + connections={ + [1]={ + id=18451, + orbit=0 + } + }, + group=999, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=20, + skill=56841, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [56842]={ + ascendancyName="Titan", + connections={ + [1]={ + id=59540, + orbit=-5 + } + }, + group=80, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.png", + name="Stun Buildup", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56842, + stats={ + [1]="18% increased Stun Buildup" + } + }, + [56844]={ + connections={ + [1]={ + id=40929, + orbit=-2 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Duration", + orbit=7, + orbitIndex=0, + skill=56844, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [56847]={ + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Damage", + orbit=7, + orbitIndex=22, + skill=56847, + stats={ + [1]="12% increased Damage while affected by a Herald" + } + }, + [56857]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.png", + isNotable=true, + name="Sacred Rituals", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=44, + skill=56857, + stats={ + [1]="60% of your current Energy Shield is added to your Armour for\ndetermining your Physical Damage Reduction from Armour" + } + }, + [56860]={ + connections={ + }, + group=1213, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Resolute Reprisal", + orbit=0, + orbitIndex=0, + skill=56860, + stats={ + [1]="30% increased Parry Range", + [2]="Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently" + } + }, + [56876]={ + connections={ + [1]={ + id=46380, + orbit=0 + } + }, + group=319, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Energy Shield if Consumed Power Charge", + orbit=2, + orbitIndex=6, + skill=56876, + stats={ + [1]="20% increased maximum Energy Shield if you've consumed a Power Charge Recently" + } + }, + [56890]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12005, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png", + isNotable=true, + name="Endlessly Soaring", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=69, + skill=56890, + stats={ + [1]="Shapeshift Skills have 30% increased Skill Effect Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56893]={ + connections={ + }, + group=1262, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Thicket Warding", + orbit=7, + orbitIndex=16, + skill=56893, + stats={ + [1]="20% chance for Charms you use to not consume Charges", + [2]="Recover 5% of maximum Mana when a Charm is used" + } + }, + [56897]={ + connections={ + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Critical Damage", + orbit=7, + orbitIndex=10, + skill=56897, + stats={ + [1]="10% increased Ballista Critical Damage Bonus" + } + }, + [56910]={ + connections={ + [1]={ + id=28510, + orbit=6 + }, + [2]={ + id=34061, + orbit=0 + }, + [3]={ + id=29328, + orbit=6 + } + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/Meleerange.png", + isNotable=true, + name="Battle-hardened", + orbit=5, + orbitIndex=51, + skill=56910, + stats={ + [1]="Hits against you have 20% reduced Critical Damage Bonus", + [2]="20% increased Armour and Evasion Rating", + [3]="+5 to Strength and Dexterity" + } + }, + [56914]={ + connections={ + [1]={ + id=50121, + orbit=0 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Penetration", + orbit=7, + orbitIndex=5, + skill=56914, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [56926]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + connections={ + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=2, + orbitIndex=3, + skill=56926 + }, + [56928]={ + connections={ + [1]={ + id=62350, + orbit=7 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Flask Duration", + orbit=3, + orbitIndex=15, + skill=56928, + stats={ + [1]="5% increased Flask Effect Duration", + [2]="2% increased Attack Speed" + } + }, + [56933]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=35920, + orbit=0 + } + }, + group=68, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.png", + isNotable=true, + name="Druidic Champion", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=56933, + stats={ + [1]="Every 2 Rage also grants 1% more Spell damage" + } + }, + [56934]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=56934 + }, + [56935]={ + connections={ + [1]={ + id=57710, + orbit=0 + }, + [2]={ + id=34058, + orbit=0 + } + }, + group=748, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56935, + stats={ + [1]="+5 to any Attribute" + } + }, + [56956]={ + connections={ + [1]={ + id=15885, + orbit=-4 + }, + [2]={ + id=54632, + orbit=0 + } + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life and Chaos Resistance", + orbit=2, + orbitIndex=20, + skill=56956, + stats={ + [1]="Minions have 8% increased maximum Life", + [2]="Minions have +7% to Chaos Resistance" + } + }, + [56978]={ + connections={ + [1]={ + id=21274, + orbit=0 + } + }, + group=831, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56978, + stats={ + [1]="+5 to any Attribute" + } + }, + [56988]={ + connections={ + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Electric Blood", + orbit=0, + orbitIndex=0, + skill=56988, + stats={ + [1]="+1% to Maximum Lightning Resistance", + [2]="50% reduced effect of Shock on you" + } + }, + [56996]={ + connections={ + [1]={ + id=9568, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Life", + orbit=4, + orbitIndex=3, + skill=56996, + stats={ + [1]="16% increased Totem Life" + } + }, + [56997]={ + connections={ + [1]={ + id=23861, + orbit=-5 + }, + [2]={ + id=56595, + orbit=0 + } + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + isNotable=true, + name="Heavy Contact", + orbit=4, + orbitIndex=6, + skill=56997, + stats={ + [1]="Hits that Heavy Stun Enemies have Culling Strike" + } + }, + [56999]={ + connections={ + }, + group=969, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Locked On", + orbit=0, + orbitIndex=0, + skill=56999, + stats={ + [1]="15% increased Critical Hit Chance for Attacks", + [2]="15% increased Accuracy Rating" + } + }, + [57002]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48761, + orbit=0 + } + }, + group=479, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + isNotable=true, + name="Rough Carapace", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=10, + skill=57002, + stats={ + [1]="Gain Physical Thorns damage equal to 8% of maximum Life while Shapeshifted" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [57021]={ + connections={ + [1]={ + id=8957, + orbit=0 + }, + [2]={ + id=45343, + orbit=0 + }, + [3]={ + id=14505, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Area", + orbit=3, + orbitIndex=16, + skill=57021, + stats={ + [1]="Minions have 8% increased Area of Effect" + } + }, + [57039]={ + connections={ + [1]={ + id=44605, + orbit=6 + } + }, + group=765, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png", + name="Cooldown Recovery Rate", + orbit=3, + orbitIndex=4, + skill=57039, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [57047]={ + connections={ + [1]={ + id=45278, + orbit=0 + }, + [2]={ + id=4492, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + isNotable=true, + name="Polymathy", + orbit=5, + orbitIndex=48, + skill=57047, + stats={ + [1]="7% increased Attributes" + } + }, + [57069]={ + connections={ + [1]={ + id=52257, + orbit=0 + } + }, + group=1424, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Damage and Resistance", + orbit=0, + orbitIndex=0, + skill=57069, + stats={ + [1]="5% increased Lightning Damage", + [2]="+3% to Lightning Resistance" + } + }, + [57079]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=19966, + orbit=-3 + }, + [2]={ + id=15842, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Known by All", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=12, + skill=57079, + stats={ + [1]="Temporary Minion Skills have +2 to Limit of Minions summoned" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [57088]={ + connections={ + [1]={ + id=54557, + orbit=-5 + } + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=2, + orbitIndex=20, + skill=57088, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [57089]={ + connections={ + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=2, + orbitIndex=4, + skill=57089, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [57110]={ + connections={ + [1]={ + id=62159, + orbit=-2 + }, + [2]={ + id=46561, + orbit=0 + } + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Infused Flesh", + orbit=7, + orbitIndex=5, + skill=57110, + stats={ + [1]="+20 to maximum Life", + [2]="8% of Damage taken Recouped as Life" + } + }, + [57141]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1518, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.png", + isMultipleChoice=true, + isNotable=true, + name="Brew Concoction", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=57141 + }, + [57178]={ + connections={ + [1]={ + id=21245, + orbit=0 + }, + [2]={ + id=5284, + orbit=0 + } + }, + group=519, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Spell Critical Chance and Critical Ailment Effect", + orbit=0, + orbitIndex=0, + skill=57178, + stats={ + [1]="10% increased Critical Hit Chance for Spells", + [2]="15% increased Magnitude of Damaging Ailments you inflict with Critical Hits" + } + }, + [57181]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=52448, + orbit=-7 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png", + name="Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=24, + skill=57181, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [57190]={ + connections={ + [1]={ + id=27859, + orbit=0 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + isNotable=true, + name="Doomsayer", + orbit=1, + orbitIndex=6, + skill=57190, + stats={ + [1]="Herald Skills have 25% increased Area of Effect", + [2]="Herald Skills deal 30% increased Damage" + } + }, + [57196]={ + connections={ + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=3, + orbitIndex=14, + skill=57196, + stats={ + [1]="3% increased Attack Speed" + } + }, + [57202]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=1628, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=12, + skill=57202, + stats={ + [1]="17% increased Stun Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [57204]={ + connections={ + [1]={ + id=47833, + orbit=0 + } + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Critical Exploit", + orbit=2, + orbitIndex=13, + skill=57204, + stats={ + [1]="25% increased Critical Hit Chance" + } + }, + [57227]={ + connections={ + [1]={ + id=23259, + orbit=-5 + } + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Chance", + orbit=2, + orbitIndex=5, + skill=57227, + stats={ + [1]="10% increased Critical Hit Chance for Attacks" + } + }, + [57230]={ + connections={ + [1]={ + id=25851, + orbit=-4 + }, + [2]={ + id=36270, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=6, + orbitIndex=6, + skill=57230, + stats={ + [1]="10% increased Physical Damage" + } + }, + [57253]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=38646, + orbit=0 + }, + [2]={ + id=3936, + orbit=0 + } + }, + group=1524, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.png", + isMultipleChoiceOption=true, + name="Path of the Warrior", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=57253, + stats={ + [1]="Can Allocate Passive Skills from the Warrior's starting point", + [2]="Grants 4 Passive Skill Points" + } + }, + [57273]={ + connections={ + [1]={ + id=33562, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Shapeshifted Damage", + orbit=4, + orbitIndex=33, + skill=57273, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [57320]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + connections={ + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=57320 + }, + [57373]={ + connections={ + [1]={ + id=44733, + orbit=4 + } + }, + group=571, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability Magnitude", + orbit=0, + orbitIndex=0, + skill=57373, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [57379]={ + connections={ + [1]={ + id=39190, + orbit=0 + }, + [2]={ + id=49111, + orbit=0 + } + }, + group=135, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + isNotable=true, + name="In Your Face", + orbit=3, + orbitIndex=10, + skill=57379, + stats={ + [1]="40% increased Melee Damage with Hits at Close Range" + } + }, + [57386]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=4621, + orbit=-6 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Elemental Threshold", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=13, + skill=57386, + stats={ + [1]="17% increased Elemental Ailment Threshold" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [57388]={ + connections={ + [1]={ + id=9698, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Overwhelming Strike", + orbit=3, + orbitIndex=22, + skill=57388, + stats={ + [1]="15% increased Critical Hit Chance for Attacks", + [2]="20% increased Critical Damage Bonus for Attack Damage", + [3]="20% more Stun Buildup with Critical Hits" + } + }, + [57405]={ + connections={ + [1]={ + id=64807, + orbit=0 + } + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=2, + orbitIndex=2, + skill=57405, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [57449]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=17356, + orbit=9 + }, + [2]={ + id=19370, + orbit=-9 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Area of Effect", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=63, + skill=57449, + stats={ + [1]="8% increased Area of Effect" + } + }, + [57462]={ + connections={ + [1]={ + id=12078, + orbit=-6 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Speed", + orbit=3, + orbitIndex=17, + skill=57462, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [57471]={ + connections={ + [1]={ + id=42578, + orbit=-4 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + isNotable=true, + name="Hunker Down", + orbit=3, + orbitIndex=8, + skill=57471, + stats={ + [1]="Recover 20 Life when you Block", + [2]="+2% to maximum Block chance", + [3]="80% less Knockback Distance for Blocked Hits" + } + }, + [57513]={ + connections={ + }, + flavourText="What need have I for defence when my enemies\nare reduced to ash and splinters?", + group=1044, + icon="Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", + isKeystone=true, + name="Eldritch Battery", + orbit=0, + orbitIndex=0, + skill=57513, + stats={ + [1]="Convert 100% of maximum Energy Shield to maximum Mana\nMana Costs are Doubled" + } + }, + [57517]={ + connections={ + [1]={ + id=28268, + orbit=0 + } + }, + group=1029, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=0, + orbitIndex=0, + skill=57517, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision" + } + }, + [57518]={ + connections={ + [1]={ + id=17146, + orbit=4 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.png", + name="Parry Damage", + orbit=2, + orbitIndex=23, + skill=57518, + stats={ + [1]="20% increased Parry Damage" + } + }, + [57552]={ + connections={ + [1]={ + id=24871, + orbit=0 + }, + [2]={ + id=46696, + orbit=0 + } + }, + group=398, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=4, + orbitIndex=0, + skill=57552, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [57555]={ + connections={ + [1]={ + id=37608, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Impale Chance", + orbit=7, + orbitIndex=15, + skill=57555, + stats={ + [1]="15% chance to Impale on Spell Hit" + } + }, + [57571]={ + connections={ + [1]={ + id=37905, + orbit=-3 + } + }, + group=1476, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Flammability Magnitude", + orbit=2, + orbitIndex=6, + skill=57571, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [57596]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=13468, + orbit=0 + } + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=71, + skill=57596, + stats={ + [1]="8% of Skill Mana Costs Converted to Life Costs" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [57608]={ + connections={ + [1]={ + id=61703, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Physical Damage", + orbit=2, + orbitIndex=15, + skill=57608, + stats={ + [1]="12% increased Physical Damage while Shapeshifted" + } + }, + [57615]={ + connections={ + [1]={ + id=32319, + orbit=0 + }, + [2]={ + id=48836, + orbit=0 + } + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Surpassing Arrow Chance", + orbit=4, + orbitIndex=54, + skill=57615, + stats={ + [1]="+8% Surpassing chance to fire an additional Arrow" + } + }, + [57616]={ + connections={ + [1]={ + id=56388, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Duration", + orbit=4, + orbitIndex=3, + skill=57616, + stats={ + [1]="Banner Skills have 20% increased Duration" + } + }, + [57617]={ + connections={ + [1]={ + id=14996, + orbit=-2 + }, + [2]={ + id=16506, + orbit=-2 + }, + [3]={ + id=37509, + orbit=-2 + }, + [4]={ + id=23879, + orbit=0 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Shifted Strikes", + orbit=0, + orbitIndex=0, + skill=57617, + stats={ + [1]="30% increased Attack Damage if you have Shapeshifted to an Animal form Recently" + } + }, + [57626]={ + connections={ + [1]={ + id=36782, + orbit=0 + } + }, + group=823, + icon="Art/2DArt/SkillIcons/passives/ColdFireNode.png", + name="Cold and Fire Damage", + orbit=7, + orbitIndex=16, + skill=57626, + stats={ + [1]="10% increased Fire Damage", + [2]="10% increased Cold Damage" + } + }, + [57683]={ + connections={ + [1]={ + id=35031, + orbit=2 + } + }, + group=1479, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.png", + name="Life Recoup", + orbit=2, + orbitIndex=11, + skill=57683, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [57703]={ + connections={ + [1]={ + id=54811, + orbit=0 + }, + [2]={ + id=54485, + orbit=0 + }, + [3]={ + id=38130, + orbit=0 + }, + [4]={ + id=19674, + orbit=0 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=57703, + stats={ + [1]="+5 to any Attribute" + } + }, + [57710]={ + connections={ + [1]={ + id=39037, + orbit=0 + }, + [2]={ + id=40783, + orbit=0 + }, + [3]={ + id=53975, + orbit=0 + }, + [4]={ + id=58090, + orbit=0 + } + }, + group=777, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=0, + skill=57710, + stats={ + [1]="+5 to any Attribute" + } + }, + [57724]={ + connections={ + [1]={ + id=54883, + orbit=-7 + } + }, + group=1266, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=7, + orbitIndex=20, + skill=57724, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [57774]={ + connections={ + [1]={ + id=49657, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Speed", + orbit=3, + orbitIndex=21, + skill=57774, + stats={ + [1]="3% increased Attack Speed while Dual Wielding" + } + }, + [57775]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + connections={ + }, + group=427, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=57775 + }, + [57785]={ + connections={ + [1]={ + id=31112, + orbit=0 + }, + [2]={ + id=56897, + orbit=0 + } + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + isNotable=true, + name="Trained Turrets", + orbit=7, + orbitIndex=6, + skill=57785, + stats={ + [1]="25% increased Ballista Critical Damage Bonus", + [2]="20% increased Ballista Critical Hit Chance" + } + }, + [57791]={ + connections={ + [1]={ + id=52229, + orbit=0 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.png", + name="Spell Damage and Cast Speed", + orbit=2, + orbitIndex=16, + skill=57791, + stats={ + [1]="6% increased Spell Damage", + [2]="2% increased Cast Speed" + } + }, + [57805]={ + connections={ + [1]={ + id=43444, + orbit=4 + } + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/knockback.png", + isNotable=true, + name="Clear Space", + orbit=4, + orbitIndex=18, + skill=57805, + stats={ + [1]="20% increased Knockback Distance", + [2]="20% chance to Knock Enemies Back with Hits at Close Range" + } + }, + [57810]={ + connections={ + [1]={ + id=40073, + orbit=0 + } + }, + group=945, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=57810, + stats={ + [1]="15% increased chance to Shock" + } + }, + [57816]={ + connections={ + [1]={ + id=364, + orbit=0 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + name="Dexterity", + orbit=1, + orbitIndex=8, + skill=57816, + stats={ + [1]="+8 to Dexterity" + } + }, + [57819]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=503, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.png", + isNotable=true, + name="Integrated Efficiency", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=57819, + stats={ + [1]="Skills deal 20% increased Damage per Connected Red Support Gem", + [2]="Skills have 6% increased Skill Speed per Connected Green Support Gem", + [3]="Skills have 20% increased Critical Hit Chance per Connected Blue Support Gem" + } + }, + [57821]={ + connections={ + [1]={ + id=31765, + orbit=0 + }, + [2]={ + id=26034, + orbit=0 + } + }, + group=1317, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=12, + skill=57821, + stats={ + [1]="+5 to any Attribute" + } + }, + [57832]={ + connections={ + [1]={ + id=46300, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=2, + orbitIndex=9, + skill=57832, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [57846]={ + connections={ + [1]={ + id=63451, + orbit=0 + }, + [2]={ + id=38876, + orbit=6 + } + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=6, + orbitIndex=12, + skill=57846, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [57863]={ + connections={ + [1]={ + id=26356, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Detonator Area", + orbit=7, + orbitIndex=5, + skill=57863, + stats={ + [1]="Detonator skills have 8% increased Area of Effect" + } + }, + [57880]={ + connections={ + [1]={ + id=27082, + orbit=0 + }, + [2]={ + id=6269, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + name="Axe Damage", + orbit=3, + orbitIndex=3, + skill=57880, + stats={ + [1]="12% increased Damage with Axes" + } + }, + [57921]={ + connections={ + [1]={ + id=23879, + orbit=0 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Wolf's Howl", + orbit=3, + orbitIndex=21, + skill=57921, + stats={ + [1]="30% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently" + } + }, + [57933]={ + connections={ + [1]={ + id=16150, + orbit=0 + } + }, + group=1490, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=57933, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [57945]={ + connections={ + [1]={ + id=7412, + orbit=0 + } + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flask Charge Generation", + orbit=7, + orbitIndex=12, + skill=57945, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [57959]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=63401, + orbit=0 + } + }, + group=9, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.png", + isNotable=true, + name="Coal Stoker", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=57959, + stats={ + [1]="Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% of their value" + } + }, + [57966]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1038, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=57966 + }, + [57967]={ + connections={ + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Sturdy Mind", + orbit=0, + orbitIndex=0, + skill=57967, + stats={ + [1]="+30 to maximum Mana", + [2]="14% increased Mana Regeneration Rate" + } + }, + [57970]={ + connections={ + [1]={ + id=55995, + orbit=0 + }, + [2]={ + id=21537, + orbit=0 + } + }, + group=1474, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=10, + skill=57970, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [58002]={ + connections={ + [1]={ + id=45086, + orbit=0 + }, + [2]={ + id=55668, + orbit=0 + } + }, + group=970, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Physical Damage", + orbit=3, + orbitIndex=3, + skill=58002, + stats={ + [1]="10% increased Physical Damage" + } + }, + [58013]={ + connections={ + [1]={ + id=4844, + orbit=0 + } + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=7, + orbitIndex=4, + skill=58013, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [58016]={ + connections={ + [1]={ + id=49537, + orbit=7 + }, + [2]={ + id=42205, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="All Natural", + orbit=4, + orbitIndex=42, + skill=58016, + stats={ + [1]="+5% to all Elemental Resistances", + [2]="30% increased Elemental Damage" + } + }, + [58022]={ + connections={ + [1]={ + id=5186, + orbit=3 + }, + [2]={ + id=26762, + orbit=-7 + } + }, + group=1314, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=58022, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [58038]={ + connections={ + [1]={ + id=31566, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=3, + skill=58038, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [58058]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Bow Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58058, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [58088]={ + connections={ + [1]={ + id=16620, + orbit=5 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Block and Movement Penalty with Raised Shield", + orbit=4, + orbitIndex=36, + skill=58088, + stats={ + [1]="4% increased Block chance", + [2]="5% reduced Movement Speed Penalty while Actively Blocking" + } + }, + [58090]={ + connections={ + [1]={ + id=21540, + orbit=4 + }, + [2]={ + id=34367, + orbit=3 + } + }, + group=812, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=58090, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [58096]={ + connections={ + [1]={ + id=17411, + orbit=0 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Lasting Incantations", + orbit=3, + orbitIndex=20, + skill=58096, + stats={ + [1]="20% increased Spell Damage", + [2]="15% increased Skill Effect Duration" + } + }, + [58109]={ + connections={ + [1]={ + id=14340, + orbit=0 + } + }, + group=847, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=58109, + stats={ + [1]="+5 to any Attribute" + } + }, + [58115]={ + connections={ + [1]={ + id=52241, + orbit=2 + }, + [2]={ + id=11672, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana on Kill", + orbit=2, + orbitIndex=12, + skill=58115, + stats={ + [1]="Recover 1% of maximum Mana on Kill" + } + }, + [58117]={ + connections={ + [1]={ + id=41186, + orbit=0 + }, + [2]={ + id=13839, + orbit=0 + }, + [3]={ + id=56996, + orbit=0 + }, + [4]={ + id=53719, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=5, + orbitIndex=3, + skill=58117, + stats={ + [1]="15% increased Totem Damage" + } + }, + [58125]={ + connections={ + [1]={ + id=10681, + orbit=5 + } + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Shield Block", + orbit=4, + orbitIndex=60, + skill=58125, + stats={ + [1]="5% increased Block chance" + } + }, + [58138]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + }, + group=116, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=1, + orbitIndex=6, + skill=58138 + }, + [58149]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=62804, + orbit=8 + } + }, + group=1567, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Life Recovery Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58149, + stats={ + [1]="10% increased Life Recovery rate" + } + }, + [58157]={ + connections={ + [1]={ + id=61149, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + name="Stun Recovery", + orbit=7, + orbitIndex=17, + skill=58157, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [58170]={ + connections={ + [1]={ + id=61067, + orbit=0 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isSwitchable=true, + name="Spell Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + id=41568, + name="Life Regeneration", + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + } + }, + orbit=2, + orbitIndex=1, + skill=58170, + stats={ + [1]="10% increased Spell Damage" + } + }, + [58182]={ + connections={ + [1]={ + id=49220, + orbit=-5 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.png", + name="Life on Kill", + orbit=3, + orbitIndex=22, + skill=58182, + stats={ + [1]="Gain 3 Life per enemy killed" + } + }, + [58183]={ + connections={ + [1]={ + id=60241, + orbit=0 + }, + [2]={ + id=21245, + orbit=0 + }, + [3]={ + id=32278, + orbit=0 + } + }, + group=501, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + isNotable=true, + name="Blood Tearing", + orbit=2, + orbitIndex=11, + skill=58183, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict", + [2]="25% increased Physical Damage" + } + }, + [58197]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=35980, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Unquenchable Iron", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=6, + orbitIndex=60, + skill=58197, + stats={ + [1]="Gain 18% of Physical Damage as Extra Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [58198]={ + connections={ + }, + group=361, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Well of Power", + orbit=0, + orbitIndex=0, + skill=58198, + stats={ + [1]="20% increased Critical Damage Bonus if you've consumed a Power Charge Recently", + [2]="Recover 5% of maximum Mana when you consume a Power Charge" + } + }, + [58215]={ + connections={ + [1]={ + id=292, + orbit=0 + } + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Sanguimantic Rituals", + orbit=4, + orbitIndex=8, + skill=58215, + stats={ + [1]="Regenerate 1% of maximum Life per second", + [2]="Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate" + } + }, + [58295]={ + connections={ + }, + group=261, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=2, + orbitIndex=4, + skill=58295, + stats={ + [1]="+5 to any Attribute" + } + }, + [58312]={ + connections={ + [1]={ + id=49497, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Culling Strike Threshold", + orbit=7, + orbitIndex=10, + skill=58312, + stats={ + [1]="5% increased Culling Strike Threshold" + } + }, + [58329]={ + connections={ + [1]={ + id=56360, + orbit=0 + }, + [2]={ + id=61196, + orbit=0 + }, + [3]={ + id=56638, + orbit=0 + } + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=18, + skill=58329, + stats={ + [1]="+5 to any Attribute" + } + }, + [58362]={ + connections={ + [1]={ + id=51335, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + isSwitchable=true, + name="Elemental Ailment Chance", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + id=15545, + name="Physical Damage", + stats={ + [1]="10% increased Physical Damage" + } + } + }, + orbit=4, + orbitIndex=69, + skill=58362, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="10% increased Freeze Buildup", + [3]="10% increased chance to Shock" + } + }, + [58363]={ + connections={ + [1]={ + id=55938, + orbit=2 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Archon Effect", + orbit=7, + orbitIndex=6, + skill=58363, + stats={ + [1]="10% increased effect of Archon Buffs on you" + } + }, + [58368]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=40511, + orbit=0 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + name="Minion Life", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=0, + skill=58368, + stats={ + [1]="Minions have 12% increased maximum Life" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [58379]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=57141, + orbit=0 + } + }, + group=1521, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.png", + isMultipleChoiceOption=true, + name="Acidic Concoction", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58379, + stats={ + [1]="Grants Skill: Acidic Concoction" + } + }, + [58387]={ + connections={ + [1]={ + id=52454, + orbit=4 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=4, + orbitIndex=6, + skill=58387, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [58388]={ + connections={ + [1]={ + id=13157, + orbit=0 + }, + [2]={ + id=17702, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=3, + orbitIndex=23, + skill=58388, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [58397]={ + connections={ + [1]={ + id=19338, + orbit=0 + }, + [2]={ + id=31647, + orbit=0 + }, + [3]={ + id=2334, + orbit=0 + } + }, + group=1377, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + isNotable=true, + name="Proficiency", + orbit=0, + orbitIndex=0, + skill=58397, + stats={ + [1]="+25 to Dexterity" + } + }, + [58416]={ + connections={ + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Projectile Speed", + orbit=2, + orbitIndex=11, + skill=58416, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [58426]={ + connections={ + [1]={ + id=34401, + orbit=0 + } + }, + group=1393, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Pocket Sand", + orbit=2, + orbitIndex=21, + skill=58426, + stats={ + [1]="50% increased Blind Effect" + } + }, + [58496]={ + connections={ + [1]={ + id=9328, + orbit=-4 + }, + [2]={ + id=37187, + orbit=5 + } + }, + group=140, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage against Immobilised", + orbit=0, + orbitIndex=0, + skill=58496, + stats={ + [1]="20% increased Damage against Immobilised Enemies while Shapeshifted" + } + }, + [58513]={ + connections={ + [1]={ + id=14418, + orbit=0 + }, + [2]={ + id=11774, + orbit=0 + } + }, + group=1292, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png", + name="Evasion and Movement Speed", + orbit=3, + orbitIndex=9, + skill=58513, + stats={ + [1]="1% increased Movement Speed", + [2]="8% increased Evasion Rating" + } + }, + [58526]={ + connections={ + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=15, + skill=58526, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [58528]={ + connections={ + [1]={ + id=5710, + orbit=6 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=3, + orbitIndex=2, + skill=58528, + stats={ + [1]="10% increased Melee Damage" + } + }, + [58539]={ + connections={ + [1]={ + id=60899, + orbit=0 + } + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Movement Penalty", + orbit=7, + orbitIndex=2, + skill=58539, + stats={ + [1]="3% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [58574]={ + ascendancyName="Ritualist", + connections={ + }, + group=1563, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Reduced Mana", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58574, + stats={ + [1]="30% reduced maximum Mana" + } + }, + [58591]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=559, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.png", + isNotable=true, + name="Enhanced Effectiveness", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58591, + stats={ + [1]="20% less Attributes", + [2]="Inherent bonuses gained from Attributes are doubled" + } + }, + [58593]={ + connections={ + [1]={ + id=33463, + orbit=9 + }, + [2]={ + id=26556, + orbit=-5 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=5, + orbitIndex=48, + skill=58593, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [58644]={ + connections={ + [1]={ + id=42714, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=7, + orbitIndex=21, + skill=58644, + stats={ + [1]="15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision" + } + }, + [58646]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=46654, + orbit=0 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.png", + isNotable=true, + name="Reactive Growth", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=26, + skill=58646, + stats={ + [1]="10% less Elemental Damage taken", + [2]="Adapt to the highest Elemental Damage Type of each Hit you take", + [3]="10% less Damage taken of each Elemental Damage Type per matching Adaptation" + } + }, + [58651]={ + connections={ + [1]={ + id=49357, + orbit=0 + }, + [2]={ + id=50558, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isSwitchable=true, + name="Minion Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + id=63913, + name="Armour and Energy Shield", + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + } + }, + orbit=4, + orbitIndex=71, + skill=58651, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [58674]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + connections={ + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + isOnlyImage=true, + name="Elemental Mastery", + orbit=7, + orbitIndex=1, + skill=58674 + }, + [58692]={ + connections={ + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png", + name="Deflection and Energy Shield Delay", + orbit=3, + orbitIndex=1, + skill=58692, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [58704]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=49380, + orbit=0 + } + }, + group=29, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.png", + isNotable=true, + name="Anvil's Weight", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58704, + stats={ + [1]="Break Armour equal to 10% of Hit Damage dealt" + } + }, + [58714]={ + connections={ + [1]={ + id=39431, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Grenadier", + orbit=4, + orbitIndex=60, + skill=58714, + stats={ + [1]="Grenade Skills have +1 Cooldown Use" + } + }, + [58718]={ + connections={ + [1]={ + id=35015, + orbit=0 + } + }, + group=696, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Damage", + orbit=0, + orbitIndex=0, + skill=58718, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [58747]={ + ascendancyName="Chronomancer", + connections={ + }, + group=369, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.png", + isNotable=true, + name="Ultimate Command", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58747, + stats={ + [1]="Grants Skill: Time Freeze" + } + }, + [58751]={ + ascendancyName="Lich", + connections={ + [1]={ + id=17788, + orbit=0 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=35941, + name="Energy Shield", + stats={ + [1]="20% increased maximum Energy Shield" + } + } + }, + orbit=8, + orbitIndex=0, + skill=58751, + stats={ + [1]="20% increased maximum Energy Shield" + } + }, + [58779]={ + connections={ + [1]={ + id=51040, + orbit=0 + }, + [2]={ + id=327, + orbit=0 + }, + [3]={ + id=23822, + orbit=0 + }, + [4]={ + id=47976, + orbit=0 + } + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Deflection and Energy Shield Delay", + orbit=2, + orbitIndex=6, + skill=58779, + stats={ + [1]="Gain Deflection Rating equal to 5% of Evasion Rating", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [58783]={ + connections={ + [1]={ + id=26520, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/lifeleech.png", + name="Life Leech. Armour and Evasion while Leeching", + orbit=2, + orbitIndex=19, + skill=58783, + stats={ + [1]="6% increased amount of Life Leeched", + [2]="8% increased Armour and Evasion Rating while Leeching" + } + }, + [58789]={ + connections={ + [1]={ + id=13307, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun and Ailment Threshold from Energy Shield", + orbit=4, + orbitIndex=20, + skill=58789, + stats={ + [1]="Gain additional Ailment Threshold equal to 8% of maximum Energy Shield", + [2]="Gain additional Stun Threshold equal to 8% of maximum Energy Shield" + } + }, + [58814]={ + connections={ + [1]={ + id=55802, + orbit=0 + }, + [2]={ + id=244, + orbit=0 + }, + [3]={ + id=12465, + orbit=0 + }, + [4]={ + id=26830, + orbit=0 + }, + [5]={ + id=26952, + orbit=0 + } + }, + group=966, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=58814, + stats={ + [1]="+5 to any Attribute" + } + }, + [58817]={ + connections={ + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + isNotable=true, + name="Artillery Strike", + orbit=4, + orbitIndex=15, + skill=58817, + stats={ + [1]="Attack Skills have +1 to maximum number of Summoned Ballista Totems", + [2]="15% increased Area of Effect while you have a Totem" + } + }, + [58838]={ + connections={ + [1]={ + id=26725, + orbit=6 + } + }, + group=305, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=5, + orbitIndex=60, + skill=58838, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [58848]={ + connections={ + [1]={ + id=22962, + orbit=0 + }, + [2]={ + id=10576, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=7, + orbitIndex=10, + skill=58848, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [58855]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=240, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=58855 + }, + [58884]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + connections={ + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=58884 + }, + [58894]={ + connections={ + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + isNotable=true, + name="Dominus' Providence", + orbit=2, + orbitIndex=1, + skill=58894, + stats={ + [1]="+8% of Armour also applies to Elemental Damage", + [2]="10% faster start of Energy Shield Recharge", + [3]="Immune to Exposure", + [4]="Unaffected by Elemental Weakness" + } + }, + [58926]={ + connections={ + [1]={ + id=64572, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=16, + skill=58926, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [58930]={ + connections={ + [1]={ + id=14934, + orbit=7 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/castspeed.png", + name="Cast Speed", + orbit=7, + orbitIndex=9, + skill=58930, + stats={ + [1]="3% increased Cast Speed" + } + }, + [58932]={ + ascendancyName="Lich", + connections={ + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.png", + isNotable=true, + name="Eldritch Empowerment", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=58932, + stats={ + [1]="Sacrificing Energy Shield does not interrupt Recharge", + [2]="Sacrifice 5% of maximum Energy Shield when you Cast a Spell\nSpells for which this Sacrifice was fully made deal 30% more Damage" + } + }, + [58939]={ + connections={ + [1]={ + id=44608, + orbit=0 + } + }, + group=906, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="Dispatch Foes", + orbit=2, + orbitIndex=8, + skill=58939, + stats={ + [1]="40% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" + } + }, + [58971]={ + connections={ + [1]={ + id=12998, + orbit=-6 + }, + [2]={ + id=38678, + orbit=-7 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + name="Ailment Threshold", + orbit=2, + orbitIndex=11, + skill=58971, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [59006]={ + connections={ + [1]={ + id=37956, + orbit=7 + } + }, + group=470, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Duration", + orbit=0, + orbitIndex=0, + skill=59006, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [59028]={ + connections={ + [1]={ + id=41210, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=4, + orbitIndex=16, + skill=59028, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [59039]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=28223, + orbit=4 + } + }, + group=166, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=38, + skill=59039, + stats={ + [1]="20% increased Critical Damage Bonus" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [59053]={ + connections={ + [1]={ + id=54805, + orbit=-7 + } + }, + group=1077, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect and Hinder Duration", + orbit=3, + orbitIndex=8, + skill=59053, + stats={ + [1]="Debuffs you inflict have 4% increased Slow Magnitude", + [2]="20% increased Hinder Duration" + } + }, + [59061]={ + connections={ + [1]={ + id=28267, + orbit=0 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=6, + skill=59061, + stats={ + [1]="20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently" + } + }, + [59064]={ + connections={ + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + name="Mark Effect", + orbit=3, + orbitIndex=21, + skill=59064, + stats={ + [1]="10% increased Effect of your Mark Skills" + } + }, + [59070]={ + connections={ + [1]={ + id=55011, + orbit=0 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png", + isNotable=true, + name="Enduring Archon", + orbit=7, + orbitIndex=13, + skill=59070, + stats={ + [1]="30% increased Archon Buff duration" + } + }, + [59083]={ + connections={ + [1]={ + id=32364, + orbit=0 + } + }, + group=1423, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Ignite Magnitude", + orbit=7, + orbitIndex=4, + skill=59083, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [59093]={ + connections={ + [1]={ + id=14110, + orbit=0 + }, + [2]={ + id=5088, + orbit=0 + }, + [3]={ + id=53444, + orbit=0 + }, + [4]={ + id=4621, + orbit=0 + } + }, + group=276, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59093, + stats={ + [1]="+5 to any Attribute" + } + }, + [59136]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=17729, + orbit=0 + } + }, + group=606, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=21, + skill=59136, + stats={ + [1]="12% increased Spell Damage", + [2]="8% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [59180]={ + connections={ + [1]={ + id=50023, + orbit=0 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Attack Damage", + orbit=7, + orbitIndex=15, + skill=59180, + stats={ + [1]="10% increased Attack Damage" + } + }, + [59208]={ + connections={ + [1]={ + id=5681, + orbit=0 + } + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + isNotable=true, + name="Frantic Fighter", + orbit=2, + orbitIndex=16, + skill=59208, + stats={ + [1]="30% reduced Accuracy Rating while Surrounded", + [2]="100% increased Attack Damage while Surrounded" + } + }, + [59213]={ + connections={ + [1]={ + id=48240, + orbit=3 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Recovery", + orbit=2, + orbitIndex=15, + skill=59213, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [59214]={ + connections={ + [1]={ + id=26268, + orbit=0 + }, + [2]={ + id=6570, + orbit=0 + } + }, + group=1267, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + isNotable=true, + name="Fated End", + orbit=7, + orbitIndex=18, + skill=59214, + stats={ + [1]="30% increased Curse Duration", + [2]="Targets Cursed by you have 50% reduced Life Regeneration Rate", + [3]="Enemies you Curse cannot Recharge Energy Shield" + } + }, + [59256]={ + connections={ + [1]={ + id=8531, + orbit=0 + } + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=7, + skill=59256, + stats={ + [1]="10% increased Critical Hit Chance if you have Killed Recently" + } + }, + [59263]={ + connections={ + [1]={ + id=37963, + orbit=0 + } + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + isNotable=true, + name="Ripping Blade", + orbit=4, + orbitIndex=33, + skill=59263, + stats={ + [1]="25% increased Damage with Swords" + } + }, + [59281]={ + connections={ + [1]={ + id=14394, + orbit=7 + }, + [2]={ + id=1221, + orbit=0 + }, + [3]={ + id=50124, + orbit=-7 + }, + [4]={ + id=58109, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=2, + orbitIndex=22, + skill=59281, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [59289]={ + connections={ + [1]={ + id=22532, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Immobilisation Buildup", + orbit=2, + orbitIndex=21, + skill=59289, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [59303]={ + connections={ + [1]={ + id=25029, + orbit=0 + } + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Lucky Rabbit Foot", + orbit=4, + orbitIndex=3, + skill=59303, + stats={ + [1]="30% increased Damage while you have an active Charm", + [2]="6% increased Movement Speed while you have an active Charm" + } + }, + [59342]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=23416, + orbit=9 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Life Leech", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=68, + skill=59342, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [59355]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=59355 + }, + [59356]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + connections={ + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=59356 + }, + [59362]={ + connections={ + [1]={ + id=41669, + orbit=0 + }, + [2]={ + id=62677, + orbit=0 + }, + [3]={ + id=50720, + orbit=0 + } + }, + group=772, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59362, + stats={ + [1]="+5 to any Attribute" + } + }, + [59367]={ + connections={ + [1]={ + id=10774, + orbit=0 + } + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=2, + orbitIndex=6, + skill=59367, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [59368]={ + connections={ + [1]={ + id=61215, + orbit=4 + }, + [2]={ + id=48116, + orbit=0 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png", + name="Stun Threshold", + orbit=7, + orbitIndex=2, + skill=59368, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [59372]={ + ascendancyName="Titan", + connections={ + [1]={ + id=56842, + orbit=-5 + } + }, + group=79, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.png", + isNotable=true, + name="Crushing Impacts", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=59372, + stats={ + [1]="25% more Damage against Heavy Stunned Enemies", + [2]="Your Hits are Crushing Blows" + } + }, + [59376]={ + connections={ + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=3, + skill=59376, + stats={ + [1]="+5 to any Attribute" + } + }, + [59387]={ + connections={ + }, + group=930, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Infusion of Power", + orbit=0, + orbitIndex=0, + skill=59387, + stats={ + [1]="Gain a Power Charge when you consume an Elemental Infusion" + } + }, + [59390]={ + connections={ + [1]={ + id=11472, + orbit=0 + } + }, + group=1203, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + name="Evasion if Consumed Frenzy Charge", + orbit=2, + orbitIndex=16, + skill=59390, + stats={ + [1]="20% increased Evasion Rating if you've consumed a Frenzy Charge Recently" + } + }, + [59413]={ + connections={ + }, + group=645, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=0, + orbitIndex=0, + skill=59413, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [59425]={ + connections={ + [1]={ + id=23939, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=7, + orbitIndex=16, + skill=59425, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [59433]={ + connections={ + [1]={ + id=60916, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + isNotable=true, + name="Thirst for Endurance", + orbit=2, + orbitIndex=20, + skill=59433, + stats={ + [1]="25% chance when you gain an Endurance Charge to gain an additional Endurance Charge" + } + }, + [59438]={ + connections={ + [1]={ + id=18101, + orbit=-7 + }, + [2]={ + id=15801, + orbit=0 + } + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + isNotable=true, + name="Flow of Life", + orbit=0, + orbitIndex=0, + skill=59438, + stats={ + [1]="Debuffs on you expire 10% faster", + [2]="20% increased speed of Recoup Effects" + } + }, + [59442]={ + connections={ + [1]={ + id=59413, + orbit=0 + } + }, + group=626, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=0, + orbitIndex=0, + skill=59442, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [59446]={ + connections={ + [1]={ + id=4544, + orbit=0 + } + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Life Flask Charges", + orbit=2, + orbitIndex=5, + skill=59446, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [59466]={ + connections={ + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=7, + orbitIndex=0, + skill=59466, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [59480]={ + connections={ + [1]={ + id=3999, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Area Damage", + orbit=4, + orbitIndex=69, + skill=59480, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [59498]={ + connections={ + [1]={ + id=54814, + orbit=0 + } + }, + group=445, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=10, + skill=59498, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [59501]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + connections={ + [1]={ + id=25619, + orbit=0 + }, + [2]={ + id=42354, + orbit=0 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Blind Mastery", + orbit=0, + orbitIndex=0, + skill=59501 + }, + [59503]={ + connections={ + [1]={ + id=22208, + orbit=0 + } + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Critical Chance", + orbit=7, + orbitIndex=13, + skill=59503, + stats={ + [1]="8% increased Critical Hit Chance for Attacks", + [2]="8% increased Accuracy Rating" + } + }, + [59538]={ + connections={ + [1]={ + id=34912, + orbit=0 + }, + [2]={ + id=47976, + orbit=0 + } + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59538, + stats={ + [1]="+5 to any Attribute" + } + }, + [59540]={ + ascendancyName="Titan", + connections={ + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.png", + isNotable=true, + name="Mountain Splitter", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=67, + skill=59540, + stats={ + [1]="Every Third Slam skill that doesn't create Fissures which you use yourself causes 3 additional Aftershocks ahead and to each side of the initial area" + } + }, + [59541]={ + connections={ + [1]={ + id=28573, + orbit=7 + }, + [2]={ + id=56926, + orbit=0 + } + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Necrotised Flesh", + orbit=3, + orbitIndex=3, + skill=59541, + stats={ + [1]="Minions have 40% increased maximum Life", + [2]="Minions have 10% reduced Life Recovery rate" + } + }, + [59542]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=42416, + orbit=0 + } + }, + group=1506, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.png", + isMultipleChoiceOption=true, + name="Far Shot", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=59542, + stats={ + [1]="Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres" + } + }, + [59589]={ + connections={ + [1]={ + id=52659, + orbit=0 + } + }, + group=162, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Heavy Armour", + orbit=3, + orbitIndex=23, + skill=59589, + stats={ + [1]="Gain Armour equal to 150% of total Strength Requirements of Equipped Boots, Gloves and Helmet" + } + }, + [59600]={ + connections={ + [1]={ + id=9411, + orbit=0 + } + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=7, + orbitIndex=21, + skill=59600, + stats={ + [1]="25% increased Life Recovery from Flasks used when on Low Life" + } + }, + [59603]={ + connections={ + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=0, + orbitIndex=0, + skill=59603, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [59636]={ + connections={ + [1]={ + id=13769, + orbit=-4 + }, + [2]={ + id=48007, + orbit=0 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + isNotable=true, + name="Open Mind", + orbit=7, + orbitIndex=12, + skill=59636, + stats={ + [1]="25% increased Mana Regeneration Rate" + } + }, + [59644]={ + connections={ + [1]={ + id=42959, + orbit=-7 + } + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=7, + orbitIndex=15, + skill=59644, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [59647]={ + connections={ + [1]={ + id=8791, + orbit=3 + } + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=7, + orbitIndex=10, + skill=59647, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [59651]={ + connections={ + [1]={ + id=41654, + orbit=0 + }, + [2]={ + id=47821, + orbit=4 + }, + [3]={ + id=25557, + orbit=0 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Offering Duration", + orbit=2, + orbitIndex=11, + skill=59651, + stats={ + [1]="Offering Skills have 20% increased Duration" + } + }, + [59653]={ + connections={ + [1]={ + id=35987, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Movement Speed", + orbit=7, + orbitIndex=10, + skill=59653, + stats={ + [1]="2% increased Movement Speed" + } + }, + [59657]={ + connections={ + [1]={ + id=42078, + orbit=0 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.png", + isNotable=true, + name="First Teachings of the Keeper", + orbit=3, + orbitIndex=16, + skill=59657, + stats={ + [1]="+5% to Fire Resistance", + [2]="+5% to Chaos Resistance", + [3]="Gain Deflection Rating equal to 8% of Evasion Rating", + [4]="10% faster start of Energy Shield Recharge" + } + }, + [59661]={ + connections={ + [1]={ + id=12245, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Faster Ignites and Flammability Magnitude", + orbit=7, + orbitIndex=17, + skill=59661, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="Ignites you inflict deal Damage 4% faster" + } + }, + [59694]={ + connections={ + [1]={ + id=52399, + orbit=0 + } + }, + group=1457, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Critical Damage", + orbit=0, + orbitIndex=0, + skill=59694, + stats={ + [1]="18% increased Critical Damage Bonus with Quarterstaves" + } + }, + [59695]={ + connections={ + [1]={ + id=28950, + orbit=8 + } + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=2, + orbitIndex=19, + skill=59695, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [59710]={ + connections={ + [1]={ + id=52618, + orbit=5 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifting Spell Damage", + orbit=7, + orbitIndex=21, + skill=59710, + stats={ + [1]="12% increased Spell Damage if you have Shapeshifted to Human form Recently" + } + }, + [59720]={ + connections={ + [1]={ + id=41163, + orbit=0 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + isNotable=true, + name="Beastial Skin", + orbit=5, + orbitIndex=42, + skill=59720, + stats={ + [1]="100% increased Evasion Rating from Equipped Body Armour" + } + }, + [59759]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1533, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.png", + isNotable=true, + name="Chayula's Gift", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=8, + orbitIndex=4, + skill=59759, + stats={ + [1]="+10% to Maximum Chaos Resistance", + [2]="Chaos Resistance is doubled" + } + }, + [59767]={ + connections={ + [1]={ + id=31292, + orbit=0 + }, + [2]={ + id=20645, + orbit=0 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Reverberating Impact", + orbit=3, + orbitIndex=11, + skill=59767, + stats={ + [1]="Break 25% increased Armour", + [2]="12% increased Area of Effect for Attacks" + } + }, + [59775]={ + connections={ + [1]={ + id=20782, + orbit=-4 + } + }, + group=1275, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=59775, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [59777]={ + connections={ + [1]={ + id=10362, + orbit=0 + }, + [2]={ + id=17791, + orbit=0 + }, + [3]={ + id=13937, + orbit=0 + }, + [4]={ + id=53719, + orbit=0 + } + }, + group=149, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59777, + stats={ + [1]="+5 to any Attribute" + } + }, + [59779]={ + connections={ + [1]={ + id=50986, + orbit=0 + }, + [2]={ + id=42350, + orbit=6 + }, + [3]={ + id=97, + orbit=6 + }, + [4]={ + id=11311, + orbit=5 + } + }, + group=767, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=0, + orbitIndex=0, + skill=59779, + stats={ + [1]="+10 to Armour", + [2]="+8 to Evasion Rating" + } + }, + [59781]={ + connections={ + [1]={ + id=39416, + orbit=0 + } + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.png", + isNotable=true, + name="Embodiment of Death", + orbit=2, + orbitIndex=19, + skill=59781, + stats={ + [1]="Immune to Bleeding while affected by an Archon Buff" + } + }, + [59785]={ + connections={ + [1]={ + id=27296, + orbit=0 + }, + [2]={ + id=1200, + orbit=0 + }, + [3]={ + id=33452, + orbit=0 + }, + [4]={ + id=8852, + orbit=0 + } + }, + group=121, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59785, + stats={ + [1]="+5 to any Attribute" + } + }, + [59795]={ + connections={ + [1]={ + id=10156, + orbit=-3 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=33, + skill=59795, + stats={ + [1]="+5 to any Attribute" + } + }, + [59798]={ + connections={ + [1]={ + id=5335, + orbit=-4 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Ailment Threshold from Energy Shield", + orbit=1, + orbitIndex=5, + skill=59798, + stats={ + [1]="Gain additional Ailment Threshold equal to 12% of maximum Energy Shield" + } + }, + [59799]={ + connections={ + [1]={ + id=7338, + orbit=4 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Stun Threshold from Energy Shield", + orbit=1, + orbitIndex=10, + skill=59799, + stats={ + [1]="Gain additional Stun Threshold equal to 12% of maximum Energy Shield" + } + }, + [59822]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=8415, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Blood Mage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=9, + orbitIndex=0, + skill=59822 + }, + [59881]={ + connections={ + [1]={ + id=54417, + orbit=0 + }, + [2]={ + id=28556, + orbit=-5 + } + }, + group=806, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=16, + skill=59881, + stats={ + [1]="+5 to any Attribute" + } + }, + [59886]={ + connections={ + [1]={ + id=4442, + orbit=0 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/lightningstr.png", + name="Armour Applies to Lightning Damage Hits", + orbit=5, + orbitIndex=23, + skill=59886, + stats={ + [1]="+15% of Armour also applies to Lightning Damage" + } + }, + [59908]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=36197, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Area of Effect", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=23, + skill=59908, + stats={ + [1]="10% increased Area of Effect for Skills used by Totems" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [59909]={ + connections={ + [1]={ + id=30539, + orbit=4 + } + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.png", + name="Corpses", + orbit=7, + orbitIndex=22, + skill=59909, + stats={ + [1]="5% chance to not destroy Corpses when Consuming Corpses" + } + }, + [59913]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=29871, + orbit=0 + } + }, + group=1507, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.png", + isNotable=true, + name="Called Shots", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=59913, + stats={ + [1]="Grants Skill: Called Shots" + } + }, + [59915]={ + connections={ + [1]={ + id=7741, + orbit=-6 + }, + [2]={ + id=97, + orbit=-6 + }, + [3]={ + id=2455, + orbit=-6 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=0, + orbitIndex=0, + skill=59915, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [59938]={ + connections={ + [1]={ + id=50757, + orbit=0 + } + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Against the Elements", + orbit=0, + orbitIndex=0, + skill=59938, + stats={ + [1]="30% increased Elemental Ailment Threshold", + [2]="15% reduced Slowing Potency of Debuffs on You" + } + }, + [59945]={ + connections={ + [1]={ + id=4527, + orbit=0 + }, + [2]={ + id=45327, + orbit=0 + }, + [3]={ + id=21684, + orbit=0 + } + }, + group=204, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59945, + stats={ + [1]="+5 to any Attribute" + } + }, + [60014]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=38474, + orbit=0 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Scent of Blood", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=16, + skill=60014, + stats={ + [1]="3% increased Movement Speed", + [2]="20% increased Bleeding Duration", + [3]="40% chance for Attack Hits to apply Incision" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [60034]={ + connections={ + [1]={ + id=15207, + orbit=0 + }, + [2]={ + id=22208, + orbit=0 + } + }, + group=1319, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + isNotable=true, + name="Falcon Dive", + orbit=0, + orbitIndex=0, + skill=60034, + stats={ + [1]="4% increased Attack Speed", + [2]="1% increased Attack Speed per 400 Accuracy Rating, up to 20%" + } + }, + [60064]={ + connections={ + [1]={ + id=47263, + orbit=0 + }, + [2]={ + id=3027, + orbit=0 + } + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage", + orbit=2, + orbitIndex=18, + skill=60064, + stats={ + [1]="10% increased Physical Damage" + } + }, + [60068]={ + connections={ + [1]={ + id=55925, + orbit=7 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=3, + orbitIndex=12, + skill=60068, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [60083]={ + connections={ + [1]={ + id=44239, + orbit=0 + } + }, + group=1101, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + isNotable=true, + name="Pin and Run", + orbit=0, + orbitIndex=0, + skill=60083, + stats={ + [1]="30% increased Pin Buildup", + [2]="5% increased Movement Speed if you've Pinned an Enemy Recently" + } + }, + [60085]={ + connections={ + [1]={ + id=55802, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Damage", + orbit=7, + orbitIndex=15, + skill=60085, + stats={ + [1]="10% increased Damage" + } + }, + [60107]={ + connections={ + [1]={ + id=57204, + orbit=0 + } + }, + group=925, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=9, + skill=60107, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [60116]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + connections={ + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=3, + orbitIndex=10, + skill=60116 + }, + [60138]={ + connections={ + [1]={ + id=52695, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + isNotable=true, + name="Stylebender", + orbit=5, + orbitIndex=3, + skill=60138, + stats={ + [1]="Hits Break 30% increased Armour on targets with Ailments", + [2]="+10 to Strength", + [3]="25% increased Physical Damage" + } + }, + [60170]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + connections={ + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=60170 + }, + [60173]={ + connections={ + [1]={ + id=4238, + orbit=2 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Accuracy", + orbit=7, + orbitIndex=21, + skill=60173, + stats={ + [1]="12% increased Accuracy Rating with One Handed Melee Weapons" + } + }, + [60191]={ + connections={ + [1]={ + id=54985, + orbit=0 + } + }, + group=568, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bolt Speed", + orbit=7, + orbitIndex=11, + skill=60191, + stats={ + [1]="8% increased Bolt Speed" + } + }, + [60203]={ + connections={ + [1]={ + id=5332, + orbit=9 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=2, + orbitIndex=2, + skill=60203, + stats={ + [1]="+8 to Strength" + } + }, + [60210]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + connections={ + [1]={ + id=63431, + orbit=0 + } + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.png", + isOnlyImage=true, + name="Poison Mastery", + orbit=1, + orbitIndex=9, + skill=60210 + }, + [60230]={ + connections={ + [1]={ + id=56935, + orbit=0 + }, + [2]={ + id=58362, + orbit=0 + }, + [3]={ + id=10192, + orbit=0 + }, + [4]={ + id=55909, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + id=19602, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=5, + orbitIndex=0, + skill=60230, + stats={ + [1]="8% increased Elemental Damage" + } + }, + [60239]={ + connections={ + [1]={ + id=15343, + orbit=5 + }, + [2]={ + id=49356, + orbit=-2 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=7, + skill=60239, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [60241]={ + connections={ + [1]={ + id=57178, + orbit=0 + } + }, + group=491, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Bleed Chance", + orbit=0, + orbitIndex=0, + skill=60241, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [60269]={ + connections={ + [1]={ + id=6588, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + isNotable=true, + name="Roil", + orbit=7, + orbitIndex=19, + skill=60269, + stats={ + [1]="10% reduced Spell Area Damage", + [2]="Spell Skills have 25% increased Area of Effect" + } + }, + [60273]={ + connections={ + [1]={ + id=28199, + orbit=0 + }, + [2]={ + id=40626, + orbit=0 + } + }, + group=1274, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + isNotable=true, + name="Hindering Obstacles", + orbit=0, + orbitIndex=0, + skill=60273, + stats={ + [1]="Debuffs inflicted by Hazards have 30% increased Slow Magnitude", + [2]="30% increased Hazard Immobilisation buildup" + } + }, + [60274]={ + connections={ + [1]={ + id=13293, + orbit=4 + }, + [2]={ + id=19236, + orbit=0 + } + }, + group=153, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour", + orbit=7, + orbitIndex=0, + skill=60274, + stats={ + [1]="15% increased Armour" + } + }, + [60287]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=37397, + orbit=0 + }, + [2]={ + id=32952, + orbit=0 + }, + [3]={ + id=63259, + orbit=0 + } + }, + group=373, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.png", + isMultipleChoice=true, + isNotable=true, + name="Implanted Gems", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=60287 + }, + [60298]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=15, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.png", + isNotable=true, + name="Against the Anvil", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=60298, + stats={ + [1]="Grants Skill: Temper Weapon" + } + }, + [60313]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + connections={ + }, + group=711, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.png", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=60313 + }, + [60323]={ + connections={ + [1]={ + id=9199, + orbit=0 + }, + [2]={ + id=47560, + orbit=0 + } + }, + group=1293, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Surpassing Projectile Chance", + orbit=6, + orbitIndex=54, + skill=60323, + stats={ + [1]="+8% Surpassing chance to fire an additional Projectile" + } + }, + [60324]={ + connections={ + [1]={ + id=1506, + orbit=2 + } + }, + group=1108, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=14, + skill=60324, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [60332]={ + connections={ + [1]={ + id=21213, + orbit=0 + } + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=4, + skill=60332, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [60362]={ + connections={ + [1]={ + id=56265, + orbit=0 + } + }, + group=1451, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Damage", + orbit=2, + orbitIndex=6, + skill=60362, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [60404]={ + connections={ + [1]={ + id=20691, + orbit=0 + }, + [2]={ + id=25011, + orbit=0 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Perfect Opportunity", + orbit=2, + orbitIndex=14, + skill=60404, + stats={ + [1]="30% increased Stun Buildup", + [2]="Damage with Hits is Lucky against Heavy Stunned Enemies" + } + }, + [60464]={ + connections={ + [1]={ + id=58971, + orbit=-6 + }, + [2]={ + id=28623, + orbit=0 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + isNotable=true, + name="Fan the Flames", + orbit=4, + orbitIndex=45, + skill=60464, + stats={ + [1]="25% reduced Ignite Duration on you", + [2]="40% increased Elemental Ailment Threshold" + } + }, + [60480]={ + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + name="Herald Reservation", + orbit=2, + orbitIndex=4, + skill=60480, + stats={ + [1]="8% increased Reservation Efficiency of Herald Skills" + } + }, + [60483]={ + connections={ + [1]={ + id=7809, + orbit=0 + }, + [2]={ + id=36540, + orbit=0 + } + }, + group=1380, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=60483, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [60488]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + connections={ + }, + group=865, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.png", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=60488 + }, + [60505]={ + connections={ + [1]={ + id=28050, + orbit=0 + }, + [2]={ + id=65009, + orbit=0 + }, + [3]={ + id=19808, + orbit=0 + }, + [4]={ + id=18831, + orbit=0 + } + }, + group=1079, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=60505, + stats={ + [1]="+5 to any Attribute" + } + }, + [60515]={ + connections={ + [1]={ + id=19955, + orbit=-4 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=3, + orbitIndex=4, + skill=60515, + stats={ + [1]="12% increased Cold Damage" + } + }, + [60551]={ + connections={ + [1]={ + id=21861, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Presence Area", + orbit=2, + orbitIndex=14, + skill=60551, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [60560]={ + connections={ + [1]={ + id=29527, + orbit=-3 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage vs Full Life", + orbit=0, + orbitIndex=0, + skill=60560, + stats={ + [1]="20% increased Damage with Hits against Enemies that are on Full Life" + } + }, + [60568]={ + connections={ + [1]={ + id=52348, + orbit=-6 + } + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Placement Speed", + orbit=3, + orbitIndex=13, + skill=60568, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [60619]={ + connections={ + [1]={ + id=541, + orbit=-5 + }, + [2]={ + id=41609, + orbit=-5 + }, + [3]={ + id=31010, + orbit=0 + }, + [4]={ + id=27216, + orbit=0 + }, + [5]={ + id=12005, + orbit=0 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png", + isNotable=true, + name="Scales of the Wyvern", + orbit=4, + orbitIndex=15, + skill=60619, + stats={ + [1]="20% faster start of Energy Shield Recharge while Shapeshifted", + [2]="20% increased Energy Shield Recharge Rate while Shapeshifted", + [3]="+1% to Maximum Lightning Resistance while Shapeshifted" + } + }, + [60620]={ + connections={ + [1]={ + id=45992, + orbit=0 + } + }, + group=385, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=7, + orbitIndex=4, + skill=60620, + stats={ + [1]="+8 to Strength" + } + }, + [60634]={ + ascendancyName="Titan", + connections={ + [1]={ + id=27418, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.png", + isNotable=true, + name="Colossal Capacity", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=48, + skill=60634, + stats={ + [1]="Carry a Chest which adds 20 Inventory Slots" + } + }, + [60662]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=7979, + orbit=0 + } + }, + group=1548, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png", + name="Elemental Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=60662, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [60685]={ + connections={ + [1]={ + id=1826, + orbit=0 + } + }, + group=857, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=60685, + stats={ + [1]="+5 to any Attribute" + } + }, + [60692]={ + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Echoing Flames", + orbit=7, + orbitIndex=12, + skill=60692, + stats={ + [1]="30% increased Elemental Damage if you've Ignited an Enemy Recently" + } + }, + [60700]={ + connections={ + [1]={ + id=44974, + orbit=0 + } + }, + group=1219, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Empowered Attack Freeze Buildup", + orbit=7, + orbitIndex=3, + skill=60700, + stats={ + [1]="20% increased Freeze Buildup with Empowered Attacks" + } + }, + [60708]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=17894, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + name="Bow Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=17, + skill=60708, + stats={ + [1]="16% increased Damage with Bows" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [60735]={ + connections={ + [1]={ + id=42658, + orbit=0 + }, + [2]={ + id=11825, + orbit=0 + } + }, + group=1265, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=60735 + }, + [60738]={ + connections={ + [1]={ + id=37408, + orbit=0 + } + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/flaskstr.png", + name="Life Flasks", + orbit=2, + orbitIndex=19, + skill=60738, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [60741]={ + connections={ + [1]={ + id=33922, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage", + orbit=2, + orbitIndex=12, + skill=60741, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [60764]={ + connections={ + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Feathered Fletching", + orbit=5, + orbitIndex=12, + skill=60764, + stats={ + [1]="Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + }, + [60809]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + connections={ + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.png", + isOnlyImage=true, + name="Channelling Mastery", + orbit=0, + orbitIndex=0, + skill=60809 + }, + [60829]={ + connections={ + [1]={ + id=36630, + orbit=0 + } + }, + group=1042, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Incision Chance", + orbit=2, + orbitIndex=22, + skill=60829, + stats={ + [1]="20% chance for Attack Hits to apply Incision" + } + }, + [60859]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=4891, + orbit=9 + } + }, + group=1569, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + name="Charm Charges", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=60859, + stats={ + [1]="15% increased Charm Charges gained" + } + }, + [60886]={ + connections={ + [1]={ + id=59213, + orbit=3 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Recovery", + orbit=1, + orbitIndex=5, + skill=60886, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [60891]={ + connections={ + [1]={ + id=53185, + orbit=0 + } + }, + group=1449, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png", + name="Accuracy Rating", + orbit=1, + orbitIndex=9, + skill=60891, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [60899]={ + connections={ + [1]={ + id=32543, + orbit=-7 + } + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Reduced Movement Penalty", + orbit=7, + orbitIndex=22, + skill=60899, + stats={ + [1]="3% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [60913]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=52, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.png", + isNotable=true, + name="Kitavan Engraving", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=60913, + stats={ + [1]="Body Armour grants 15% increased maximum Life" + } + }, + [60916]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + connections={ + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + isOnlyImage=true, + name="Endurance Charge Mastery", + orbit=0, + orbitIndex=0, + skill=60916 + }, + [60974]={ + connections={ + [1]={ + id=1506, + orbit=-2 + } + }, + group=1108, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Additional Remnant Chance", + orbit=2, + orbitIndex=2, + skill=60974, + stats={ + [1]="5% chance to create an additional Remnant" + } + }, + [60992]={ + connections={ + [1]={ + id=24889, + orbit=0 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.png", + isNotable=true, + name="Nurturing Guardian", + orbit=1, + orbitIndex=1, + skill=60992, + stats={ + [1]="Life Recovery from your Flasks also applies to your Companions" + } + }, + [61026]={ + connections={ + [1]={ + id=34552, + orbit=0 + }, + [2]={ + id=17378, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/passives/minionlife.png", + isNotable=true, + name="Crystalline Flesh", + orbit=3, + orbitIndex=0, + skill=61026, + stats={ + [1]="Minions have +20% to all Elemental Resistances", + [2]="Minions have +5% to all Maximum Elemental Resistances" + } + }, + [61027]={ + connections={ + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/mana.png", + isNotable=true, + name="Mana Blessing", + orbit=0, + orbitIndex=0, + skill=61027, + stats={ + [1]="+20 to maximum Mana", + [2]="20% increased Mana Regeneration Rate" + } + }, + [61039]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=55, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.png", + isNotable=true, + name="Tantalum Alloy", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=61039, + stats={ + [1]="Body Armour grants +75% to Fire Resistance" + } + }, + [61042]={ + connections={ + [1]={ + id=44344, + orbit=0 + } + }, + group=637, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=61042, + stats={ + [1]="+5 to any Attribute" + } + }, + [61056]={ + connections={ + [1]={ + id=40399, + orbit=-4 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy", + orbit=7, + orbitIndex=1, + skill=61056, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [61063]={ + connections={ + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Penetration", + orbit=3, + orbitIndex=0, + skill=61063, + stats={ + [1]="Damage Penetrates 4% of Enemy Elemental Resistances" + } + }, + [61067]={ + connections={ + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + isSwitchable=true, + name="Spell Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + id=50065, + name="Life Regeneration", + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + } + }, + orbit=2, + orbitIndex=21, + skill=61067, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [61104]={ + connections={ + }, + group=1070, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + isNotable=true, + name="Staggering Wounds", + orbit=0, + orbitIndex=0, + skill=61104, + stats={ + [1]="50% chance to Knock Back Bleeding Enemies with Hits" + } + }, + [61106]={ + connections={ + [1]={ + id=59653, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Movement Speed", + orbit=2, + orbitIndex=15, + skill=61106, + stats={ + [1]="2% increased Movement Speed" + } + }, + [61112]={ + connections={ + [1]={ + id=36071, + orbit=0 + }, + [2]={ + id=20105, + orbit=0 + } + }, + group=1386, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.png", + isNotable=true, + name="Roll and Strike", + orbit=5, + orbitIndex=14, + skill=61112, + stats={ + [1]="25% increased Damage with Spears", + [2]="10% increased Attack Speed with Spears" + } + }, + [61113]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=53910, + orbit=-3 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=10, + skill=61113, + stats={ + [1]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61119]={ + connections={ + [1]={ + id=64325, + orbit=4 + }, + [2]={ + id=63431, + orbit=0 + } + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Duration", + orbit=2, + orbitIndex=18, + skill=61119, + stats={ + [1]="10% increased Poison Duration" + } + }, + [61142]={ + connections={ + [1]={ + id=38365, + orbit=0 + } + }, + group=207, + icon="Art/2DArt/SkillIcons/passives/chargestr.png", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=12, + skill=61142, + stats={ + [1]="Recover 2% of maximum Life for each Endurance Charge consumed" + } + }, + [61149]={ + connections={ + [1]={ + id=42760, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.png", + name="Stun Recovery", + orbit=2, + orbitIndex=13, + skill=61149, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [61170]={ + connections={ + [1]={ + id=27186, + orbit=7 + } + }, + group=682, + icon="Art/2DArt/SkillIcons/passives/firedamage.png", + name="Fire Damage", + orbit=1, + orbitIndex=3, + skill=61170, + stats={ + [1]="10% increased Fire Damage" + } + }, + [61179]={ + connections={ + [1]={ + id=21245, + orbit=0 + } + }, + group=506, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.png", + name="Spell Critical Chance", + orbit=0, + orbitIndex=0, + skill=61179, + stats={ + [1]="10% increased Critical Hit Chance for Spells" + } + }, + [61196]={ + connections={ + [1]={ + id=56045, + orbit=5 + }, + [2]={ + id=13419, + orbit=0 + } + }, + group=1093, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=61196, + stats={ + [1]="+5 to any Attribute" + } + }, + [61215]={ + connections={ + [1]={ + id=37242, + orbit=3 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png", + name="Stun Threshold", + orbit=7, + orbitIndex=8, + skill=61215, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [61246]={ + connections={ + [1]={ + id=144, + orbit=5 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Freeze Buildup", + orbit=4, + orbitIndex=18, + skill=61246, + stats={ + [1]="10% increased Freeze Buildup", + [2]="8% increased Elemental Damage" + } + }, + [61263]={ + connections={ + [1]={ + id=4544, + orbit=0 + } + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Poison Duration on You", + orbit=2, + orbitIndex=11, + skill=61263, + stats={ + [1]="10% reduced Poison Duration on you" + } + }, + [61267]={ + ascendancyName="Infernalist", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.png", + isNotable=true, + name="Mastered Darkness", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=60, + skill=61267, + stats={ + [1]="Demonflame has no maximum" + } + }, + [61281]={ + connections={ + [1]={ + id=9217, + orbit=0 + } + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Damage", + orbit=2, + orbitIndex=14, + skill=61281, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [61309]={ + connections={ + [1]={ + id=42169, + orbit=5 + }, + [2]={ + id=37434, + orbit=0 + } + }, + group=964, + icon="Art/2DArt/SkillIcons/passives/fireresist.png", + isNotable=true, + name="Redblade Discipline", + orbit=7, + orbitIndex=15, + skill=61309, + stats={ + [1]="+8% to Fire Resistance", + [2]="20% increased Stun Threshold", + [3]="+30% of Armour also applies to Fire Damage" + } + }, + [61312]={ + connections={ + [1]={ + id=56841, + orbit=0 + } + }, + group=980, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=42, + skill=61312, + stats={ + [1]="+5 to any Attribute" + } + }, + [61318]={ + connections={ + [1]={ + id=61396, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=13, + skill=61318, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [61333]={ + connections={ + [1]={ + id=46197, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Critical Chance", + orbit=2, + orbitIndex=11, + skill=61333, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [61338]={ + connections={ + [1]={ + id=7333, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Breath of Lightning", + orbit=4, + orbitIndex=6, + skill=61338, + stats={ + [1]="Damage Penetrates 15% Lightning Resistance", + [2]="+10 to Dexterity" + } + }, + [61347]={ + connections={ + [1]={ + id=64488, + orbit=3 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Critical Chance", + orbit=7, + orbitIndex=8, + skill=61347, + stats={ + [1]="Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m" + } + }, + [61354]={ + connections={ + [1]={ + id=50383, + orbit=0 + } + }, + group=753, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + name="Infernal Limit", + orbit=3, + orbitIndex=18, + skill=61354, + stats={ + [1]="+1 to maximum Fire Infusions" + } + }, + [61355]={ + connections={ + [1]={ + id=29306, + orbit=2 + } + }, + group=1229, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.png", + name="Damage from Mana", + orbit=2, + orbitIndex=8, + skill=61355, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [61356]={ + connections={ + [1]={ + id=12498, + orbit=0 + } + }, + group=1155, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.png", + name="Quiver Effect", + orbit=7, + orbitIndex=12, + skill=61356, + stats={ + [1]="6% increased bonuses gained from Equipped Quiver" + } + }, + [61362]={ + connections={ + [1]={ + id=36737, + orbit=-2 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area Damage", + orbit=2, + orbitIndex=20, + skill=61362, + stats={ + [1]="10% increased Area Damage" + } + }, + [61367]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=64239, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Attack Added Lighting Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=10, + skill=61367, + stats={ + [1]="Adds 1 to 7 Lightning damage to Attacks" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61373]={ + connections={ + [1]={ + id=63610, + orbit=-7 + }, + [2]={ + id=5988, + orbit=7 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Damage vs Blinded", + orbit=3, + orbitIndex=4, + skill=61373, + stats={ + [1]="15% increased Damage with Hits against Blinded Enemies" + } + }, + [61393]={ + connections={ + [1]={ + id=43941, + orbit=-7 + } + }, + group=110, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Damage", + orbit=0, + orbitIndex=0, + skill=61393, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [61396]={ + connections={ + [1]={ + id=10998, + orbit=0 + } + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + name="Armour and Evasion", + orbit=3, + orbitIndex=11, + skill=61396, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [61403]={ + connections={ + [1]={ + id=56349, + orbit=0 + }, + [2]={ + id=14231, + orbit=3 + }, + [3]={ + id=24150, + orbit=0 + }, + [4]={ + id=17602, + orbit=0 + } + }, + group=1239, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=61403, + stats={ + [1]="+5 to any Attribute" + } + }, + [61404]={ + connections={ + [1]={ + id=51210, + orbit=2 + }, + [2]={ + id=61429, + orbit=0 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + isNotable=true, + name="Equilibrium", + orbit=0, + orbitIndex=0, + skill=61404, + stats={ + [1]="30% increased Attack Damage if you've Cast a Spell Recently", + [2]="10% increased Cast Speed if you've Attacked Recently" + } + }, + [61409]={ + connections={ + [1]={ + id=13075, + orbit=0 + } + }, + group=217, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=7, + orbitIndex=22, + skill=61409, + stats={ + [1]="+12 to Strength" + } + }, + [61419]={ + connections={ + [1]={ + id=3025, + orbit=0 + }, + [2]={ + id=5314, + orbit=0 + }, + [3]={ + id=46819, + orbit=0 + } + }, + group=775, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=61419 + }, + [61421]={ + connections={ + [1]={ + id=16121, + orbit=7 + } + }, + group=1440, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Energy and Critical Chance", + orbit=7, + orbitIndex=19, + skill=61421, + stats={ + [1]="Meta Skills gain 4% increased Energy", + [2]="5% increased Critical Hit Chance" + } + }, + [61429]={ + connections={ + [1]={ + id=44902, + orbit=3 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=7, + orbitIndex=20, + skill=61429, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [61432]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + connections={ + [1]={ + id=6178, + orbit=0 + } + }, + group=937, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=61432 + }, + [61438]={ + connections={ + [1]={ + id=28510, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=62, + skill=61438, + stats={ + [1]="+5 to any Attribute" + } + }, + [61441]={ + connections={ + [1]={ + id=54138, + orbit=0 + } + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/damagesword.png", + name="Sword Speed", + orbit=6, + orbitIndex=7, + skill=61441, + stats={ + [1]="3% increased Attack Speed with Swords" + } + }, + [61444]={ + connections={ + [1]={ + id=17411, + orbit=0 + }, + [2]={ + id=34096, + orbit=0 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Wasting Casts", + orbit=3, + orbitIndex=2, + skill=61444, + stats={ + [1]="25% increased Damage with Hits against Hindered Enemies", + [2]="15% chance to Hinder Enemies on Hit with Spells" + } + }, + [61461]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=42416, + orbit=0 + } + }, + group=1502, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png", + name="Projectile Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=24, + skill=61461, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [61471]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49153, + orbit=0 + } + }, + group=366, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=60, + skill=61471, + stats={ + [1]="15% increased Damage", + [2]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61472]={ + connections={ + [1]={ + id=9417, + orbit=0 + }, + [2]={ + id=36389, + orbit=6 + } + }, + group=385, + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + name="Strength", + orbit=7, + orbitIndex=10, + skill=61472, + stats={ + [1]="+8 to Strength" + } + }, + [61487]={ + connections={ + [1]={ + id=36596, + orbit=-4 + }, + [2]={ + id=19341, + orbit=5 + }, + [3]={ + id=11410, + orbit=0 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=4, + orbitIndex=48, + skill=61487, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [61490]={ + connections={ + [1]={ + id=47429, + orbit=-8 + }, + [2]={ + id=64995, + orbit=0 + }, + [3]={ + id=8600, + orbit=0 + } + }, + group=411, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=61490, + stats={ + [1]="+5 to any Attribute" + } + }, + [61525]={ + classesStart={ + [1]="Templar", + [2]="Druid" + }, + connections={ + [1]={ + id=13855, + orbit=0 + }, + [2]={ + id=35535, + orbit=0 + }, + [3]={ + id=42761, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/axedmgspeed.png", + name="TEMPLAR", + orbit=0, + orbitIndex=0, + skill=61525 + }, + [61534]={ + connections={ + [1]={ + id=4665, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration", + orbit=7, + orbitIndex=18, + skill=61534, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [61586]={ + ascendancyName="Martial Artist", + connections={ + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.png", + isNotable=true, + name="Martial Master", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=19, + skill=61586, + stats={ + [1]="Skills can build and retain Combo regardless of Weapon Set", + [2]="Gain Combo from all Attack Hits" + } + }, + [61601]={ + connections={ + [1]={ + id=44420, + orbit=0 + }, + [2]={ + id=9586, + orbit=0 + } + }, + group=1199, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + isNotable=true, + name="True Strike", + orbit=0, + orbitIndex=0, + skill=61601, + stats={ + [1]="+10 to Dexterity", + [2]="20% increased Critical Hit Chance" + } + }, + [61615]={ + connections={ + [1]={ + id=59442, + orbit=0 + } + }, + group=603, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup Speed", + orbit=0, + orbitIndex=0, + skill=61615, + stats={ + [1]="8% increased speed of Recoup Effects" + } + }, + [61632]={ + connections={ + [1]={ + id=34316, + orbit=0 + } + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Freeze and Daze Buildup", + orbit=5, + orbitIndex=2, + skill=61632, + stats={ + [1]="5% chance to Daze on Hit", + [2]="20% increased Freeze Buildup with Quarterstaves" + } + }, + [61657]={ + connections={ + [1]={ + id=17750, + orbit=6 + }, + [2]={ + id=45808, + orbit=-5 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=3, + orbitIndex=2, + skill=61657, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [61703]={ + connections={ + [1]={ + id=41180, + orbit=0 + }, + [2]={ + id=9037, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png", + isNotable=true, + name="Sharpened Claw", + orbit=3, + orbitIndex=20, + skill=61703, + stats={ + [1]="30% increased Physical Damage while Shapeshifted" + } + }, + [61718]={ + connections={ + [1]={ + id=38342, + orbit=0 + } + }, + group=1450, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + name="Damage vs Dazed Enemies", + orbit=2, + orbitIndex=16, + skill=61718, + stats={ + [1]="15% increased Damage against Dazed Enemies" + } + }, + [61722]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=58646, + orbit=6 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png", + name="Elemental Resistances", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=36, + skill=61722, + stats={ + [1]="+3% to all Elemental Resistances" + } + }, + [61741]={ + connections={ + [1]={ + id=40024, + orbit=2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Lasting Toxins", + orbit=0, + orbitIndex=0, + skill=61741, + stats={ + [1]="10% increased Skill Effect Duration", + [2]="40% increased Poison Duration" + } + }, + [61768]={ + connections={ + }, + group=936, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.png", + name="Minion Cold Resistance", + orbit=0, + orbitIndex=0, + skill=61768, + stats={ + [1]="Minions have +20% to Cold Resistance", + [2]="Minions have +3% to Maximum Cold Resistances" + } + }, + [61796]={ + connections={ + [1]={ + id=8260, + orbit=-4 + } + }, + group=209, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Duration", + orbit=7, + orbitIndex=20, + skill=61796, + stats={ + [1]="20% increased Armour Break Duration" + } + }, + [61800]={ + connections={ + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Critical Damage vs Full Life", + orbit=7, + orbitIndex=11, + skill=61800, + stats={ + [1]="40% increased Critical Damage Bonus against Enemies that are on Full Life" + } + }, + [61811]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=44452, + orbit=-8 + } + }, + group=181, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=5, + orbitIndex=42, + skill=61811, + stats={ + [1]="5% increased Skill Effect Duration", + [2]="12% increased Physical Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61834]={ + connections={ + [1]={ + id=17088, + orbit=0 + }, + [2]={ + id=24958, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=61834 + }, + [61835]={ + connections={ + [1]={ + id=32549, + orbit=0 + }, + [2]={ + id=56237, + orbit=-2 + } + }, + group=167, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + name="Attack and Spell Damage", + orbit=2, + orbitIndex=20, + skill=61835, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [61836]={ + connections={ + [1]={ + id=65243, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Aura Effect", + orbit=2, + orbitIndex=4, + skill=61836, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [61842]={ + connections={ + [1]={ + id=33240, + orbit=0 + }, + [2]={ + id=14712, + orbit=0 + } + }, + group=474, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=3, + orbitIndex=0, + skill=61842, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [61847]={ + connections={ + [1]={ + id=43443, + orbit=-4 + } + }, + group=165, + icon="Art/2DArt/SkillIcons/passives/macedmg.png", + name="Flail Critical Chance", + orbit=0, + orbitIndex=0, + skill=61847, + stats={ + [1]="10% increased Critical Hit Chance with Flails" + } + }, + [61863]={ + connections={ + [1]={ + id=42045, + orbit=0 + } + }, + group=733, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.png", + name="Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=6, + skill=61863, + stats={ + [1]="4% faster start of Energy Shield Recharge", + [2]="8% increased Elemental Damage" + } + }, + [61896]={ + connections={ + [1]={ + id=53354, + orbit=0 + }, + [2]={ + id=8850, + orbit=-3 + } + }, + group=109, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png", + name="Shapeshifted Critical Chance", + orbit=0, + orbitIndex=0, + skill=61896, + stats={ + [1]="10% increased Critical Hit Chance while Shapeshifted" + } + }, + [61897]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=38601, + orbit=8 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png", + name="Armour and Evasion", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=32, + skill=61897, + stats={ + [1]="15% increased Armour and Evasion Rating" + } + }, + [61905]={ + connections={ + [1]={ + id=12778, + orbit=0 + }, + [2]={ + id=8938, + orbit=0 + }, + [3]={ + id=3251, + orbit=-4 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Chance", + orbit=3, + orbitIndex=12, + skill=61905, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [61921]={ + connections={ + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Storm Surge", + orbit=3, + orbitIndex=23, + skill=61921, + stats={ + [1]="Damage Penetrates 8% Cold Resistance", + [2]="Damage Penetrates 15% Lightning Resistance" + } + }, + [61923]={ + connections={ + [1]={ + id=16256, + orbit=-6 + } + }, + group=1002, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration", + orbit=3, + orbitIndex=4, + skill=61923, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [61926]={ + connections={ + [1]={ + id=1603, + orbit=0 + } + }, + group=1142, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Recoup", + orbit=2, + orbitIndex=12, + skill=61926, + stats={ + [1]="3% of Elemental Damage taken Recouped as Energy Shield" + } + }, + [61927]={ + connections={ + [1]={ + id=14515, + orbit=0 + }, + [2]={ + id=3698, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/icongroundslam.png", + name="Jagged Ground Effect", + orbit=2, + orbitIndex=5, + skill=61927, + stats={ + [1]="15% increased Magnitude of Jagged Ground you create" + } + }, + [61934]={ + connections={ + [1]={ + id=48418, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=2, + orbitIndex=2, + skill=61934, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [61935]={ + connections={ + [1]={ + id=4624, + orbit=7 + } + }, + group=549, + icon="Art/2DArt/SkillIcons/passives/Rage.png", + name="Rage on Hit", + orbit=0, + orbitIndex=0, + skill=61935, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [61938]={ + connections={ + [1]={ + id=14515, + orbit=0 + } + }, + group=289, + icon="Art/2DArt/SkillIcons/icongroundslam.png", + name="Jagged Ground Effect", + orbit=3, + orbitIndex=14, + skill=61938, + stats={ + [1]="15% increased Magnitude of Jagged Ground you create" + } + }, + [61942]={ + connections={ + }, + flavourText="Strength begets respect. There is no simpler law.", + group=160, + icon="Art/2DArt/SkillIcons/passives/DruidAnimism.png", + isKeystone=true, + name="Lord of the Wilds", + orbit=0, + orbitIndex=0, + skill=61942, + stats={ + [1]="You can equip a non-Unique Sceptre while wielding a Talisman\n50% less Spirit\nNon-Minion Skills have 50% less Reservation Efficiency" + } + }, + [61973]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=40719, + orbit=0 + } + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.png", + isNotable=true, + name="Pitiless Killer", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=44, + skill=61973, + stats={ + [1]="Culling Strike" + } + }, + [61974]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + connectionArt="CharacterPlanned", + connections={ + }, + group=584, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.png", + isOnlyImage=true, + name="Invocation Mastery", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=2, + skill=61974, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61976]={ + connections={ + [1]={ + id=7526, + orbit=0 + }, + [2]={ + id=36298, + orbit=6 + }, + [3]={ + id=2200, + orbit=0 + } + }, + group=1140, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=61976, + stats={ + [1]="+5 to any Attribute" + } + }, + [61977]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=61471, + orbit=0 + } + }, + group=366, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=4, + orbitIndex=54, + skill=61977, + stats={ + [1]="15% increased Damage", + [2]="Minions deal 15% increased Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61983]={ + ascendancyName="Shaman", + connections={ + }, + group=70, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.png", + isNotable=true, + name="Avatar of Evolution", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=61983, + stats={ + [1]="5% of Physical Damage taken as Fire Damage", + [2]="5% of Physical Damage taken as Lightning Damage", + [3]="5% of Physical Damage taken as Cold Damage", + [4]="Adaptations have a duration of 5 seconds", + [5]="Double Adaptation Effect" + } + }, + [61985]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=29398, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.png", + isNotable=true, + name="Heavy Snows", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=6, + skill=61985, + stats={ + [1]="Targets can be affected by two of your Chills at the same time", + [2]="Your Chills can Slow targets by up to a maximum of 35%", + [3]="25% less Magnitude of Chill you inflict" + } + }, + [61991]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1513, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.png", + isNotable=true, + name="Running Assault", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=96, + skill=61991, + stats={ + [1]="Cannot be Heavy Stunned while Sprinting", + [2]="30% less Movement Speed Penalty from using Skills while moving" + } + }, + [61992]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + connections={ + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=1, + orbitIndex=6, + skill=61992 + }, + [62001]={ + connections={ + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + isNotable=true, + name="Backstabbing", + orbit=2, + orbitIndex=1, + skill=62001, + stats={ + [1]="25% increased Critical Damage Bonus with Daggers" + } + }, + [62015]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + connections={ + }, + group=367, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.png", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=62015 + }, + [62023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + connections={ + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=62023 + }, + [62034]={ + connections={ + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + isNotable=true, + name="Prism Guard", + orbit=0, + orbitIndex=0, + skill=62034, + stats={ + [1]="+30% of Armour also applies to Elemental Damage" + } + }, + [62039]={ + connections={ + [1]={ + id=49618, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=7, + orbitIndex=18, + skill=62039, + stats={ + [1]="10% increased Melee Damage" + } + }, + [62051]={ + connections={ + [1]={ + id=21755, + orbit=-9 + } + }, + group=807, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + name="Movement Speed", + orbit=3, + orbitIndex=0, + skill=62051, + stats={ + [1]="3% increased Movement Speed if you've Killed Recently" + } + }, + [62096]={ + connections={ + [1]={ + id=28414, + orbit=0 + } + }, + group=1415, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Attack Damage and Companion Damage as Chaos", + orbit=0, + orbitIndex=0, + skill=62096, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Chaos Damage" + } + }, + [62122]={ + connections={ + [1]={ + id=4295, + orbit=-3 + } + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + name="Damage from Mana", + orbit=3, + orbitIndex=4, + skill=62122, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [62152]={ + aliasPassiveSocket="voices_jewel_slot1", + connections={ + }, + group=673, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.png", + isJewelSocket=true, + name="Sinister Jewel Socket", + noRadius=true, + nodeOverlay={ + alloc="BlightedNotableFrameAllocated", + path="BlightedNotableFrameCanAllocate", + unalloc="BlightedNotableFrameUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=62152 + }, + [62153]={ + connections={ + [1]={ + id=55947, + orbit=3 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Spell Critical Damage", + orbit=3, + orbitIndex=17, + skill=62153, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [62159]={ + connections={ + [1]={ + id=59603, + orbit=-7 + } + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + name="Life Recoup", + orbit=2, + orbitIndex=8, + skill=62159, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [62166]={ + connections={ + [1]={ + id=19337, + orbit=0 + } + }, + group=1180, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Speed", + orbit=2, + orbitIndex=0, + skill=62166, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [62185]={ + connections={ + }, + group=1287, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + isNotable=true, + name="Rattled", + orbit=0, + orbitIndex=0, + skill=62185, + stats={ + [1]="+20 to maximum Mana", + [2]="50% increased Shock Duration" + } + }, + [62194]={ + connections={ + [1]={ + id=19129, + orbit=0 + } + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + name="Pin Buildup", + orbit=3, + orbitIndex=0, + skill=62194, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [62200]={ + connections={ + [1]={ + id=8460, + orbit=-3 + }, + [2]={ + id=29762, + orbit=-4 + } + }, + group=193, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown Speed", + orbit=2, + orbitIndex=20, + skill=62200, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [62210]={ + connections={ + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNoteble.png", + isNotable=true, + name="Puppet Master chance", + orbit=3, + orbitIndex=5, + skill=62210, + stats={ + [1]="15% increased Mana Cost Efficiency of Command Skills", + [2]="+1 maximum stacks of Puppet Master" + } + }, + [62216]={ + connections={ + [1]={ + id=26070, + orbit=3 + }, + [2]={ + id=38130, + orbit=-3 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=8, + skill=62216, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [62230]={ + connections={ + [1]={ + id=19355, + orbit=0 + } + }, + group=1001, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + isNotable=true, + name="Patient Barrier", + orbit=6, + orbitIndex=0, + skill=62230, + stats={ + [1]="50% increased maximum Energy Shield", + [2]="20% slower start of Energy Shield Recharge" + } + }, + [62235]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + connections={ + }, + group=918, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=2, + orbitIndex=12, + skill=62235 + }, + [62237]={ + connections={ + [1]={ + id=60116, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + isNotable=true, + name="Saqawal's Talon", + orbit=4, + orbitIndex=24, + skill=62237, + stats={ + [1]="+5% to Cold Resistance", + [2]="25% increased Armour and Evasion Rating" + } + }, + [62258]={ + connections={ + [1]={ + id=62455, + orbit=0 + }, + [2]={ + id=21096, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=7, + orbitIndex=22, + skill=62258, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [62303]={ + connections={ + [1]={ + id=59938, + orbit=-4 + } + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Ailment Threshold and Slow Effect on You", + orbit=7, + orbitIndex=23, + skill=62303, + stats={ + [1]="10% increased Elemental Ailment Threshold", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [62310]={ + connections={ + [1]={ + id=36325, + orbit=2 + }, + [2]={ + id=56934, + orbit=0 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Incendiary", + orbit=7, + orbitIndex=22, + skill=62310, + stats={ + [1]="60% increased Flammability Magnitude", + [2]="30% increased Damage with Hits against Burning Enemies" + } + }, + [62313]={ + connections={ + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/fireresist.png", + name="Armour Applies to Fire Damage Hits", + orbit=5, + orbitIndex=52, + skill=62313, + stats={ + [1]="+15% of Armour also applies to Fire Damage" + } + }, + [62341]={ + connections={ + [1]={ + id=52836, + orbit=7 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/blockstr.png", + name="Block", + orbit=4, + orbitIndex=61, + skill=62341, + stats={ + [1]="5% increased Block chance" + } + }, + [62350]={ + connections={ + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed and Flask Duration", + orbit=2, + orbitIndex=12, + skill=62350, + stats={ + [1]="5% increased Flask Effect Duration", + [2]="2% increased Attack Speed" + } + }, + [62360]={ + connections={ + [1]={ + id=25014, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Empowered Attack Damage", + orbit=3, + orbitIndex=2, + skill=62360, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [62376]={ + connections={ + [1]={ + id=54640, + orbit=-5 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + name="Physical Damage and Reduced Duration", + orbit=7, + orbitIndex=9, + skill=62376, + stats={ + [1]="4% reduced Skill Effect Duration", + [2]="8% increased Physical Damage" + } + }, + [62378]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=47633, + orbit=0 + } + }, + group=479, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.png", + name="Thorns", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=20, + skill=62378, + stats={ + [1]="20% increased Thorns damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [62388]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=26282, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png", + name="Bleed on Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=70, + skill=62388, + stats={ + [1]="15% chance to inflict Bleeding on Critical Hit" + } + }, + [62424]={ + ascendancyName="Spirit Walker", + connections={ + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=5, + orbitIndex=29, + skill=62424, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [62427]={ + connections={ + }, + group=1261, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection Rating", + orbit=2, + orbitIndex=21, + skill=62427, + stats={ + [1]="4% increased Deflection Rating" + } + }, + [62431]={ + connections={ + }, + group=998, + icon="Art/2DArt/SkillIcons/passives/damagespells.png", + isNotable=true, + name="Anticipation", + orbit=0, + orbitIndex=0, + skill=62431, + stats={ + [1]="Sealed Skills have 25% increased Seal gain frequency" + } + }, + [62436]={ + connections={ + [1]={ + id=3215, + orbit=0 + } + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/energyshield.png", + name="Energy Shield", + orbit=7, + orbitIndex=5, + skill=62436, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [62439]={ + connections={ + [1]={ + id=24224, + orbit=0 + }, + [2]={ + id=52300, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/damageaxe.png", + isNotable=true, + name="Enraged Reaver", + orbit=3, + orbitIndex=11, + skill=62439, + stats={ + [1]="+10 to Maximum Rage while wielding an Axe" + } + }, + [62455]={ + connections={ + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + isNotable=true, + name="Bannerman", + orbit=0, + orbitIndex=0, + skill=62455, + stats={ + [1]="Banner Buffs linger on you for 2 seconds after you leave the Area" + } + }, + [62464]={ + connections={ + [1]={ + id=17854, + orbit=7 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=3, + orbitIndex=22, + skill=62464, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [62496]={ + connections={ + [1]={ + id=34912, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Damage", + orbit=6, + orbitIndex=48, + skill=62496, + stats={ + [1]="10% increased Trap Damage" + } + }, + [62498]={ + connections={ + [1]={ + id=3446, + orbit=0 + }, + [2]={ + id=51561, + orbit=0 + }, + [3]={ + id=21390, + orbit=0 + }, + [4]={ + id=41363, + orbit=0 + }, + [5]={ + id=12255, + orbit=0 + } + }, + group=284, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=62498, + stats={ + [1]="+5 to any Attribute" + } + }, + [62505]={ + connections={ + [1]={ + id=32436, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + name="Intelligence", + orbit=3, + orbitIndex=18, + skill=62505, + stats={ + [1]="+8 to Intelligence" + } + }, + [62510]={ + connections={ + [1]={ + id=8697, + orbit=4 + }, + [2]={ + id=17118, + orbit=6 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=4, + orbitIndex=69, + skill=62510, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [62518]={ + connections={ + [1]={ + id=41414, + orbit=4 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/fireresist.png", + name="Fire Resistance", + orbit=3, + orbitIndex=7, + skill=62518, + stats={ + [1]="+5% to Fire Resistance" + } + }, + [62523]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=26063, + orbit=0 + } + }, + group=74, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.png", + isNotable=true, + name="Turning of the Seasons", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=62523, + stats={ + [1]="Enemies in your Presence have Exposure", + [2]="Gain 10% of Damage as Extra Damage of a random Element" + } + }, + [62542]={ + connections={ + [1]={ + id=16329, + orbit=7 + }, + [2]={ + id=57821, + orbit=0 + } + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/flaskdex.png", + name="Flask Charges Gained", + orbit=3, + orbitIndex=0, + skill=62542, + stats={ + [1]="10% increased Flask Charges gained" + } + }, + [62578]={ + connections={ + [1]={ + id=30102, + orbit=-7 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + name="Volatility on Kill", + orbit=7, + orbitIndex=16, + skill=62578, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [62581]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + connections={ + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + isOnlyImage=true, + name="Block Mastery", + orbit=0, + orbitIndex=0, + skill=62581 + }, + [62588]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + [1]={ + id=50609, + orbit=0 + } + }, + group=755, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=62588 + }, + [62603]={ + connections={ + [1]={ + id=19715, + orbit=3 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.png", + name="Fire Penetration", + orbit=3, + orbitIndex=20, + skill=62603, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [62609]={ + connections={ + [1]={ + id=11014, + orbit=0 + }, + [2]={ + id=16051, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + isNotable=true, + name="Ancestral Unity", + orbit=7, + orbitIndex=6, + skill=62609, + stats={ + [1]="Attacks used by Totems have 4% increased Attack Speed per Summoned Totem" + } + }, + [62624]={ + connections={ + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=22, + skill=62624, + stats={ + [1]="+30 to Evasion Rating", + [2]="+15 to maximum Energy Shield" + } + }, + [62628]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=62628 + }, + [62640]={ + connections={ + [1]={ + id=24880, + orbit=-7 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=4, + orbitIndex=32, + skill=62640, + stats={ + [1]="3% increased Attack Speed" + } + }, + [62661]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=553, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=62661 + }, + [62670]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + connections={ + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.png", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=62670 + }, + [62677]={ + connections={ + }, + group=869, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=62677, + stats={ + [1]="+5 to any Attribute" + } + }, + [62679]={ + connections={ + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=12, + skill=62679, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [62702]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=27773, + orbit=-7 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png", + name="Movement Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=38, + skill=62702, + stats={ + [1]="2% increased Movement Speed" + } + }, + [62723]={ + connections={ + [1]={ + id=38732, + orbit=8 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=4, + orbitIndex=33, + skill=62723, + stats={ + [1]="15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" + } + }, + [62732]={ + connections={ + [1]={ + id=64192, + orbit=0 + }, + [2]={ + id=49391, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/Hearty.png", + isNotable=true, + name="Titan's Determination", + orbit=3, + orbitIndex=9, + skill=62732, + stats={ + [1]="25% increased Stun Threshold", + [2]="20% increased Life Regeneration Rate while moving" + } + }, + [62743]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=21519, + orbit=0 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.png", + isNotable=true, + name="Wild Protector", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=34, + skill=62743, + stats={ + [1]="Grants Skill: Wild Protector" + } + }, + [62748]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + connections={ + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=62748 + }, + [62757]={ + connections={ + [1]={ + id=46741, + orbit=0 + } + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + name="Stun Buildup", + orbit=2, + orbitIndex=4, + skill=62757, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [62779]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png", + connections={ + }, + group=1000, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=62779 + }, + [62785]={ + connections={ + [1]={ + id=4948, + orbit=-7 + } + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=7, + orbitIndex=2, + skill=62785, + stats={ + [1]="Break 20% increased Armour" + } + }, + [62797]={ + ascendancyName="Lich", + connections={ + [1]={ + id=23352, + orbit=-4 + } + }, + group=1141, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.png", + isSwitchable=true, + name="Curse Area", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png", + id=11965, + name="Curse Area", + stats={ + [1]="15% increased Area of Effect of Curses" + } + } + }, + orbit=0, + orbitIndex=0, + skill=62797, + stats={ + [1]="15% increased Area of Effect of Curses" + } + }, + [62803]={ + connections={ + [1]={ + id=25029, + orbit=0 + } + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.png", + isNotable=true, + name="Woodland Aspect", + orbit=4, + orbitIndex=51, + skill=62803, + stats={ + [1]="Charms applied to you have 25% increased Effect" + } + }, + [62804]={ + ascendancyName="Ritualist", + connections={ + }, + group=1560, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.png", + isNotable=true, + name="Wildwood Persistence", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=62804, + stats={ + [1]="10% increased Life Recovery rate per 5% missing Unreserved Life" + } + }, + [62841]={ + connections={ + [1]={ + id=17367, + orbit=-6 + }, + [2]={ + id=56045, + orbit=0 + }, + [3]={ + id=53941, + orbit=5 + } + }, + group=1109, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + name="Evasion and Energy Shield", + orbit=3, + orbitIndex=20, + skill=62841, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [62844]={ + connections={ + [1]={ + id=32427, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + name="Cold Penetration", + orbit=3, + orbitIndex=18, + skill=62844, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [62887]={ + connections={ + [1]={ + id=41225, + orbit=0 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png", + isNotable=true, + name="Living Death", + orbit=2, + orbitIndex=16, + skill=62887, + stats={ + [1]="Minions have +22% to all Elemental Resistances", + [2]="Minions have +3% to all Maximum Elemental Resistances" + } + }, + [62914]={ + connections={ + [1]={ + id=47270, + orbit=5 + }, + [2]={ + id=44455, + orbit=0 + } + }, + group=783, + icon="Art/2DArt/SkillIcons/passives/colddamage.png", + name="Cold Damage", + orbit=3, + orbitIndex=20, + skill=62914, + stats={ + [1]="12% increased Cold Damage" + } + }, + [62936]={ + connections={ + [1]={ + id=51891, + orbit=7 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/damage_blue.png", + name="Damage from Mana", + orbit=2, + orbitIndex=11, + skill=62936, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [62948]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + connections={ + [1]={ + id=34617, + orbit=0 + }, + [2]={ + id=64770, + orbit=0 + } + }, + group=356, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=62948 + }, + [62963]={ + connections={ + [1]={ + id=14601, + orbit=0 + } + }, + group=682, + icon="Art/2DArt/SkillIcons/passives/flameborn.png", + isNotable=true, + name="Flamewalker", + orbit=7, + orbitIndex=18, + skill=62963, + stats={ + [1]="40% reduced Magnitude of Ignite on you", + [2]="Gain 15% of Damage as Extra Fire Damage while on Ignited Ground" + } + }, + [62973]={ + connections={ + [1]={ + id=26070, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Power Counted", + orbit=3, + orbitIndex=1, + skill=62973, + stats={ + [1]="10% increased total Power counted by Warcries" + } + }, + [62984]={ + connections={ + [1]={ + id=15975, + orbit=0 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + isNotable=true, + name="Mindful Awareness", + orbit=2, + orbitIndex=4, + skill=62984, + stats={ + [1]="24% increased Evasion Rating", + [2]="24% increased maximum Energy Shield" + } + }, + [62986]={ + connections={ + [1]={ + id=60173, + orbit=4 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Accuracy", + orbit=7, + orbitIndex=18, + skill=62986, + stats={ + [1]="12% increased Accuracy Rating with One Handed Melee Weapons" + } + }, + [62998]={ + connections={ + [1]={ + id=63600, + orbit=0 + } + }, + group=1427, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=62998, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [63002]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=26638, + orbit=0 + } + }, + group=316, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png", + name="Buff Expiry Rate", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=63002, + stats={ + [1]="Buffs on you expire 10% slower" + } + }, + [63009]={ + connections={ + [1]={ + id=37593, + orbit=0 + } + }, + group=849, + icon="Art/2DArt/SkillIcons/passives/Remnant.png", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=0, + skill=63009, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [63021]={ + connections={ + [1]={ + id=23091, + orbit=0 + } + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + name="Fire Damage", + orbit=3, + orbitIndex=14, + skill=63021, + stats={ + [1]="12% increased Fire Damage" + } + }, + [63031]={ + connections={ + [1]={ + id=41821, + orbit=0 + } + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + isNotable=true, + name="Glorious Anticipation", + orbit=4, + orbitIndex=54, + skill=63031, + stats={ + [1]="Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence" + } + }, + [63037]={ + connections={ + [1]={ + id=24430, + orbit=0 + }, + [2]={ + id=44298, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Sigil of Fire", + orbit=4, + orbitIndex=70, + skill=63037, + stats={ + [1]="30% increased Damage with Hits against Ignited Enemies" + } + }, + [63064]={ + connections={ + [1]={ + id=30634, + orbit=3 + }, + [2]={ + id=54413, + orbit=0 + } + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png", + isNotable=true, + name="Mystic Stance", + orbit=2, + orbitIndex=10, + skill=63064, + stats={ + [1]="12% faster start of Energy Shield Recharge", + [2]="30% increased Stun Threshold while on Full Life" + } + }, + [63074]={ + connections={ + }, + group=926, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + isNotable=true, + name="Dark Entries", + orbit=1, + orbitIndex=2, + skill=63074, + stats={ + [1]="+1 to Level of all Chaos Skills" + } + }, + [63085]={ + connections={ + [1]={ + id=36100, + orbit=9 + }, + [2]={ + id=34490, + orbit=0 + } + }, + group=158, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Damage", + orbit=0, + orbitIndex=0, + skill=63085, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [63114]={ + connections={ + [1]={ + id=26725, + orbit=0 + }, + [2]={ + id=21387, + orbit=0 + }, + [3]={ + id=26176, + orbit=0 + }, + [4]={ + id=35048, + orbit=0 + } + }, + group=221, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=4, + skill=63114, + stats={ + [1]="+5 to any Attribute" + } + }, + [63170]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6999, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast and Attack Speed and Elemental Resistance", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=9, + skill=63170, + stats={ + [1]="Totems gain +1% to all Maximum Elemental Resistances", + [2]="Spells Cast by Totems have 2% increased Cast Speed", + [3]="Attacks used by Totems have 2% increased Attack Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [63182]={ + connections={ + [1]={ + id=29930, + orbit=3 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=7, + orbitIndex=6, + skill=63182, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [63192]={ + connections={ + [1]={ + id=62096, + orbit=0 + }, + [2]={ + id=48116, + orbit=0 + } + }, + group=1425, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png", + name="Attack Damage and Companion Damage as Chaos", + orbit=0, + orbitIndex=0, + skill=63192, + stats={ + [1]="6% increased Attack Damage", + [2]="Companions gain 4% Damage as extra Chaos Damage" + } + }, + [63209]={ + connections={ + [1]={ + id=30704, + orbit=0 + }, + [2]={ + id=22045, + orbit=0 + }, + [3]={ + id=17655, + orbit=-4 + }, + [4]={ + id=36602, + orbit=-3 + } + }, + group=578, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.png", + name="Life Regeneration and Damage", + orbit=2, + orbitIndex=22, + skill=63209, + stats={ + [1]="5% increased Damage", + [2]="Regenerate 0.1% of maximum Life per second" + } + }, + [63236]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.png", + isNotable=true, + name="The Soul Springs Eternal", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=6, + orbitIndex=17, + skill=63236, + stats={ + [1]="Meta Skills gain 35% more Energy", + [2]="Meta Skills have 50% increased Reservation Efficiency" + } + }, + [63243]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48160, + orbit=0 + }, + [2]={ + id=49543, + orbit=0 + } + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Ally Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=10, + skill=63243, + stats={ + [1]="Allies in your Presence deal 20% increased Damage", + [2]="10% reduced Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [63246]={ + connections={ + [1]={ + id=33585, + orbit=-7 + } + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Ailment Threshold and Companion Resistance", + orbit=4, + orbitIndex=12, + skill=63246, + stats={ + [1]="8% increased Elemental Ailment Threshold", + [2]="Companions have +12% to all Elemental Resistances" + } + }, + [63254]={ + ascendancyName="Amazon", + connections={ + }, + group=1553, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.png", + isNotable=true, + name="Stalking Panther", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=63254, + stats={ + [1]="Evasion Rating from Equipped Helmet, Gloves and Boots is doubled", + [2]="Evasion Rating from Equipped Body Armour is halved" + } + }, + [63255]={ + connections={ + }, + group=999, + icon="Art/2DArt/SkillIcons/passives/chargedex.png", + isNotable=true, + name="Savagery", + orbit=0, + orbitIndex=0, + skill=63255, + stats={ + [1]="50% increased Evasion Rating if you've consumed a Frenzy Charge Recently", + [2]="+1 to Maximum Frenzy Charges" + } + }, + [63259]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.png", + isMultipleChoiceOption=true, + name="Motoric Implants", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=63259, + stats={ + [1]="+2 to Level of all Skills with a Dexterity requirement" + } + }, + [63267]={ + connections={ + [1]={ + id=65424, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Damage", + orbit=2, + orbitIndex=3, + skill=63267, + stats={ + [1]="12% increased Attack Damage while Dual Wielding" + } + }, + [63268]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=7, + orbitIndex=6, + skill=63268 + }, + [63360]={ + connections={ + [1]={ + id=62258, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Glory Gained", + orbit=7, + orbitIndex=14, + skill=63360, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [63393]={ + connections={ + [1]={ + id=7721, + orbit=3 + }, + [2]={ + id=36709, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=7, + orbitIndex=12, + skill=63393, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [63400]={ + connections={ + [1]={ + id=22851, + orbit=-7 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.png", + isNotable=true, + name="Chakra of Elements", + orbit=2, + orbitIndex=6, + skill=63400, + stats={ + [1]="Gain 8% of Physical Damage as Extra Cold Damage against Shocked Enemies", + [2]="Gain 8% of Physical Damage as Extra Lightning Damage against Chilled Enemies" + } + }, + [63401]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=48537, + orbit=0 + } + }, + group=26, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png", + name="Fire Resistance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=63401, + stats={ + [1]="+8% to Fire Resistance" + } + }, + [63402]={ + connections={ + [1]={ + id=29881, + orbit=2 + } + }, + group=403, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png", + name="Arcane Surge Effect", + orbit=2, + orbitIndex=4, + skill=63402, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [63431]={ + connections={ + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Leeching Toxins", + orbit=1, + orbitIndex=3, + skill=63431, + stats={ + [1]="30% increased Magnitude of Poison you inflict", + [2]="Recover 2% of maximum Life on Killing a Poisoned Enemy" + } + }, + [63445]={ + connections={ + [1]={ + id=43562, + orbit=0 + } + }, + group=845, + icon="Art/2DArt/SkillIcons/passives/attackspeed.png", + name="Attack Speed", + orbit=3, + orbitIndex=6, + skill=63445, + stats={ + [1]="3% increased Attack Speed" + } + }, + [63451]={ + connections={ + [1]={ + id=44406, + orbit=0 + }, + [2]={ + id=64312, + orbit=0 + } + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Cranial Impact", + orbit=6, + orbitIndex=6, + skill=63451, + stats={ + [1]="30% increased Stun Buildup", + [2]="Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy" + } + }, + [63469]={ + connections={ + [1]={ + id=30834, + orbit=0 + }, + [2]={ + id=50216, + orbit=0 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.png", + name="Mana Regeneration and Skill Speed", + orbit=2, + orbitIndex=10, + skill=63469, + stats={ + [1]="2% increased Skill Speed", + [2]="5% increased Mana Regeneration Rate" + } + }, + [63470]={ + connections={ + [1]={ + id=9908, + orbit=-3 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/manastr.png", + name="Life Costs", + orbit=3, + orbitIndex=14, + skill=63470, + stats={ + [1]="6% of Skill Mana Costs Converted to Life Costs" + } + }, + [63484]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=18158, + orbit=7 + } + }, + group=744, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Flammability Magnitude", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=63484, + stats={ + [1]="40% increased Flammability Magnitude" + } + }, + [63493]={ + ascendancyName="Spirit Walker", + connections={ + [1]={ + id=26294, + orbit=6 + }, + [2]={ + id=37769, + orbit=9 + }, + [3]={ + id=45228, + orbit=0 + }, + [4]={ + id=5733, + orbit=6 + }, + [5]={ + id=62424, + orbit=5 + }, + [6]={ + id=28254, + orbit=5 + } + }, + group=1542, + icon="Art/2DArt/SkillIcons/passives/damage.png", + isAscendancyStart=true, + name="Spirit Walker", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=21, + skill=63493 + }, + [63517]={ + connections={ + [1]={ + id=48974, + orbit=0 + }, + [2]={ + id=53958, + orbit=2 + } + }, + group=1288, + icon="Art/2DArt/SkillIcons/passives/flaskint.png", + name="Mana Flask Recovery", + orbit=2, + orbitIndex=22, + skill=63517, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [63525]={ + connections={ + [1]={ + id=53094, + orbit=0 + } + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy and Attack Critical Chance", + orbit=7, + orbitIndex=2, + skill=63525, + stats={ + [1]="8% increased Critical Hit Chance for Attacks", + [2]="6% increased Accuracy Rating" + } + }, + [63526]={ + connections={ + [1]={ + id=28370, + orbit=6 + }, + [2]={ + id=7788, + orbit=4 + } + }, + group=794, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=63526, + stats={ + [1]="+5 to any Attribute" + } + }, + [63541]={ + connections={ + [1]={ + id=17994, + orbit=0 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + isNotable=true, + name="Brush Off", + orbit=2, + orbitIndex=9, + skill=63541, + stats={ + [1]="15% increased Armour", + [2]="Prevent +15% of Damage from Deflected Critical Hits" + } + }, + [63545]={ + connections={ + }, + group=913, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + name="Minion Damage", + orbit=7, + orbitIndex=6, + skill=63545, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [63566]={ + connections={ + [1]={ + id=42658, + orbit=0 + }, + [2]={ + id=62350, + orbit=0 + }, + [3]={ + id=30871, + orbit=0 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=36, + skill=63566, + stats={ + [1]="+5 to any Attribute" + } + }, + [63579]={ + connections={ + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/legstrength.png", + isNotable=true, + name="Momentum", + orbit=4, + orbitIndex=30, + skill=63579, + stats={ + [1]="Ignore all Movement Penalties from Armour", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [63585]={ + connections={ + }, + group=1080, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Thunderstruck", + orbit=0, + orbitIndex=0, + skill=63585, + stats={ + [1]="50% increased Electrocute Buildup against Shocked Enemies", + [2]="50% increased Shock Chance against Electrocuted Enemies" + } + }, + [63600]={ + connections={ + [1]={ + id=36364, + orbit=0 + } + }, + group=1416, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=63600, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [63608]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + connections={ + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=63608 + }, + [63610]={ + connections={ + [1]={ + id=38459, + orbit=-7 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Blind Effect", + orbit=2, + orbitIndex=0, + skill=63610, + stats={ + [1]="10% increased Blind Effect" + } + }, + [63618]={ + connections={ + [1]={ + id=31129, + orbit=0 + } + }, + group=1488, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.png", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=63618, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" + } + }, + [63659]={ + connections={ + [1]={ + id=33964, + orbit=0 + }, + [2]={ + id=37616, + orbit=0 + } + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + isNotable=true, + name="Clever Construction", + orbit=4, + orbitIndex=45, + skill=63659, + stats={ + [1]="25% increased Critical Hit Chance with Traps" + } + }, + [63668]={ + connections={ + [1]={ + id=9069, + orbit=0 + }, + [2]={ + id=4328, + orbit=0 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Triggered Spell Damage", + orbit=3, + orbitIndex=4, + skill=63668, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [63678]={ + connections={ + }, + group=163, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png", + name="Shapeshifted Armour", + orbit=0, + orbitIndex=0, + skill=63678, + stats={ + [1]="10% increased Armour while Shapeshifted", + [2]="+5% of Armour also applies to Elemental Damage while Shapeshifted" + } + }, + [63679]={ + connections={ + [1]={ + id=20008, + orbit=0 + } + }, + group=1164, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Stun Buildup", + orbit=1, + orbitIndex=11, + skill=63679, + stats={ + [1]="18% increased Projectile Stun Buildup" + } + }, + [63713]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=57181, + orbit=-4 + } + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.png", + isNotable=true, + name="Sunder my Enemies...", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=43, + skill=63713, + stats={ + [1]="Critical Hits ignore non-negative Enemy Monster Elemental Resistances" + } + }, + [63731]={ + connections={ + [1]={ + id=244, + orbit=0 + } + }, + group=965, + icon="Art/2DArt/SkillIcons/passives/executioner.png", + name="Attack Damage", + orbit=0, + orbitIndex=0, + skill=63731, + stats={ + [1]="16% increased Attack Damage against Rare or Unique Enemies" + } + }, + [63732]={ + connections={ + [1]={ + id=8440, + orbit=-3 + } + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=1, + orbitIndex=10, + skill=63732, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [63739]={ + connections={ + [1]={ + id=37593, + orbit=0 + } + }, + group=849, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.png", + isNotable=true, + name="Vigorous Remnants", + orbit=7, + orbitIndex=14, + skill=63739, + stats={ + [1]="Recover 3% of Maximum Life when you collect a Remnant" + } + }, + [63759]={ + connections={ + [1]={ + id=26565, + orbit=0 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + isNotable=true, + name="Stacking Toxins", + orbit=3, + orbitIndex=0, + skill=63759, + stats={ + [1]="Targets can be affected by +1 of your Poisons at the same time", + [2]="20% reduced Magnitude of Poison you inflict" + } + }, + [63762]={ + connections={ + [1]={ + id=44522, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.png", + name="Deflection", + orbit=2, + orbitIndex=2, + skill=63762, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [63772]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=37888, + orbit=0 + } + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=23, + skill=63772, + stats={ + [1]="6% increased Cooldown Recovery Rate" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [63790]={ + connections={ + [1]={ + id=48014, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage against Immobilised", + orbit=5, + orbitIndex=54, + skill=63790, + stats={ + [1]="20% increased Melee Damage against Immobilised Enemies" + } + }, + [63813]={ + connections={ + [1]={ + id=1169, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Speed", + orbit=7, + orbitIndex=20, + skill=63813, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [63814]={ + connections={ + [1]={ + id=33216, + orbit=0 + } + }, + group=719, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=63814, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [63828]={ + connections={ + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + name="Ballista Critical Strike and Damage", + orbit=7, + orbitIndex=18, + skill=63828, + stats={ + [1]="6% increased Ballista Critical Damage Bonus", + [2]="10% increased Ballista Critical Hit Chance" + } + }, + [63830]={ + connections={ + [1]={ + id=13624, + orbit=-5 + }, + [2]={ + id=45390, + orbit=5 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/MarkNode.png", + isNotable=true, + name="Marked for Sickness", + orbit=3, + orbitIndex=3, + skill=63830, + stats={ + [1]="Enemies you Mark have 10% reduced Accuracy Rating", + [2]="Enemies you Mark take 10% increased Damage" + } + }, + [63861]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + connections={ + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + isOnlyImage=true, + name="Critical Mastery", + orbit=2, + orbitIndex=13, + skill=63861 + }, + [63863]={ + connections={ + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=63863, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [63888]={ + connections={ + [1]={ + id=35901, + orbit=0 + }, + [2]={ + id=61356, + orbit=0 + }, + [3]={ + id=26068, + orbit=0 + } + }, + group=1156, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=63888, + stats={ + [1]="+5 to any Attribute" + } + }, + [63891]={ + connections={ + [1]={ + id=63074, + orbit=0 + } + }, + group=926, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + name="Chaos Damage", + orbit=1, + orbitIndex=7, + skill=63891, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [63894]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=61267, + orbit=-4 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Spell Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=6, + orbitIndex=64, + skill=63894, + stats={ + [1]="12% increased Spell Damage" + } + }, + [63926]={ + connections={ + }, + group=953, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.png", + name="Minion Lightning Resistance", + orbit=0, + orbitIndex=0, + skill=63926, + stats={ + [1]="Minions have +20% to Lightning Resistance", + [2]="Minions have +3% to Maximum Lightning Resistances" + } + }, + [63979]={ + connections={ + [1]={ + id=9750, + orbit=0 + } + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.png", + name="Warcry Cooldown", + orbit=7, + orbitIndex=8, + skill=63979, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [64023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern.png", + connections={ + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=64023 + }, + [64031]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.png", + isNotable=true, + name="...and I Shall Rage", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=3, + orbitIndex=4, + skill=64031, + stats={ + [1]="Grants Skill: Unbound Avatar" + } + }, + [64042]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + connections={ + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + isOnlyImage=true, + name="Physical Mastery", + orbit=7, + orbitIndex=18, + skill=64042 + }, + [64046]={ + connections={ + [1]={ + id=45522, + orbit=6 + }, + [2]={ + id=5726, + orbit=0 + } + }, + group=747, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.png", + isNotable=true, + isSwitchable=true, + name="Principal Infusion", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + id=10941, + name="Entropy", + stats={ + [1]="20% increased Chaos Damage", + [2]="18% increased Skill Effect Duration" + } + } + }, + orbit=7, + orbitIndex=3, + skill=64046, + stats={ + [1]="20% increased Elemental Infusion duration", + [2]="Remnants can be collected from 30% further away" + } + }, + [64050]={ + connections={ + }, + group=1346, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png", + isNotable=true, + name="Marathon Runner", + orbit=0, + orbitIndex=0, + skill=64050, + stats={ + [1]="12% increased Movement Speed while Sprinting" + } + }, + [64056]={ + connections={ + [1]={ + id=36931, + orbit=0 + } + }, + group=1075, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Daze Chance", + orbit=2, + orbitIndex=6, + skill=64056, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [64064]={ + connections={ + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/accuracydex.png", + name="Accuracy", + orbit=0, + orbitIndex=0, + skill=64064, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [64083]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=536, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=7, + orbitIndex=3, + skill=64083, + stats={ + [1]="20% increased Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [64119]={ + connections={ + [1]={ + id=33596, + orbit=0 + } + }, + group=883, + icon="Art/2DArt/SkillIcons/passives/BowDamage.png", + isNotable=true, + name="Rapid Reload", + orbit=7, + orbitIndex=20, + skill=64119, + stats={ + [1]="40% increased Crossbow Reload Speed" + } + }, + [64139]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=22221, + orbit=-5 + }, + [2]={ + id=15842, + orbit=0 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + isNotable=true, + name="Friend to Many", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=10, + skill=64139, + stats={ + [1]="Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [64140]={ + connections={ + [1]={ + id=51336, + orbit=-5 + }, + [2]={ + id=30905, + orbit=-4 + } + }, + group=1061, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=10, + skill=64140, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [64192]={ + connections={ + [1]={ + id=53373, + orbit=3 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/life1.png", + name="Stun Threshold", + orbit=3, + orbitIndex=12, + skill=64192, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [64213]={ + connections={ + [1]={ + id=12611, + orbit=-3 + }, + [2]={ + id=61246, + orbit=3 + } + }, + group=1200, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Damage and Freeze Buildup", + orbit=7, + orbitIndex=8, + skill=64213, + stats={ + [1]="10% increased Freeze Buildup", + [2]="8% increased Elemental Damage" + } + }, + [64223]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=56857, + orbit=6 + } + }, + group=563, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png", + name="Energy Shield", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=64223, + stats={ + [1]="20% increased maximum Energy Shield" + } + }, + [64239]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=2733, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + isNotable=true, + name="Innate Rune", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=2, + orbitIndex=17, + skill=64239, + stats={ + [1]="Adds 1 to 37 Lightning damage to Attacks" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [64240]={ + connections={ + [1]={ + id=52220, + orbit=0 + } + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + isNotable=true, + name="Battle Fever", + orbit=2, + orbitIndex=6, + skill=64240, + stats={ + [1]="5% increased Skill Speed", + [2]="25% increased Physical Damage" + } + }, + [64284]={ + connections={ + [1]={ + id=27373, + orbit=0 + }, + [2]={ + id=19011, + orbit=4 + } + }, + group=527, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Melee Damage", + orbit=4, + orbitIndex=51, + skill=64284, + stats={ + [1]="8% increased Melee Damage" + } + }, + [64295]={ + connections={ + }, + group=1418, + icon="Art/2DArt/SkillIcons/passives/trapdamage.png", + name="Trap Critical Chance", + orbit=4, + orbitIndex=54, + skill=64295, + stats={ + [1]="10% increased Critical Hit Chance with Traps" + } + }, + [64299]={ + connections={ + [1]={ + id=17655, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + isSwitchable=true, + name="Bolstering Presence", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.png", + id=56845, + name="Harbinger of Disaster", + stats={ + [1]="10% increased Critical Damage Bonus", + [2]="10% increased Damage", + [3]="10% increased Area Damage" + } + } + }, + orbit=2, + orbitIndex=20, + skill=64299, + stats={ + [1]="Aura Skills have 12% increased Magnitudes" + } + }, + [64312]={ + connections={ + [1]={ + id=23861, + orbit=-7 + }, + [2]={ + id=54886, + orbit=7 + } + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=7, + orbitIndex=2, + skill=64312, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [64318]={ + connections={ + [1]={ + id=61063, + orbit=0 + } + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Penetration", + orbit=3, + orbitIndex=2, + skill=64318, + stats={ + [1]="Damage Penetrates 4% of Enemy Elemental Resistances" + } + }, + [64324]={ + connections={ + [1]={ + id=41442, + orbit=9 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/shieldblock.png", + name="Block and Stun Threshold", + orbit=3, + orbitIndex=17, + skill=64324, + stats={ + [1]="4% increased Block chance", + [2]="5% increased Stun Threshold" + } + }, + [64325]={ + connections={ + [1]={ + id=45304, + orbit=-4 + } + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/Poison.png", + name="Poison Damage", + orbit=3, + orbitIndex=11, + skill=64325, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [64327]={ + connections={ + [1]={ + id=39517, + orbit=0 + }, + [2]={ + id=49391, + orbit=0 + } + }, + group=582, + icon="Art/2DArt/SkillIcons/passives/steelspan.png", + isNotable=true, + name="Defender's Resolve", + orbit=3, + orbitIndex=21, + skill=64327, + stats={ + [1]="12% increased Block chance", + [2]="Your Heavy Stun buildup empties 50% faster" + } + }, + [64345]={ + connections={ + [1]={ + id=49968, + orbit=0 + }, + [2]={ + id=63679, + orbit=0 + } + }, + group=1164, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Attack Damage", + orbit=2, + orbitIndex=16, + skill=64345, + stats={ + [1]="10% increased Attack Damage" + } + }, + [64352]={ + connections={ + [1]={ + id=44345, + orbit=0 + } + }, + group=992, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=64352, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [64357]={ + connections={ + [1]={ + id=50062, + orbit=0 + }, + [2]={ + id=506, + orbit=0 + } + }, + group=273, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + name="Armour and Energy Shield", + orbit=2, + orbitIndex=8, + skill=64357, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [64370]={ + connections={ + [1]={ + id=53396, + orbit=0 + } + }, + group=624, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=17, + skill=64370, + stats={ + [1]="+5 to any Attribute" + } + }, + [64379]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=25239, + orbit=-4 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png", + name="Spell Damage", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=69, + skill=64379, + stats={ + [1]="12% increased Spell Damage" + } + }, + [64399]={ + connections={ + [1]={ + id=2511, + orbit=3 + } + }, + group=544, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + name="Attack Critical Damage", + orbit=1, + orbitIndex=7, + skill=64399, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [64405]={ + connections={ + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=3, + orbitIndex=12, + skill=64405, + stats={ + [1]="15% increased Totem Damage" + } + }, + [64415]={ + connections={ + [1]={ + id=22063, + orbit=0 + }, + [2]={ + id=1416, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/stun2h.png", + isNotable=true, + name="Shattering Daze", + orbit=7, + orbitIndex=19, + skill=64415, + stats={ + [1]="5% chance to Daze on Hit", + [2]="Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies" + } + }, + [64427]={ + connections={ + }, + group=930, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Infusion and Power Charge Duration", + orbit=2, + orbitIndex=15, + skill=64427, + stats={ + [1]="6% increased Power Charge Duration", + [2]="6% increased Elemental Infusion duration" + } + }, + [64434]={ + connections={ + [1]={ + id=3893, + orbit=2 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=4, + skill=64434, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [64443]={ + connections={ + [1]={ + id=41126, + orbit=0 + }, + [2]={ + id=62023, + orbit=0 + } + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + isNotable=true, + name="Impact Force", + orbit=3, + orbitIndex=8, + skill=64443, + stats={ + [1]="20% increased Stun Buildup", + [2]="25% increased Attack Area Damage" + } + }, + [64462]={ + connections={ + [1]={ + id=53150, + orbit=0 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=2, + orbitIndex=17, + skill=64462, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [64471]={ + connections={ + [1]={ + id=43843, + orbit=0 + } + }, + group=598, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=54, + skill=64471, + stats={ + [1]="+5 to any Attribute" + } + }, + [64474]={ + connections={ + }, + group=1153, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=15, + skill=64474, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [64488]={ + connections={ + [1]={ + id=7201, + orbit=7 + } + }, + group=722, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Critical Chance", + orbit=7, + orbitIndex=3, + skill=64488, + stats={ + [1]="Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m" + } + }, + [64489]={ + connections={ + [1]={ + id=6952, + orbit=0 + }, + [2]={ + id=25162, + orbit=0 + } + }, + group=100, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area", + orbit=2, + orbitIndex=14, + skill=64489, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [64492]={ + connections={ + [1]={ + id=46688, + orbit=7 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.png", + name="One Handed Attack Speed", + orbit=7, + orbitIndex=9, + skill=64492, + stats={ + [1]="3% increased Attack Speed with One Handed Melee Weapons" + } + }, + [64525]={ + connections={ + [1]={ + id=58855, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Easy Target", + orbit=7, + orbitIndex=4, + skill=64525, + stats={ + [1]="Your Hits cannot be Evaded by Heavy Stunned Enemies" + } + }, + [64543]={ + connections={ + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + isNotable=true, + name="Unbound Forces", + orbit=5, + orbitIndex=57, + skill=64543, + stats={ + [1]="40% increased Chill Duration on Enemies", + [2]="40% increased Shock Duration", + [3]="25% increased Magnitude of Chill you inflict", + [4]="25% increased Magnitude of Shock you inflict" + } + }, + [64550]={ + connections={ + [1]={ + id=22532, + orbit=0 + } + }, + group=860, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + name="Damage vs Immobilised", + orbit=2, + orbitIndex=5, + skill=64550, + stats={ + [1]="20% increased Damage against Immobilised Enemies" + } + }, + [64572]={ + connections={ + [1]={ + id=48925, + orbit=0 + } + }, + group=330, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.png", + name="Freeze Buildup", + orbit=7, + orbitIndex=20, + skill=64572, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [64591]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=34207, + orbit=-8 + } + }, + flavourText="\"I have seen countless battles. I know war! The taste of defeat... The taste of victory! But in this war... everything is at stake. So yes, those you speak of will know my blade. I will do whatever I must!\"\n\nRuzhan confided in his Tale-woman, Navira.", + group=611, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.png", + isNotable=true, + name="Ruzhan's Trap", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=106, + skill=64591, + stats={ + [1]="Grants Skill: Ruzhan's Trap" + } + }, + [64601]={ + connections={ + }, + flavourText="The body is a weapon waiting to be mastered.", + group=1289, + icon="Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.png", + isKeystone=true, + name="Hollow Palm Technique", + orbit=0, + orbitIndex=0, + skill=64601, + stats={ + [1]="Can Attack as though using a Quarterstaff while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped Quarterstaff's damage have:\nBase Unarmed Physical damage replaced with damage based on their Skill Level\n1% more Attack Speed per 75 Item Evasion on Equipped Armour Items\n+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items" + } + }, + [64637]={ + connections={ + [1]={ + id=32543, + orbit=7 + } + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=7, + orbitIndex=14, + skill=64637, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [64643]={ + connections={ + [1]={ + id=56360, + orbit=0 + }, + [2]={ + id=27176, + orbit=0 + } + }, + group=1054, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + name="Power Charge Duration", + orbit=2, + orbitIndex=3, + skill=64643, + stats={ + [1]="20% increased Power Charge Duration" + } + }, + [64650]={ + connections={ + }, + group=1138, + icon="Art/2DArt/SkillIcons/passives/life1.png", + isNotable=true, + name="Wary Dodging", + orbit=2, + orbitIndex=12, + skill=64650, + stats={ + [1]="Cannot be Light Stunned if you haven't been Hit Recently" + } + }, + [64653]={ + connections={ + [1]={ + id=47420, + orbit=7 + } + }, + group=272, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.png", + name="Minion Damage", + orbit=7, + orbitIndex=15, + skill=64653, + stats={ + [1]="Minions deal 16% increased Damage" + } + }, + [64659]={ + connections={ + [1]={ + id=3355, + orbit=0 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + isNotable=true, + name="Lasting Boons", + orbit=3, + orbitIndex=21, + skill=64659, + stats={ + [1]="20% reduced Slowing Potency of Debuffs on You", + [2]="Buffs on you expire 10% slower" + } + }, + [64665]={ + connections={ + [1]={ + id=51847, + orbit=0 + }, + [2]={ + id=21274, + orbit=0 + } + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/accuracystr.png", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=30, + skill=64665, + stats={ + [1]="8% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [64683]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + connections={ + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=64683 + }, + [64700]={ + connections={ + [1]={ + id=61632, + orbit=0 + } + }, + group=1465, + icon="Art/2DArt/SkillIcons/passives/damagestaff.png", + name="Quarterstaff Freeze and Daze Buildup", + orbit=0, + orbitIndex=0, + skill=64700, + stats={ + [1]="5% chance to Daze on Hit", + [2]="20% increased Freeze Buildup with Quarterstaves" + } + }, + [64724]={ + connections={ + }, + group=178, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Flammability and Ignite Magnitude", + orbit=2, + orbitIndex=14, + skill=64724, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="8% increased Ignite Magnitude" + } + }, + [64726]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + connections={ + [1]={ + id=46296, + orbit=0 + }, + [2]={ + id=38479, + orbit=0 + } + }, + group=920, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + isOnlyImage=true, + name="Projectile Mastery", + orbit=2, + orbitIndex=8, + skill=64726 + }, + [64747]={ + connections={ + [1]={ + id=33838, + orbit=-5 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png", + name="Ailment Chance and Duration", + orbit=4, + orbitIndex=39, + skill=64747, + stats={ + [1]="6% increased chance to inflict Ailments", + [2]="6% increased Duration of Damaging Ailments on Enemies" + } + }, + [64770]={ + connections={ + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + isNotable=true, + name="Morgana, the Storm Seer", + orbit=3, + orbitIndex=19, + skill=64770, + stats={ + [1]="+8% of Armour also applies to Elemental Damage", + [2]="10% faster start of Energy Shield Recharge", + [3]="You cannot be Electrocuted", + [4]="50% reduced effect of Shock on you" + } + }, + [64789]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=8867, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Mana Regeneration", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=68, + skill=64789, + stats={ + [1]="12% increased Mana Regeneration Rate" + } + }, + [64804]={ + connections={ + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/PuppeteerNode.png", + name="Puppet Master chance", + orbit=3, + orbitIndex=10, + skill=64804, + stats={ + [1]="25% increased Duration of each Puppet Master stack" + } + }, + [64807]={ + connections={ + [1]={ + id=59945, + orbit=0 + } + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + name="Attack Area Damage and Area", + orbit=2, + orbitIndex=20, + skill=64807, + stats={ + [1]="6% increased Attack Area Damage", + [2]="4% increased Area of Effect for Attacks" + } + }, + [64819]={ + connections={ + [1]={ + id=47753, + orbit=-3 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.png", + name="Fire Damage and Armour ", + orbit=4, + orbitIndex=48, + skill=64819, + stats={ + [1]="6% increased Fire Damage", + [2]="10% increased Armour" + } + }, + [64851]={ + connections={ + [1]={ + id=21324, + orbit=0 + } + }, + group=1107, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Flashy Parrying", + orbit=7, + orbitIndex=9, + skill=64851, + stats={ + [1]="12% increased Block chance", + [2]="20% increased Parried Debuff Duration" + } + }, + [64870]={ + connections={ + [1]={ + id=27439, + orbit=0 + } + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + name="Armour and Applies to Fire Damage", + orbit=0, + orbitIndex=0, + skill=64870, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Fire Damage" + } + }, + [64900]={ + connections={ + [1]={ + id=54999, + orbit=-4 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + name="Ancestral Boosted Attack Damage and Stun", + orbit=7, + orbitIndex=23, + skill=64900, + stats={ + [1]="10% increased Stun Buildup", + [2]="Ancestrally Boosted Attacks deal 16% increased Damage" + } + }, + [64927]={ + connections={ + [1]={ + id=52464, + orbit=4 + }, + [2]={ + id=51741, + orbit=-4 + }, + [3]={ + id=54351, + orbit=-6 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + name="Mana Leech", + orbit=6, + orbitIndex=18, + skill=64927, + stats={ + [1]="10% increased amount of Mana Leeched" + } + }, + [64939]={ + connections={ + [1]={ + id=30123, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.png", + name="Two Handed Damage", + orbit=2, + orbitIndex=12, + skill=64939, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [64948]={ + connections={ + [1]={ + id=48264, + orbit=0 + } + }, + group=301, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + name="Aura Effect", + orbit=2, + orbitIndex=9, + skill=64948, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [64962]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=19, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.png", + isNotable=true, + name="Dedication to Kitava", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=0, + orbitIndex=0, + skill=64962, + stats={ + [1]="Body Armour grants +100% of Armour also applies to Chaos Damage" + } + }, + [64990]={ + connections={ + [1]={ + id=60891, + orbit=0 + }, + [2]={ + id=18897, + orbit=0 + }, + [3]={ + id=27705, + orbit=0 + } + }, + group=1449, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png", + name="Intelligence", + orbit=2, + orbitIndex=10, + skill=64990, + stats={ + [1]="+8 to Intelligence" + } + }, + [64995]={ + connections={ + [1]={ + id=17924, + orbit=0 + } + }, + group=386, + icon="Art/2DArt/SkillIcons/passives/damage.png", + name="Damage against Enemies on Low Life", + orbit=3, + orbitIndex=0, + skill=64995, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [64996]={ + connections={ + [1]={ + id=7782, + orbit=-4 + }, + [2]={ + id=4810, + orbit=7 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleed Chance", + orbit=7, + orbitIndex=20, + skill=64996, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [65009]={ + connections={ + [1]={ + id=29517, + orbit=0 + }, + [2]={ + id=31855, + orbit=7 + }, + [3]={ + id=61373, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/plusattribute.png", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.png", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.png", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.png", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=65009, + stats={ + [1]="+5 to any Attribute" + } + }, + [65016]={ + connections={ + [1]={ + id=11505, + orbit=0 + } + }, + group=602, + icon="Art/2DArt/SkillIcons/passives/firedamageint.png", + isNotable=true, + name="Intense Flames", + orbit=3, + orbitIndex=16, + skill=65016, + stats={ + [1]="35% increased Damage with Hits against Burning Enemies" + } + }, + [65023]={ + connections={ + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.png", + isNotable=true, + name="Impenetrable Shell", + orbit=3, + orbitIndex=6, + skill=65023, + stats={ + [1]="Defend with 150% of Armour against Hits from Enemies that are further than 6m away" + } + }, + [65042]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + connections={ + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + isOnlyImage=true, + name="Rage Mastery", + orbit=1, + orbitIndex=6, + skill=65042 + }, + [65091]={ + connections={ + [1]={ + id=51707, + orbit=6 + } + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/evade.png", + name="Evasion", + orbit=7, + orbitIndex=20, + skill=65091, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [65149]={ + connections={ + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break Effect", + orbit=2, + orbitIndex=20, + skill=65149, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [65154]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + connections={ + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=65154 + }, + [65160]={ + connections={ + [1]={ + id=44069, + orbit=0 + } + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/stunstr.png", + isNotable=true, + name="Titanic", + orbit=3, + orbitIndex=7, + skill=65160, + stats={ + [1]="30% increased Stun Buildup", + [2]="30% increased Stun Threshold", + [3]="5% increased Strength" + } + }, + [65161]={ + connections={ + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.png", + name="Deflection", + orbit=2, + orbitIndex=16, + skill=65161, + stats={ + [1]="Gain Deflection Rating equal to 8% of Evasion Rating" + } + }, + [65167]={ + connections={ + [1]={ + id=712, + orbit=4 + } + }, + group=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png", + name="Area Damage and Companion Area of Effect", + orbit=0, + orbitIndex=0, + skill=65167, + stats={ + [1]="6% increased Area Damage", + [2]="Companions have 10% increased Area of Effect" + } + }, + [65173]={ + ascendancyName="Invoker", + connections={ + }, + group=1505, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.png", + isNotable=true, + name="...and Protect me from Harm", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=9, + orbitIndex=139, + skill=65173, + stats={ + [1]="Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating", + [2]="35% less Evasion Rating" + } + }, + [65176]={ + connections={ + [1]={ + id=14045, + orbit=0 + }, + [2]={ + id=42250, + orbit=0 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.png", + name="Projectile Damage", + orbit=6, + orbitIndex=48, + skill=65176, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [65189]={ + connections={ + [1]={ + id=17260, + orbit=0 + } + }, + group=335, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png", + name="Shapeshifted Elemental Penetration", + orbit=2, + orbitIndex=7, + skill=65189, + stats={ + [1]="Damage Penetrates 6% of Enemy Elemental Resistances while Shapeshifted" + } + }, + [65192]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=63170, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="OracleFrameAllocated", + path="OracleFrameCanAllocate", + unalloc="OracleFrameUnallocated" + }, + orbit=3, + orbitIndex=11, + skill=65192, + stats={ + [1]="Spells Cast by Totems have 4% increased Cast Speed", + [2]="Attacks used by Totems have 4% increased Attack Speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [65193]={ + connections={ + [1]={ + id=48714, + orbit=0 + }, + [2]={ + id=10245, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + isNotable=true, + name="Viciousness", + orbit=3, + orbitIndex=13, + skill=65193, + stats={ + [1]="3% increased Attack Speed per Enemy in Close Range", + [2]="+10 to Dexterity" + } + }, + [65204]={ + connections={ + [1]={ + id=30615, + orbit=0 + }, + [2]={ + id=10162, + orbit=0 + } + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/chargeint.png", + isNotable=true, + name="Overflowing Power", + orbit=2, + orbitIndex=7, + skill=65204, + stats={ + [1]="+2 to Maximum Power Charges" + } + }, + [65207]={ + connections={ + [1]={ + id=63566, + orbit=-6 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=3, + orbitIndex=14, + skill=65207, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [65212]={ + connections={ + [1]={ + id=58539, + orbit=0 + }, + [2]={ + id=34968, + orbit=0 + } + }, + group=1433, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + name="Slow Effect on You", + orbit=7, + orbitIndex=6, + skill=65212, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [65226]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern.png", + connections={ + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=65226 + }, + [65228]={ + ascendancyName="Martial Artist", + connections={ + [1]={ + id=61586, + orbit=4 + } + }, + group=1510, + icon="Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png", + name="Attack Speed", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=4, + orbitIndex=28, + skill=65228, + stats={ + [1]="4% increased Attack Speed" + } + }, + [65243]={ + connections={ + [1]={ + id=46421, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/auraeffect.png", + isNotable=true, + name="Enveloping Presence", + orbit=2, + orbitIndex=22, + skill=65243, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="Aura Skills have 6% increased Magnitudes" + } + }, + [65248]={ + connections={ + }, + group=739, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.png", + name="Elemental Ailment Duration", + orbit=4, + orbitIndex=24, + skill=65248, + stats={ + [1]="10% increased Duration of Ignite, Shock and Chill on Enemies" + } + }, + [65256]={ + connections={ + [1]={ + id=34845, + orbit=0 + }, + [2]={ + id=40626, + orbit=0 + } + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/trapsmax.png", + isNotable=true, + name="Widespread Coverage", + orbit=0, + orbitIndex=0, + skill=65256, + stats={ + [1]="50% increased Hazard Area of Effect", + [2]="20% reduced Hazard Damage" + } + }, + [65265]={ + connections={ + [1]={ + id=31366, + orbit=0 + }, + [2]={ + id=17146, + orbit=0 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.png", + isNotable=true, + name="Swift Interruption", + orbit=0, + orbitIndex=0, + skill=65265, + stats={ + [1]="12% increased Attack Speed if you've successfully Parried Recently", + [2]="6% increased Movement Speed if you've successfully Parried Recently" + } + }, + [65287]={ + connections={ + [1]={ + id=5580, + orbit=0 + } + }, + group=148, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.png", + name="Totem Damage", + orbit=2, + orbitIndex=6, + skill=65287, + stats={ + [1]="15% increased Totem Damage" + } + }, + [65290]={ + connections={ + [1]={ + id=57069, + orbit=0 + } + }, + group=1439, + icon="Art/2DArt/SkillIcons/passives/lightningint.png", + name="Lightning Damage and Resistance", + orbit=0, + orbitIndex=0, + skill=65290, + stats={ + [1]="5% increased Lightning Damage", + [2]="+3% to Lightning Resistance" + } + }, + [65310]={ + connections={ + [1]={ + id=22682, + orbit=0 + } + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/spellcritical.png", + name="Additional Spell Projectiles", + orbit=3, + orbitIndex=2, + skill=65310, + stats={ + [1]="6% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [65322]={ + connections={ + [1]={ + id=54818, + orbit=0 + }, + [2]={ + id=13425, + orbit=0 + }, + [3]={ + id=47709, + orbit=0 + }, + [4]={ + id=58718, + orbit=0 + } + }, + group=714, + icon="Art/2DArt/SkillIcons/passives/Blood2.png", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=65322, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [65324]={ + connections={ + [1]={ + id=1861, + orbit=7 + }, + [2]={ + id=9863, + orbit=-5 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png", + name="Armour applies to Elemental Damage and Deflection", + orbit=3, + orbitIndex=16, + skill=65324, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="Gain Deflection Rating equal to 5% of Evasion Rating" + } + }, + [65328]={ + connections={ + [1]={ + id=48565, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.png", + name="Sentinels", + orbit=2, + orbitIndex=2, + skill=65328, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [65353]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + connections={ + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + isOnlyImage=true, + name="Banner Mastery", + orbit=0, + orbitIndex=0, + skill=65353 + }, + [65393]={ + connections={ + [1]={ + id=2732, + orbit=-2 + }, + [2]={ + id=11672, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/mana.png", + name="Mana Cost Efficiency", + orbit=2, + orbitIndex=16, + skill=65393, + stats={ + [1]="8% increased Mana Cost Efficiency" + } + }, + [65413]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=12882, + orbit=0 + } + }, + group=517, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png", + name="Spell Critical Chance", + nodeOverlay={ + alloc="AscendancyFrameNormalAllocated", + path="AscendancyFrameNormalCanAllocate", + unalloc="AscendancyFrameNormalUnallocated" + }, + orbit=8, + orbitIndex=4, + skill=65413, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [65424]={ + connections={ + [1]={ + id=58109, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + name="Dual Wielding Damage", + orbit=3, + orbitIndex=3, + skill=65424, + stats={ + [1]="12% increased Attack Damage while Dual Wielding" + } + }, + [65437]={ + connections={ + [1]={ + id=63064, + orbit=0 + } + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + name="Energy Shield Delay", + orbit=2, + orbitIndex=14, + skill=65437, + stats={ + [1]="6% faster start of Energy Shield Recharge" + } + }, + [65439]={ + connections={ + [1]={ + id=12821, + orbit=0 + } + }, + group=505, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + name="Banner Aura Effect", + orbit=1, + orbitIndex=4, + skill=65439, + stats={ + [1]="Banner Skills have 12% increased Aura Magnitudes" + } + }, + [65468]={ + connections={ + [1]={ + id=61432, + orbit=0 + }, + [2]={ + id=25807, + orbit=0 + } + }, + group=877, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + isNotable=true, + name="Repeating Explosives", + orbit=0, + orbitIndex=0, + skill=65468, + stats={ + [1]="Grenades have 15% chance to activate a second time" + } + }, + [65472]={ + connections={ + [1]={ + id=9323, + orbit=0 + } + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + name="Glory Generation", + orbit=3, + orbitIndex=21, + skill=65472, + stats={ + [1]="15% increased Glory generation" + } + }, + [65493]={ + connections={ + [1]={ + id=43854, + orbit=2 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.png", + name="Area and Presence", + orbit=3, + orbitIndex=10, + skill=65493, + stats={ + [1]="15% reduced Presence Area of Effect", + [2]="6% increased Area of Effect" + } + }, + [65498]={ + connections={ + [1]={ + id=37026, + orbit=0 + } + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png", + name="Armour Break", + orbit=1, + orbitIndex=10, + skill=65498, + stats={ + [1]="Break 20% increased Armour" + } + }, + [65509]={ + connections={ + [1]={ + id=41384, + orbit=0 + }, + [2]={ + id=51821, + orbit=0 + } + }, + group=275, + icon="Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png", + name="Armour Applies to Elemental Damage and Energy Shield Delay", + orbit=3, + orbitIndex=22, + skill=65509, + stats={ + [1]="+5% of Armour also applies to Elemental Damage", + [2]="4% faster start of Energy Shield Recharge" + } + }, + [65518]={ + ascendancyName="Blood Mage", + connections={ + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.png", + isNotable=true, + name="Sanguine Tides", + nodeOverlay={ + alloc="AscendancyFrameNotableAllocated", + path="AscendancyFrameNotableCanAllocate", + unalloc="AscendancyFrameNotableUnallocated" + }, + orbit=5, + orbitIndex=6, + skill=65518, + stats={ + [1]="Flasks do not recover Life", + [2]="Gain 1 Life Flask Charge per 2% Life spent", + [3]="On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way" + } + } + }, + spriteCoords={ + ["background-druid.webp"]={ + ["classDruid:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classDruid:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classDruid:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classDruid:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-huntress.webp"]={ + ["classHuntress:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classHuntress:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classHuntress:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classHuntress:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-mercenary.webp"]={ + ["classMercenary:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classMercenary:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classMercenary:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classMercenary:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-monk.webp"]={ + ["classMonk:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classMonk:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classMonk:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classMonk:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-ranger.webp"]={ + ["classRanger:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classRanger:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classRanger:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classRanger:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-sorceress.webp"]={ + ["classSorceress:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classSorceress:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classSorceress:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classSorceress:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-warrior.webp"]={ + ["classWarrior:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classWarrior:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classWarrior:Class2"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classWarrior:Class3"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background-witch.webp"]={ + ["classWitch:Class0"]={ + h=1500, + w=1500, + x=0, + y=0 + }, + ["classWitch:Class1"]={ + h=1500, + w=1500, + x=1500, + y=0 + }, + ["classWitch:Class2"]={ + h=1500, + w=1500, + x=3000, + y=0 + }, + ["classWitch:Class3"]={ + h=1500, + w=1500, + x=0, + y=1500 + }, + ["classWitch:Class4"]={ + h=1500, + w=1500, + x=1500, + y=1500 + } + }, + ["background.webp"]={ + Background2={ + h=128, + w=128, + x=0, + y=0 + } + }, + ["frame.webp"]={ + AscendancyFrameNormalAllocated={ + h=80, + w=80, + x=427, + y=240 + }, + AscendancyFrameNormalBacking={ + h=80, + w=80, + x=427, + y=160 + }, + AscendancyFrameNormalCanAllocate={ + h=80, + w=80, + x=427, + y=80 + }, + AscendancyFrameNormalUnallocated={ + h=80, + w=80, + x=427, + y=0 + }, + AscendancyFrameNotableAllocated={ + h=102, + w=103, + x=0, + y=213 + }, + AscendancyFrameNotableBacking={ + h=102, + w=103, + x=206, + y=111 + }, + AscendancyFrameNotableCanAllocate={ + h=102, + w=103, + x=103, + y=111 + }, + AscendancyFrameNotableUnallocated={ + h=102, + w=103, + x=0, + y=111 + }, + AscendancyMiddle={ + h=45, + w=45, + x=153, + y=491 + }, + BlightedNotableFrameAllocated={ + h=76, + w=76, + x=507, + y=304 + }, + BlightedNotableFrameCanAllocate={ + h=76, + w=76, + x=507, + y=228 + }, + BlightedNotableFrameUnallocated={ + h=76, + w=76, + x=507, + y=152 + }, + JewelFrameAllocated={ + h=76, + w=76, + x=507, + y=76 + }, + JewelFrameCanAllocate={ + h=76, + w=76, + x=507, + y=0 + }, + JewelFrameUnallocated={ + h=76, + w=76, + x=380, + y=415 + }, + JewelSocketAltActive={ + h=100, + w=100, + x=300, + y=315 + }, + JewelSocketAltCanAllocate={ + h=100, + w=100, + x=200, + y=315 + }, + JewelSocketAltNormal={ + h=100, + w=100, + x=100, + y=315 + }, + JewelSocketClusterAltCanAllocate1Large={ + h=100, + w=100, + x=0, + y=315 + }, + JewelSocketClusterAltCanAllocate1Medium={ + h=100, + w=100, + x=327, + y=200 + }, + JewelSocketClusterAltCanAllocate1Small={ + h=100, + w=100, + x=327, + y=100 + }, + JewelSocketClusterAltNormal1Large={ + h=100, + w=100, + x=327, + y=0 + }, + JewelSocketClusterAltNormal1Medium={ + h=100, + w=100, + x=203, + y=213 + }, + JewelSocketClusterAltNormal1Small={ + h=100, + w=100, + x=103, + y=213 + }, + KeystoneFrameAllocated={ + h=111, + w=109, + x=218, + y=0 + }, + KeystoneFrameCanAllocate={ + h=111, + w=109, + x=109, + y=0 + }, + KeystoneFrameUnallocated={ + h=111, + w=109, + x=0, + y=0 + }, + NotableFrameAllocated={ + h=76, + w=76, + x=304, + y=415 + }, + NotableFrameCanAllocate={ + h=76, + w=76, + x=228, + y=415 + }, + NotableFrameUnallocated={ + h=76, + w=76, + x=152, + y=415 + }, + OracleFrameAllocated={ + h=51, + w=51, + x=102, + y=491 + }, + OracleFrameCanAllocate={ + h=51, + w=51, + x=51, + y=491 + }, + OracleFrameNotableAllocated={ + h=76, + w=76, + x=76, + y=415 + }, + OracleFrameNotableCanAllocate={ + h=76, + w=76, + x=0, + y=415 + }, + OracleFrameNotableUnallocated={ + h=76, + w=76, + x=427, + y=320 + }, + OracleFrameUnallocated={ + h=51, + w=51, + x=0, + y=491 + }, + PSSkillFrame={ + h=51, + w=51, + x=456, + y=415 + }, + PSSkillFrameActive={ + h=51, + w=51, + x=507, + y=431 + }, + PSSkillFrameHighlighted={ + h=51, + w=51, + x=507, + y=380 + } + }, + ["group-background.webp"]={ + BGTree={ + h=2000, + w=2000, + x=2000, + y=0 + }, + BGTreeActive={ + h=2000, + w=2000, + x=0, + y=0 + } + }, + ["mastery-effect-active.webp"]={ + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png"]={ + h=241, + w=244, + x=0, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png"]={ + h=241, + w=244, + x=244, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png"]={ + h=241, + w=244, + x=488, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png"]={ + h=241, + w=244, + x=732, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png"]={ + h=241, + w=244, + x=976, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png"]={ + h=241, + w=244, + x=1220, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png"]={ + h=241, + w=244, + x=1464, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png"]={ + h=241, + w=244, + x=1708, + y=0 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png"]={ + h=241, + w=244, + x=0, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png"]={ + h=241, + w=244, + x=244, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png"]={ + h=241, + w=244, + x=488, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png"]={ + h=241, + w=244, + x=732, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern.png"]={ + h=241, + w=244, + x=976, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png"]={ + h=241, + w=244, + x=1220, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png"]={ + h=241, + w=244, + x=1464, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png"]={ + h=241, + w=244, + x=1708, + y=241 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern.png"]={ + h=241, + w=244, + x=0, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png"]={ + h=241, + w=244, + x=244, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern.png"]={ + h=241, + w=244, + x=488, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png"]={ + h=241, + w=244, + x=732, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png"]={ + h=241, + w=244, + x=976, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png"]={ + h=241, + w=244, + x=1220, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png"]={ + h=241, + w=244, + x=1464, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png"]={ + h=241, + w=244, + x=1708, + y=482 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png"]={ + h=241, + w=244, + x=0, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png"]={ + h=241, + w=244, + x=244, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png"]={ + h=241, + w=244, + x=488, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png"]={ + h=241, + w=244, + x=732, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png"]={ + h=241, + w=244, + x=976, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png"]={ + h=241, + w=244, + x=1220, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png"]={ + h=241, + w=244, + x=1464, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern.png"]={ + h=241, + w=244, + x=1708, + y=723 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png"]={ + h=241, + w=244, + x=0, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png"]={ + h=241, + w=244, + x=244, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png"]={ + h=241, + w=244, + x=488, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png"]={ + h=241, + w=244, + x=732, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png"]={ + h=241, + w=244, + x=976, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png"]={ + h=241, + w=244, + x=1220, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png"]={ + h=241, + w=244, + x=1464, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png"]={ + h=241, + w=244, + x=1708, + y=964 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png"]={ + h=241, + w=244, + x=0, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png"]={ + h=241, + w=244, + x=244, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png"]={ + h=241, + w=244, + x=488, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png"]={ + h=241, + w=244, + x=732, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png"]={ + h=241, + w=244, + x=976, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png"]={ + h=241, + w=244, + x=1220, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png"]={ + h=241, + w=244, + x=1464, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern.png"]={ + h=241, + w=244, + x=1708, + y=1205 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png"]={ + h=241, + w=244, + x=0, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png"]={ + h=241, + w=244, + x=244, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png"]={ + h=241, + w=244, + x=488, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern.png"]={ + h=241, + w=244, + x=732, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png"]={ + h=241, + w=244, + x=976, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png"]={ + h=241, + w=244, + x=1220, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png"]={ + h=241, + w=244, + x=1464, + y=1446 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png"]={ + h=241, + w=244, + x=1708, + y=1446 + } + }, + ["skills.webp"]={ + ["Art/2DArt/SkillIcons/ExplosiveGrenade.png"]={ + h=49, + w=49, + x=0, + y=272 + }, + ["Art/2DArt/SkillIcons/WitchBoneStorm.png"]={ + h=49, + w=49, + x=49, + y=272 + }, + ["Art/2DArt/SkillIcons/icongroundslam.png"]={ + h=49, + w=49, + x=98, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]={ + h=49, + w=49, + x=147, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.png"]={ + h=34, + w=34, + x=102, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.png"]={ + h=49, + w=49, + x=196, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.png"]={ + h=49, + w=49, + x=245, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.png"]={ + h=49, + w=49, + x=294, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.png"]={ + h=34, + w=34, + x=136, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.png"]={ + h=49, + w=49, + x=343, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.png"]={ + h=34, + w=34, + x=170, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.png"]={ + h=49, + w=49, + x=392, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.png"]={ + h=49, + w=49, + x=441, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.png"]={ + h=49, + w=49, + x=490, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.png"]={ + h=34, + w=34, + x=204, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.png"]={ + h=49, + w=49, + x=539, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.png"]={ + h=49, + w=49, + x=588, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.png"]={ + h=49, + w=49, + x=637, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.png"]={ + h=49, + w=49, + x=686, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.png"]={ + h=49, + w=49, + x=735, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.png"]={ + h=49, + w=49, + x=784, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.png"]={ + h=49, + w=49, + x=833, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.png"]={ + h=49, + w=49, + x=882, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.png"]={ + h=49, + w=49, + x=931, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.png"]={ + h=49, + w=49, + x=980, + y=272 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.png"]={ + h=34, + w=34, + x=238, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.png"]={ + h=49, + w=49, + x=0, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.png"]={ + h=49, + w=49, + x=49, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/Annihilation.png"]={ + h=49, + w=49, + x=98, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArchonGeneric.png"]={ + h=49, + w=49, + x=147, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArchonGenericNotable.png"]={ + h=49, + w=49, + x=196, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.png"]={ + h=34, + w=34, + x=306, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.png"]={ + h=49, + w=49, + x=245, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.png"]={ + h=49, + w=49, + x=294, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png"]={ + h=49, + w=49, + x=343, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png"]={ + h=49, + w=49, + x=392, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.png"]={ + h=49, + w=49, + x=441, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.png"]={ + h=49, + w=49, + x=490, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.png"]={ + h=49, + w=49, + x=539, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.png"]={ + h=49, + w=49, + x=588, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png"]={ + h=49, + w=49, + x=637, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png"]={ + h=49, + w=49, + x=686, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AuraNotable.png"]={ + h=49, + w=49, + x=735, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.png"]={ + h=34, + w=34, + x=612, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.png"]={ + h=49, + w=49, + x=784, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.png"]={ + h=34, + w=34, + x=646, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.png"]={ + h=49, + w=49, + x=833, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.png"]={ + h=34, + w=34, + x=680, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.png"]={ + h=49, + w=49, + x=882, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFox.png"]={ + h=34, + w=34, + x=714, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.png"]={ + h=49, + w=49, + x=931, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.png"]={ + h=34, + w=34, + x=748, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.png"]={ + h=49, + w=49, + x=980, + y=321 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCat.png"]={ + h=34, + w=34, + x=782, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.png"]={ + h=49, + w=49, + x=0, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStag.png"]={ + h=34, + w=34, + x=816, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.png"]={ + h=49, + w=49, + x=49, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolf.png"]={ + h=34, + w=34, + x=850, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.png"]={ + h=49, + w=49, + x=98, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBear.png"]={ + h=34, + w=34, + x=884, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.png"]={ + h=49, + w=49, + x=147, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoar.png"]={ + h=34, + w=34, + x=918, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.png"]={ + h=49, + w=49, + x=196, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOx.png"]={ + h=34, + w=34, + x=952, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.png"]={ + h=49, + w=49, + x=245, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]={ + h=49, + w=49, + x=294, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]={ + h=34, + w=34, + x=986, + y=0 + }, + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]={ + h=49, + w=49, + x=784, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]={ + h=49, + w=49, + x=343, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.png"]={ + h=49, + w=49, + x=392, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.png"]={ + h=49, + w=49, + x=441, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.png"]={ + h=49, + w=49, + x=490, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.png"]={ + h=49, + w=49, + x=539, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.png"]={ + h=49, + w=49, + x=588, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.png"]={ + h=49, + w=49, + x=637, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.png"]={ + h=49, + w=49, + x=686, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.png"]={ + h=34, + w=34, + x=34, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.png"]={ + h=49, + w=49, + x=735, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.png"]={ + h=49, + w=49, + x=784, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]={ + h=49, + w=49, + x=833, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/BucklerNode1.png"]={ + h=34, + w=34, + x=102, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/BucklersNotable1.png"]={ + h=49, + w=49, + x=882, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/BulwarkKeystone.png"]={ + h=69, + w=68, + x=0, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]={ + h=49, + w=49, + x=931, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.png"]={ + h=34, + w=34, + x=136, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.png"]={ + h=49, + w=49, + x=980, + y=370 + }, + ["Art/2DArt/SkillIcons/passives/ChannellingDamage.png"]={ + h=49, + w=49, + x=0, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/ChannellingSpeed.png"]={ + h=34, + w=34, + x=204, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]={ + h=34, + w=34, + x=238, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]={ + h=34, + w=34, + x=272, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]={ + h=49, + w=49, + x=49, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CharmNode1.png"]={ + h=49, + w=49, + x=98, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CharmNotable1.png"]={ + h=49, + w=49, + x=147, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]={ + h=49, + w=49, + x=196, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]={ + h=49, + w=49, + x=245, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/ColdFireNode.png"]={ + h=49, + w=49, + x=294, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]={ + h=34, + w=34, + x=442, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/CompanionsNode1.png"]={ + h=49, + w=49, + x=343, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CompanionsNotable1.png"]={ + h=49, + w=49, + x=392, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]={ + h=49, + w=49, + x=441, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.png"]={ + h=69, + w=68, + x=68, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.png"]={ + h=49, + w=49, + x=490, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]={ + h=49, + w=49, + x=539, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]={ + h=49, + w=49, + x=588, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]={ + h=49, + w=49, + x=637, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.png"]={ + h=69, + w=68, + x=136, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.png"]={ + h=34, + w=34, + x=578, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.png"]={ + h=34, + w=34, + x=612, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.png"]={ + h=49, + w=49, + x=686, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.png"]={ + h=49, + w=49, + x=735, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.png"]={ + h=49, + w=49, + x=784, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.png"]={ + h=49, + w=49, + x=833, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.png"]={ + h=49, + w=49, + x=882, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.png"]={ + h=49, + w=49, + x=931, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.png"]={ + h=34, + w=34, + x=646, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.png"]={ + h=49, + w=49, + x=980, + y=419 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.png"]={ + h=49, + w=49, + x=0, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.png"]={ + h=34, + w=34, + x=680, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.png"]={ + h=49, + w=49, + x=49, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.png"]={ + h=49, + w=49, + x=98, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.png"]={ + h=49, + w=49, + x=147, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.png"]={ + h=49, + w=49, + x=196, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.png"]={ + h=49, + w=49, + x=245, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.png"]={ + h=49, + w=49, + x=294, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.png"]={ + h=49, + w=49, + x=343, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.png"]={ + h=49, + w=49, + x=392, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.png"]={ + h=49, + w=49, + x=441, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.png"]={ + h=49, + w=49, + x=490, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.png"]={ + h=49, + w=49, + x=539, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.png"]={ + h=49, + w=49, + x=588, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.png"]={ + h=49, + w=49, + x=637, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.png"]={ + h=49, + w=49, + x=686, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.png"]={ + h=49, + w=49, + x=735, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.png"]={ + h=49, + w=49, + x=784, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.png"]={ + h=49, + w=49, + x=833, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.png"]={ + h=69, + w=68, + x=204, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/DruidAnimism.png"]={ + h=69, + w=68, + x=272, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.png"]={ + h=49, + w=49, + x=882, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.png"]={ + h=49, + w=49, + x=931, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DruidRageKeystone.png"]={ + h=69, + w=68, + x=340, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.png"]={ + h=34, + w=34, + x=748, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.png"]={ + h=49, + w=49, + x=980, + y=468 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.png"]={ + h=34, + w=34, + x=782, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.png"]={ + h=49, + w=49, + x=0, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.png"]={ + h=34, + w=34, + x=816, + y=34 + }, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.png"]={ + h=49, + w=49, + x=49, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.png"]={ + h=69, + w=68, + x=408, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]={ + h=49, + w=49, + x=98, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]={ + h=49, + w=49, + x=147, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]={ + h=49, + w=49, + x=196, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]={ + h=49, + w=49, + x=245, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.png"]={ + h=49, + w=49, + x=294, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]={ + h=49, + w=49, + x=343, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.png"]={ + h=49, + w=49, + x=392, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.png"]={ + h=49, + w=49, + x=441, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EternalYouth.png"]={ + h=69, + w=68, + x=476, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]={ + h=49, + w=49, + x=490, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]={ + h=49, + w=49, + x=539, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]={ + h=49, + w=49, + x=588, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]={ + h=49, + w=49, + x=637, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]={ + h=34, + w=34, + x=170, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.png"]={ + h=69, + w=68, + x=544, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]={ + h=49, + w=49, + x=686, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]={ + h=49, + w=49, + x=735, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.png"]={ + h=49, + w=49, + x=784, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.png"]={ + h=49, + w=49, + x=833, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.png"]={ + h=49, + w=49, + x=882, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.png"]={ + h=49, + w=49, + x=931, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.png"]={ + h=49, + w=49, + x=980, + y=517 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.png"]={ + h=34, + w=34, + x=204, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.png"]={ + h=34, + w=34, + x=238, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.png"]={ + h=34, + w=34, + x=272, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.png"]={ + h=49, + w=49, + x=0, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.png"]={ + h=49, + w=49, + x=49, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.png"]={ + h=49, + w=49, + x=98, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.png"]={ + h=49, + w=49, + x=147, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/GiantBloodKeystone.png"]={ + h=69, + w=68, + x=612, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.png"]={ + h=69, + w=68, + x=680, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.png"]={ + h=49, + w=49, + x=196, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Harrier.png"]={ + h=49, + w=49, + x=245, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/HeartstopperKeystone.png"]={ + h=69, + w=68, + x=748, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/Hearty.png"]={ + h=49, + w=49, + x=294, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]={ + h=49, + w=49, + x=343, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]={ + h=49, + w=49, + x=392, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.png"]={ + h=69, + w=68, + x=816, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/Hunter.png"]={ + h=49, + w=49, + x=441, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]={ + h=34, + w=34, + x=476, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]={ + h=49, + w=49, + x=490, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]={ + h=49, + w=49, + x=539, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]={ + h=49, + w=49, + x=588, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]={ + h=49, + w=49, + x=637, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]={ + h=49, + w=49, + x=686, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]={ + h=49, + w=49, + x=735, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.png"]={ + h=49, + w=49, + x=784, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.png"]={ + h=49, + w=49, + x=833, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.png"]={ + h=49, + w=49, + x=882, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.png"]={ + h=49, + w=49, + x=931, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.png"]={ + h=49, + w=49, + x=980, + y=566 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.png"]={ + h=49, + w=49, + x=0, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.png"]={ + h=49, + w=49, + x=49, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.png"]={ + h=34, + w=34, + x=612, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.png"]={ + h=49, + w=49, + x=98, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.png"]={ + h=49, + w=49, + x=147, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.png"]={ + h=49, + w=49, + x=196, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.png"]={ + h=49, + w=49, + x=245, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]={ + h=49, + w=49, + x=294, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/InstillationsNode1.png"]={ + h=34, + w=34, + x=680, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/InstillationsNotable1.png"]={ + h=49, + w=49, + x=343, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.png"]={ + h=49, + w=49, + x=392, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.png"]={ + h=49, + w=49, + x=441, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.png"]={ + h=49, + w=49, + x=490, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.png"]={ + h=49, + w=49, + x=539, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.png"]={ + h=49, + w=49, + x=588, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.png"]={ + h=49, + w=49, + x=637, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.png"]={ + h=34, + w=34, + x=714, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.png"]={ + h=49, + w=49, + x=686, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.png"]={ + h=49, + w=49, + x=735, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.png"]={ + h=49, + w=49, + x=784, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png"]={ + h=69, + w=68, + x=884, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png"]={ + h=69, + w=68, + x=952, + y=1301 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png"]={ + h=69, + w=68, + x=0, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.png"]={ + h=69, + w=68, + x=68, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]={ + h=69, + w=68, + x=136, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]={ + h=69, + w=68, + x=204, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]={ + h=69, + w=68, + x=272, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]={ + h=69, + w=68, + x=340, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]={ + h=69, + w=68, + x=408, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]={ + h=69, + w=68, + x=476, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]={ + h=69, + w=68, + x=544, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/LethalAssault.png"]={ + h=49, + w=49, + x=833, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.png"]={ + h=49, + w=49, + x=882, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.png"]={ + h=49, + w=49, + x=931, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.png"]={ + h=49, + w=49, + x=980, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.png"]={ + h=34, + w=34, + x=238, + y=238 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.png"]={ + h=49, + w=49, + x=833, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.png"]={ + h=49, + w=49, + x=882, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.png"]={ + h=49, + w=49, + x=931, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.png"]={ + h=49, + w=49, + x=980, + y=615 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.png"]={ + h=49, + w=49, + x=0, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichNode.png"]={ + h=34, + w=34, + x=748, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.png"]={ + h=49, + w=49, + x=49, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.png"]={ + h=49, + w=49, + x=98, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.png"]={ + h=49, + w=49, + x=147, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]={ + h=49, + w=49, + x=196, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]={ + h=49, + w=49, + x=245, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]={ + h=49, + w=49, + x=294, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]={ + h=34, + w=34, + x=884, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]={ + h=49, + w=49, + x=343, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]={ + h=49, + w=49, + x=392, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.png"]={ + h=49, + w=49, + x=441, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.png"]={ + h=49, + w=49, + x=490, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.png"]={ + h=49, + w=49, + x=539, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.png"]={ + h=49, + w=49, + x=588, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.png"]={ + h=49, + w=49, + x=637, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.png"]={ + h=49, + w=49, + x=686, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.png"]={ + h=49, + w=49, + x=735, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.png"]={ + h=34, + w=34, + x=986, + y=68 + }, + ["Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.png"]={ + h=49, + w=49, + x=784, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]={ + h=49, + w=49, + x=833, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]={ + h=49, + w=49, + x=882, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]={ + h=49, + w=49, + x=931, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]={ + h=49, + w=49, + x=980, + y=664 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]={ + h=49, + w=49, + x=0, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]={ + h=49, + w=49, + x=49, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]={ + h=49, + w=49, + x=98, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]={ + h=49, + w=49, + x=147, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MinionsandManaNode.png"]={ + h=49, + w=49, + x=196, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]={ + h=49, + w=49, + x=245, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.png"]={ + h=49, + w=49, + x=294, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkElementalChakra.png"]={ + h=49, + w=49, + x=343, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.png"]={ + h=49, + w=49, + x=392, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkHealthChakra.png"]={ + h=49, + w=49, + x=441, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkManaChakra.png"]={ + h=49, + w=49, + x=490, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkStrengthChakra.png"]={ + h=49, + w=49, + x=539, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MonkStunChakra.png"]={ + h=49, + w=49, + x=588, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.png"]={ + h=49, + w=49, + x=637, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.png"]={ + h=69, + w=68, + x=612, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.png"]={ + h=69, + w=68, + x=680, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]={ + h=49, + w=49, + x=686, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/OasisKeystone2.png"]={ + h=69, + w=68, + x=748, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.png"]={ + h=49, + w=49, + x=735, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.png"]={ + h=49, + w=49, + x=784, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.png"]={ + h=49, + w=49, + x=833, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleNode.png"]={ + h=34, + w=34, + x=510, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.png"]={ + h=49, + w=49, + x=882, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.png"]={ + h=49, + w=49, + x=931, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.png"]={ + h=49, + w=49, + x=980, + y=713 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.png"]={ + h=49, + w=49, + x=0, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.png"]={ + h=49, + w=49, + x=49, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.png"]={ + h=49, + w=49, + x=98, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.png"]={ + h=49, + w=49, + x=147, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.png"]={ + h=34, + w=34, + x=544, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.png"]={ + h=34, + w=34, + x=578, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.png"]={ + h=34, + w=34, + x=612, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.png"]={ + h=34, + w=34, + x=646, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.png"]={ + h=34, + w=34, + x=680, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.png"]={ + h=49, + w=49, + x=196, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.png"]={ + h=49, + w=49, + x=245, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.png"]={ + h=49, + w=49, + x=294, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.png"]={ + h=49, + w=49, + x=343, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.png"]={ + h=49, + w=49, + x=392, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.png"]={ + h=49, + w=49, + x=441, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.png"]={ + h=34, + w=34, + x=714, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.png"]={ + h=34, + w=34, + x=748, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.png"]={ + h=34, + w=34, + x=782, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.png"]={ + h=49, + w=49, + x=490, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]={ + h=49, + w=49, + x=539, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]={ + h=49, + w=49, + x=588, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]={ + h=49, + w=49, + x=637, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]={ + h=49, + w=49, + x=686, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/PressurePoints.png"]={ + h=49, + w=49, + x=735, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.png"]={ + h=49, + w=49, + x=784, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.png"]={ + h=49, + w=49, + x=833, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.png"]={ + h=49, + w=49, + x=882, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.png"]={ + h=49, + w=49, + x=931, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]={ + h=34, + w=34, + x=952, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.png"]={ + h=49, + w=49, + x=980, + y=762 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.png"]={ + h=49, + w=49, + x=0, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.png"]={ + h=49, + w=49, + x=49, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]={ + h=34, + w=34, + x=986, + y=102 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]={ + h=49, + w=49, + x=98, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]={ + h=49, + w=49, + x=147, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/PuppeteerNode.png"]={ + h=34, + w=34, + x=0, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/PuppeteerNoteble.png"]={ + h=49, + w=49, + x=196, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Rage.png"]={ + h=49, + w=49, + x=245, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]={ + h=49, + w=49, + x=294, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]={ + h=49, + w=49, + x=343, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]={ + h=49, + w=49, + x=392, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Remnant.png"]={ + h=34, + w=34, + x=136, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/RemnantNotable.png"]={ + h=49, + w=49, + x=441, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/ResonanceKeystone.png"]={ + h=69, + w=68, + x=816, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.png"]={ + h=49, + w=49, + x=490, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.png"]={ + h=49, + w=49, + x=539, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.png"]={ + h=49, + w=49, + x=588, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.png"]={ + h=34, + w=34, + x=170, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.png"]={ + h=49, + w=49, + x=637, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.png"]={ + h=49, + w=49, + x=686, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.png"]={ + h=49, + w=49, + x=735, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.png"]={ + h=49, + w=49, + x=784, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.png"]={ + h=49, + w=49, + x=833, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]={ + h=49, + w=49, + x=882, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.png"]={ + h=49, + w=49, + x=931, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.png"]={ + h=49, + w=49, + x=980, + y=811 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.png"]={ + h=49, + w=49, + x=0, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.png"]={ + h=49, + w=49, + x=49, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.png"]={ + h=49, + w=49, + x=98, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.png"]={ + h=49, + w=49, + x=147, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.png"]={ + h=49, + w=49, + x=196, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.png"]={ + h=49, + w=49, + x=637, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.png"]={ + h=49, + w=49, + x=686, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.png"]={ + h=49, + w=49, + x=735, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.png"]={ + h=49, + w=49, + x=245, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.png"]={ + h=49, + w=49, + x=294, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.png"]={ + h=49, + w=49, + x=343, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.png"]={ + h=49, + w=49, + x=392, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.png"]={ + h=49, + w=49, + x=441, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.png"]={ + h=49, + w=49, + x=490, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.png"]={ + h=49, + w=49, + x=539, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.png"]={ + h=49, + w=49, + x=588, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.png"]={ + h=34, + w=34, + x=238, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.png"]={ + h=49, + w=49, + x=784, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.png"]={ + h=69, + w=68, + x=884, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/SpearsNode1.png"]={ + h=34, + w=34, + x=272, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/SpearsNotable1.png"]={ + h=49, + w=49, + x=833, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]={ + h=34, + w=34, + x=306, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]={ + h=49, + w=49, + x=882, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]={ + h=34, + w=34, + x=374, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]={ + h=34, + w=34, + x=306, + y=238 + }, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]={ + h=49, + w=49, + x=931, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.png"]={ + h=49, + w=49, + x=980, + y=860 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.png"]={ + h=49, + w=49, + x=0, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.png"]={ + h=49, + w=49, + x=49, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.png"]={ + h=49, + w=49, + x=98, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.png"]={ + h=49, + w=49, + x=147, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.png"]={ + h=49, + w=49, + x=196, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.png"]={ + h=49, + w=49, + x=245, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.png"]={ + h=49, + w=49, + x=294, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.png"]={ + h=34, + w=34, + x=408, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.png"]={ + h=49, + w=49, + x=343, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.png"]={ + h=49, + w=49, + x=392, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]={ + h=49, + w=49, + x=0, + y=1252 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.png"]={ + h=49, + w=49, + x=441, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.png"]={ + h=49, + w=49, + x=490, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.png"]={ + h=49, + w=49, + x=539, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.png"]={ + h=49, + w=49, + x=588, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.png"]={ + h=49, + w=49, + x=637, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.png"]={ + h=49, + w=49, + x=686, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.png"]={ + h=34, + w=34, + x=442, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.png"]={ + h=49, + w=49, + x=735, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.png"]={ + h=49, + w=49, + x=784, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.png"]={ + h=49, + w=49, + x=833, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.png"]={ + h=49, + w=49, + x=882, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.png"]={ + h=49, + w=49, + x=931, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.png"]={ + h=49, + w=49, + x=980, + y=909 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.png"]={ + h=49, + w=49, + x=0, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.png"]={ + h=49, + w=49, + x=49, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.png"]={ + h=49, + w=49, + x=98, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.png"]={ + h=49, + w=49, + x=147, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.png"]={ + h=49, + w=49, + x=196, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.png"]={ + h=34, + w=34, + x=476, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.png"]={ + h=49, + w=49, + x=245, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/ThornsNode1.png"]={ + h=49, + w=49, + x=294, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/ThornsNotable1.png"]={ + h=49, + w=49, + x=343, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.png"]={ + h=49, + w=49, + x=392, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.png"]={ + h=49, + w=49, + x=441, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.png"]={ + h=49, + w=49, + x=490, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.png"]={ + h=49, + w=49, + x=539, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanNode.png"]={ + h=34, + w=34, + x=544, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.png"]={ + h=49, + w=49, + x=588, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.png"]={ + h=49, + w=49, + x=637, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.png"]={ + h=49, + w=49, + x=686, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.png"]={ + h=49, + w=49, + x=735, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Trap.png"]={ + h=49, + w=49, + x=784, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/WarCryEffect.png"]={ + h=49, + w=49, + x=833, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.png"]={ + h=49, + w=49, + x=882, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.png"]={ + h=49, + w=49, + x=931, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.png"]={ + h=49, + w=49, + x=980, + y=958 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.png"]={ + h=49, + w=49, + x=0, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.png"]={ + h=49, + w=49, + x=49, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.png"]={ + h=49, + w=49, + x=98, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.png"]={ + h=34, + w=34, + x=612, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.png"]={ + h=49, + w=49, + x=147, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.png"]={ + h=49, + w=49, + x=196, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Warrior.png"]={ + h=49, + w=49, + x=245, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.png"]={ + h=49, + w=49, + x=294, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.png"]={ + h=49, + w=49, + x=343, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.png"]={ + h=34, + w=34, + x=646, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.png"]={ + h=49, + w=49, + x=392, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.png"]={ + h=49, + w=49, + x=441, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.png"]={ + h=49, + w=49, + x=490, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.png"]={ + h=49, + w=49, + x=539, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.png"]={ + h=49, + w=49, + x=588, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.png"]={ + h=49, + w=49, + x=637, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.png"]={ + h=49, + w=49, + x=686, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.png"]={ + h=49, + w=49, + x=735, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.png"]={ + h=49, + w=49, + x=784, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.png"]={ + h=49, + w=49, + x=833, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.png"]={ + h=49, + w=49, + x=882, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.png"]={ + h=49, + w=49, + x=931, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.png"]={ + h=49, + w=49, + x=980, + y=1007 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.png"]={ + h=49, + w=49, + x=0, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.png"]={ + h=49, + w=49, + x=49, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.png"]={ + h=49, + w=49, + x=98, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]={ + h=49, + w=49, + x=147, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/accuracystr.png"]={ + h=49, + w=49, + x=196, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]={ + h=49, + w=49, + x=245, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]={ + h=49, + w=49, + x=294, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]={ + h=49, + w=49, + x=343, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]={ + h=49, + w=49, + x=392, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]={ + h=34, + w=34, + x=884, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]={ + h=49, + w=49, + x=441, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]={ + h=49, + w=49, + x=490, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]={ + h=34, + w=34, + x=986, + y=136 + }, + ["Art/2DArt/SkillIcons/passives/blankDex.png"]={ + h=34, + w=34, + x=0, + y=170 + }, + ["Art/2DArt/SkillIcons/passives/blankInt.png"]={ + h=34, + w=34, + x=34, + y=170 + }, + ["Art/2DArt/SkillIcons/passives/blankStr.png"]={ + h=34, + w=34, + x=68, + y=170 + }, + ["Art/2DArt/SkillIcons/passives/blockstr.png"]={ + h=49, + w=49, + x=539, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]={ + h=49, + w=49, + x=588, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/castspeed.png"]={ + h=49, + w=49, + x=637, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]={ + h=49, + w=49, + x=686, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]={ + h=49, + w=49, + x=735, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]={ + h=49, + w=49, + x=784, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/colddamage.png"]={ + h=49, + w=49, + x=833, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/coldresist.png"]={ + h=49, + w=49, + x=882, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]={ + h=49, + w=49, + x=931, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]={ + h=49, + w=49, + x=980, + y=1056 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]={ + h=34, + w=34, + x=408, + y=170 + }, + ["Art/2DArt/SkillIcons/passives/damage.png"]={ + h=49, + w=49, + x=0, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]={ + h=49, + w=49, + x=49, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]={ + h=49, + w=49, + x=98, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]={ + h=34, + w=34, + x=544, + y=170 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]={ + h=34, + w=34, + x=340, + y=238 + }, + ["Art/2DArt/SkillIcons/passives/damagespells.png"]={ + h=49, + w=49, + x=147, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]={ + h=49, + w=49, + x=196, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/damagesword.png"]={ + h=49, + w=49, + x=245, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]={ + h=49, + w=49, + x=294, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]={ + h=49, + w=49, + x=343, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]={ + h=49, + w=49, + x=392, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]={ + h=49, + w=49, + x=441, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/energyshield.png"]={ + h=49, + w=49, + x=490, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/evade.png"]={ + h=49, + w=49, + x=539, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/executioner.png"]={ + h=49, + w=49, + x=588, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/fencing.png"]={ + h=49, + w=49, + x=49, + y=1252 + }, + ["Art/2DArt/SkillIcons/passives/fending.png"]={ + h=49, + w=49, + x=98, + y=1252 + }, + ["Art/2DArt/SkillIcons/passives/finesse.png"]={ + h=49, + w=49, + x=637, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]={ + h=49, + w=49, + x=686, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]={ + h=49, + w=49, + x=735, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]={ + h=49, + w=49, + x=784, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/fireresist.png"]={ + h=49, + w=49, + x=833, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/flameborn.png"]={ + h=49, + w=49, + x=882, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]={ + h=49, + w=49, + x=931, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/flaskint.png"]={ + h=49, + w=49, + x=980, + y=1105 + }, + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]={ + h=49, + w=49, + x=0, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/frostborn.png"]={ + h=49, + w=49, + x=49, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]={ + h=69, + w=68, + x=952, + y=1370 + }, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]={ + h=49, + w=49, + x=98, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/knockback.png"]={ + h=49, + w=49, + x=147, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]={ + h=34, + w=34, + x=408, + y=238 + }, + ["Art/2DArt/SkillIcons/passives/legstrength.png"]={ + h=49, + w=49, + x=196, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]={ + h=49, + w=49, + x=245, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]={ + h=49, + w=49, + x=294, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]={ + h=49, + w=49, + x=343, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]={ + h=69, + w=68, + x=0, + y=1439 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]={ + h=49, + w=49, + x=392, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]={ + h=49, + w=49, + x=441, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]={ + h=49, + w=49, + x=490, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/mana.png"]={ + h=49, + w=49, + x=539, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]={ + h=49, + w=49, + x=588, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/manastr.png"]={ + h=49, + w=49, + x=637, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]={ + h=34, + w=34, + x=476, + y=204 + }, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]={ + h=49, + w=49, + x=686, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/minionlife.png"]={ + h=49, + w=49, + x=735, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/minionstr.png"]={ + h=49, + w=49, + x=784, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]={ + h=49, + w=49, + x=833, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]={ + h=49, + w=49, + x=882, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/plusattribute.png"]={ + h=49, + w=49, + x=931, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]={ + h=49, + w=49, + x=980, + y=1154 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]={ + h=49, + w=49, + x=0, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]={ + h=49, + w=49, + x=49, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]={ + h=49, + w=49, + x=98, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]={ + h=49, + w=49, + x=147, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]={ + h=49, + w=49, + x=196, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]={ + h=49, + w=49, + x=245, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]={ + h=49, + w=49, + x=294, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]={ + h=49, + w=49, + x=343, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/steelspan.png"]={ + h=49, + w=49, + x=392, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/stormborn.png"]={ + h=49, + w=49, + x=441, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/strongarm.png"]={ + h=49, + w=49, + x=490, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/stun2h.png"]={ + h=49, + w=49, + x=539, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/stunstr.png"]={ + h=49, + w=49, + x=588, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/tempint.png"]={ + h=34, + w=34, + x=34, + y=238 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]={ + h=49, + w=49, + x=637, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/totemmax.png"]={ + h=69, + w=68, + x=68, + y=1439 + }, + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]={ + h=49, + w=49, + x=686, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/trapsmax.png"]={ + h=49, + w=49, + x=735, + y=1203 + }, + ["Art/2DArt/SkillIcons/passives/vaalpact.png"]={ + h=69, + w=68, + x=136, + y=1439 + } + } + }, + tree="Default" +} \ No newline at end of file